<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>184</DBVersion>
 <languages>
  <language>en</language>
 </languages>
 <answers>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>code</fieldname>
   <fieldname>answer</fieldname>
   <fieldname>sortorder</fieldname>
   <fieldname>assessment_value</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[14876]]></qid>
    <code><![CDATA[1]]></code>
    <answer><![CDATA[Strongly disagree]]></answer>
    <sortorder><![CDATA[1]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[14876]]></qid>
    <code><![CDATA[2]]></code>
    <answer><![CDATA[Disagree]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[14876]]></qid>
    <code><![CDATA[3]]></code>
    <answer><![CDATA[Neither agree nor disagree]]></answer>
    <sortorder><![CDATA[3]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[14876]]></qid>
    <code><![CDATA[4]]></code>
    <answer><![CDATA[Agree]]></answer>
    <sortorder><![CDATA[4]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[14876]]></qid>
    <code><![CDATA[5]]></code>
    <answer><![CDATA[Strongly agree]]></answer>
    <sortorder><![CDATA[5]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
  </rows>
 </answers>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[991]]></gid>
    <sid><![CDATA[235789]]></sid>
    <group_name><![CDATA[Expandable Array]]></group_name>
    <group_order><![CDATA[4890]]></group_order>
    <description/>
    <language><![CDATA[en]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[14876]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[exparr]]></title>
    <question><![CDATA[<p>Do you agree or disagree with the following 50 statements? (When you rate one statement the next statement/line appears)</p>

<script type="text/javascript">

	$(document).ready(function() {

		// A function to show subsequent rows of an array as options are checked
		function expandingArray(qID) {

			// Build an array of the question rows
			var arrayRow = '#question' + qID + ' table.question tbody tr';

			// Initially hide all rows unless an input was previously checked
			$( arrayRow ).each(function(i) {

				if ( $( arrayRow  + ':eq(' + i + ') input.radio:checked' ).length != 0 ) {
					$(this).attr('name', 'clickedRow');
				}
				else {
					$(this).attr('name', 'hidden').hide();
				}
			});

			// Now show the first hidden row
			addRow();

			// Add another row when an option is checked for the first time
			$( '#question' + qID + ' td.answer input.radio' ).click(function (event) {

				if ($(this).parents('tr:eq(0)').attr('name') != 'clickedRow') {
					addRow();
					$(this).parents('tr:eq(0)').attr('name', 'clickedRow');
				}

				// The original function of the click event
				checkconditions(this.value, this.name, this.type);
			});

			// Add another row when an table cell is clicked for the first time
			$( '#question' + qID + ' table.question tbody td' ).click(function (event) {

				if ($(this).parents('tr:eq(0)').attr('name') != 'clickedRow') {
					addRow();
					$(this).parents('tr:eq(0)').attr('name', 'clickedRow');
				}
			});

			// Function to add a row
			function addRow() {
				$( arrayRow + '[name="hidden"]:first' ).attr('name', 'visible').show();
			}
		}

                // Identify this question
		var questionID = {QID};

		// Call the function with a question ID
		expandingArray(questionID);

	});
</script>

]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
  </rows>
 </questions>
 <subquestions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[14878]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[statement 1]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14879]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[statement 2]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14880]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[statement 3]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14881]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[statement 4]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14882]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[statement 5]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14883]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[statement 6]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14884]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[statement 7]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14885]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[statement 8]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14886]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[9]]></title>
    <question><![CDATA[statement 9]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14887]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[10]]></title>
    <question><![CDATA[statement 10]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14888]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[11]]></title>
    <question><![CDATA[statement 11]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[11]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14889]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[12]]></title>
    <question><![CDATA[statement 12]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[12]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14890]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[13]]></title>
    <question><![CDATA[statement 13]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[13]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14891]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[14]]></title>
    <question><![CDATA[statement 14]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[14]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14892]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[15]]></title>
    <question><![CDATA[statement 15]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[15]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14893]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[16]]></title>
    <question><![CDATA[statement 16]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[16]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14894]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[17]]></title>
    <question><![CDATA[statement 17]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[17]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14895]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[18]]></title>
    <question><![CDATA[statement 18]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[18]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14896]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[19]]></title>
    <question><![CDATA[statement 19]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[19]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14897]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[20]]></title>
    <question><![CDATA[statement 20]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[20]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14898]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[21]]></title>
    <question><![CDATA[statement 21]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[21]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14899]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[22]]></title>
    <question><![CDATA[statement 22]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[22]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14900]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[23]]></title>
    <question><![CDATA[statement 23]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[23]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14901]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[24]]></title>
    <question><![CDATA[statement 24]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[24]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14902]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[25]]></title>
    <question><![CDATA[statement 25]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[25]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14903]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[26]]></title>
    <question><![CDATA[statement 26]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[26]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14904]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[27]]></title>
    <question><![CDATA[statement 27]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[27]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14905]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[28]]></title>
    <question><![CDATA[statement 28]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[28]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14906]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[29]]></title>
    <question><![CDATA[statement 29]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[29]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14907]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[30]]></title>
    <question><![CDATA[statement 30]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[30]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14908]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[31]]></title>
    <question><![CDATA[statement 31]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[31]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14909]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[32]]></title>
    <question><![CDATA[statement 32]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[32]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14910]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[33]]></title>
    <question><![CDATA[statement 33]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[33]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14911]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[34]]></title>
    <question><![CDATA[statement 34]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[34]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14912]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[35]]></title>
    <question><![CDATA[statement 35]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[35]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14913]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[36]]></title>
    <question><![CDATA[statement 36]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[36]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14914]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[37]]></title>
    <question><![CDATA[statement 37]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[37]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14915]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[38]]></title>
    <question><![CDATA[statement 38]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[38]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14916]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[39]]></title>
    <question><![CDATA[statement 39]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[39]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14917]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[40]]></title>
    <question><![CDATA[statement 40]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[40]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14918]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[41]]></title>
    <question><![CDATA[statement 41]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[41]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14919]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[42]]></title>
    <question><![CDATA[statement 42]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[42]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14920]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[43]]></title>
    <question><![CDATA[statement 43]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[43]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14921]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[44]]></title>
    <question><![CDATA[statement 44]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[44]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14922]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[45]]></title>
    <question><![CDATA[statement 45]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[45]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14923]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[46]]></title>
    <question><![CDATA[statement 46]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[46]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14924]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[47]]></title>
    <question><![CDATA[statement 47]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[47]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14925]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[48]]></title>
    <question><![CDATA[statement 48]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[48]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14926]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[49]]></title>
    <question><![CDATA[statement 49]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[49]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[14927]]></qid>
    <parent_qid><![CDATA[14876]]></parent_qid>
    <sid><![CDATA[235789]]></sid>
    <gid><![CDATA[991]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[50]]></title>
    <question><![CDATA[statement 50]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[50]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
  </rows>
 </subquestions>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[14876]]></qid>
    <attribute><![CDATA[repeat_headings]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>admin</fieldname>
   <fieldname>expires</fieldname>
   <fieldname>startdate</fieldname>
   <fieldname>adminemail</fieldname>
   <fieldname>anonymized</fieldname>
   <fieldname>faxto</fieldname>
   <fieldname>format</fieldname>
   <fieldname>savetimings</fieldname>
   <fieldname>template</fieldname>
   <fieldname>language</fieldname>
   <fieldname>additional_languages</fieldname>
   <fieldname>datestamp</fieldname>
   <fieldname>usecookie</fieldname>
   <fieldname>allowregister</fieldname>
   <fieldname>allowsave</fieldname>
   <fieldname>autonumber_start</fieldname>
   <fieldname>autoredirect</fieldname>
   <fieldname>allowprev</fieldname>
   <fieldname>printanswers</fieldname>
   <fieldname>ipaddr</fieldname>
   <fieldname>refurl</fieldname>
   <fieldname>publicstatistics</fieldname>
   <fieldname>publicgraphs</fieldname>
   <fieldname>listpublic</fieldname>
   <fieldname>htmlemail</fieldname>
   <fieldname>sendconfirmation</fieldname>
   <fieldname>tokenanswerspersistence</fieldname>
   <fieldname>assessments</fieldname>
   <fieldname>usecaptcha</fieldname>
   <fieldname>usetokens</fieldname>
   <fieldname>bounce_email</fieldname>
   <fieldname>attributedescriptions</fieldname>
   <fieldname>emailresponseto</fieldname>
   <fieldname>emailnotificationto</fieldname>
   <fieldname>tokenlength</fieldname>
   <fieldname>showxquestions</fieldname>
   <fieldname>showgroupinfo</fieldname>
   <fieldname>shownoanswer</fieldname>
   <fieldname>showqnumcode</fieldname>
   <fieldname>bouncetime</fieldname>
   <fieldname>bounceprocessing</fieldname>
   <fieldname>bounceaccounttype</fieldname>
   <fieldname>bounceaccounthost</fieldname>
   <fieldname>bounceaccountpass</fieldname>
   <fieldname>bounceaccountencryption</fieldname>
   <fieldname>bounceaccountuser</fieldname>
   <fieldname>showwelcome</fieldname>
   <fieldname>showprogress</fieldname>
   <fieldname>questionindex</fieldname>
   <fieldname>navigationdelay</fieldname>
   <fieldname>nokeyboard</fieldname>
   <fieldname>alloweditaftercompletion</fieldname>
   <fieldname>googleanalyticsstyle</fieldname>
   <fieldname>googleanalyticsapikey</fieldname>
  </fields>
  <rows>
   <row>
    <sid><![CDATA[235789]]></sid>
    <admin/>
    <adminemail/>
    <anonymized><![CDATA[N]]></anonymized>
    <faxto/>
    <format><![CDATA[G]]></format>
    <savetimings><![CDATA[N]]></savetimings>
    <template><![CDATA[default]]></template>
    <language><![CDATA[en]]></language>
    <additional_languages/>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[0]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[N]]></allowprev>
    <printanswers><![CDATA[N]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[N]]></htmlemail>
    <sendconfirmation><![CDATA[Y]]></sendconfirmation>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[N]]></assessments>
    <usecaptcha><![CDATA[N]]></usecaptcha>
    <usetokens><![CDATA[N]]></usetokens>
    <bounce_email/>
    <emailresponseto/>
    <emailnotificationto/>
    <tokenlength><![CDATA[15]]></tokenlength>
    <showxquestions><![CDATA[Y]]></showxquestions>
    <showgroupinfo><![CDATA[B]]></showgroupinfo>
    <shownoanswer><![CDATA[N]]></shownoanswer>
    <showqnumcode><![CDATA[X]]></showqnumcode>
    <bounceprocessing><![CDATA[N]]></bounceprocessing>
    <showwelcome><![CDATA[Y]]></showwelcome>
    <showprogress><![CDATA[Y]]></showprogress>
    <questionindex><![CDATA[0]]></questionindex>
    <navigationdelay><![CDATA[0]]></navigationdelay>
    <nokeyboard><![CDATA[N]]></nokeyboard>
    <alloweditaftercompletion><![CDATA[N]]></alloweditaftercompletion>
    <googleanalyticsstyle><![CDATA[0]]></googleanalyticsstyle>
    <googleanalyticsapikey/>
   </row>
  </rows>
 </surveys>
 <surveys_languagesettings>
  <fields>
   <fieldname>surveyls_survey_id</fieldname>
   <fieldname>surveyls_language</fieldname>
   <fieldname>surveyls_title</fieldname>
   <fieldname>surveyls_description</fieldname>
   <fieldname>surveyls_welcometext</fieldname>
   <fieldname>surveyls_endtext</fieldname>
   <fieldname>surveyls_url</fieldname>
   <fieldname>surveyls_urldescription</fieldname>
   <fieldname>surveyls_email_invite_subj</fieldname>
   <fieldname>surveyls_email_invite</fieldname>
   <fieldname>surveyls_email_remind_subj</fieldname>
   <fieldname>surveyls_email_remind</fieldname>
   <fieldname>surveyls_email_register_subj</fieldname>
   <fieldname>surveyls_email_register</fieldname>
   <fieldname>surveyls_email_confirm_subj</fieldname>
   <fieldname>surveyls_email_confirm</fieldname>
   <fieldname>surveyls_dateformat</fieldname>
   <fieldname>surveyls_attributecaptions</fieldname>
   <fieldname>email_admin_notification_subj</fieldname>
   <fieldname>email_admin_notification</fieldname>
   <fieldname>email_admin_responses_subj</fieldname>
   <fieldname>email_admin_responses</fieldname>
   <fieldname>surveyls_numberformat</fieldname>
   <fieldname>attachments</fieldname>
  </fields>
  <rows>
   <row>
    <surveyls_survey_id><![CDATA[235789]]></surveyls_survey_id>
    <surveyls_language><![CDATA[en]]></surveyls_language>
    <surveyls_title><![CDATA[Expandable Array]]></surveyls_title>
    <surveyls_description/>
    <surveyls_welcometext/>
    <surveyls_endtext/>
    <surveyls_url/>
    <surveyls_urldescription/>
    <surveyls_email_invite_subj><![CDATA[Invitation to participate in a survey]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Dear {FIRSTNAME},

you have been invited to participate in a survey.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}

If you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Reminder to participate in a survey]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Dear {FIRSTNAME},

Recently we invited you to participate in a survey.

We note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Survey registration confirmation]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Dear {FIRSTNAME},

You, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.

To complete this survey, click on the following URL:

{SURVEYURL}

If you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Confirmation of your participation in our survey]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Dear {FIRSTNAME},

this email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.

If you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.

Sincerely,

{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[9]]></surveyls_dateformat>
    <email_admin_notification_subj><![CDATA[Response submission for survey {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[Hello,

A new response was submitted for your survey '{SURVEYNAME}'.

Click the following link to reload the survey:
{RELOADURL}

Click the following link to see the individual response:
{VIEWRESPONSEURL}

Click the following link to edit the individual response:
{EDITRESPONSEURL}

View statistics by clicking here:
{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Response submission for survey {SURVEYNAME} with results]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[Hello,

A new response was submitted for your survey '{SURVEYNAME}'.

Click the following link to reload the survey:
{RELOADURL}

Click the following link to see the individual response:
{VIEWRESPONSEURL}

Click the following link to edit the individual response:
{EDITRESPONSEURL}

View statistics by clicking here:
{STATISTICSURL}


The following answers were given by the participant:
{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[0]]></surveyls_numberformat>
   </row>
  </rows>
 </surveys_languagesettings>
</document>
