<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>355</DBVersion>
 <languages>
  <language>de</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[563671]]></qid>
    <code><![CDATA[C9b1]]></code>
    <answer><![CDATA[Kollege/Kollegin]]></answer>
    <sortorder><![CDATA[1]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[563671]]></qid>
    <code><![CDATA[C9b2]]></code>
    <answer><![CDATA[Freund/Freundin]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[563671]]></qid>
    <code><![CDATA[C9b3]]></code>
    <answer><![CDATA[Sonstiges]]></answer>
    <sortorder><![CDATA[3]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[563671]]></qid>
    <code><![CDATA[C9b4]]></code>
    <answer><![CDATA[Keine Antwort]]></answer>
    <sortorder><![CDATA[4]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[de]]></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[44893]]></gid>
    <sid><![CDATA[732433]]></sid>
    <group_name><![CDATA[Akteure]]></group_name>
    <group_order><![CDATA[1]]></group_order>
    <description/>
    <language><![CDATA[de]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
   <row>
    <gid><![CDATA[44894]]></gid>
    <sid><![CDATA[732433]]></sid>
    <group_name><![CDATA[Kontakt zu den Akteuren]]></group_name>
    <group_order><![CDATA[3]]></group_order>
    <description/>
    <language><![CDATA[de]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
   <row>
    <gid><![CDATA[44895]]></gid>
    <sid><![CDATA[732433]]></sid>
    <group_name><![CDATA[HF]]></group_name>
    <group_order><![CDATA[2]]></group_order>
    <description/>
    <language><![CDATA[de]]></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>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[563667]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[Q]]></type>
    <title><![CDATA[akteurnamen]]></title>
    <question><![CDATA[Bitte, geben Sie zunächst ...
<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:complete',function() {
 
		// A function to add or remove rows of a multiple-short-text question
		function varLengthArray(qID) {
 
 
			// The HTML content of the Add/Remove elements - modify as you wish
			var addContent = '[+] Akteur hinzufügen';
			var removeContent = '[-] Akteur löschen';
 
			// Insert the buttons
			$('#question'+qID+' .subquestion-list').append('<div id="addButton'+qID+'" class="control-button btn btn-primary">'+addContent+'</div><div id="removeButton'+qID+'" class="control-button btn btn-danger">'+removeContent+'</div>');
 
			// Style the elements - you can modify here if you wish
			$('#question'+qID+' .control-button').css({
				'margin':'10px 0 10px 10px',
				'padding':'1px',
				'text-align':'center',
				'width':'auto',
				'cursor':'pointer',
				'float':'left'
			});
 
			// Initially hide the Remove element
			$( 'div#removeButton'+qID ).hide();
 
			// Call the functions below when clicked
			$( 'div#addButton'+qID ).click(function (event) {
				addRow(qID);
			});
			$( 'div#removeButton'+qID ).click(function (event) {
				removeRow(qID);
			});
 
			// Function to add a row, also shows the Remove element and hides the
			function addRow(qID) {
				$('#question'+qID+' .answer-item:hidden:first').show();
				$('div#removeButton'+qID).show();
				if ($('#question'+qID+' .answer-item:visible').length == $('#question'+qID+' .answer-item').length)  {
					$('div#addButton'+qID).hide();
				}
			}
 
			// Function to remove a row and clear the input value
			function removeRow(qID) {
				$('#question'+qID+' .answer-item:visible:last').hide();
				$('#question'+qID+' .answer-item:hidden input[type="text"]').each(function(i) {
					$(this).val('').trigger('keyup');
				});
				$( 'div#addButton'+qID ).show();
				if ($('#question'+qID+' .answer-item:visible').length == 1)  {
					$('div#removeButton'+qID).hide();
				}
			}
 
			// Just some initialization stuff
			// Initially hide all except first row or any rows with populated inputs
			$('#question'+qID+' .answer-item input[type="text"]:not(:first)').each(function(i) {
				if($.trim($(this).val()) == '') {
					$(this).closest('.answer-item').hide();
				}
				if ($('#question'+qID+' .answer-item:visible').length > 1)  {
		//			$('div#removeButton'+qID).show();
				}
			});
		}
 
		// Call the function with a question ID
		varLengthArray({QID});
	});
 
</script>
]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563668]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[handlfeld]]></title>
    <question><![CDATA[<p><strong>6. Welchem Handlungsfeld würden Sie den jeweiligen Akteur zuordnen?</strong></p>
<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:scriptcomplete',function(){
		// Identify the questions
		var q1ID= {QID};
		var thisQuestion = $('#question'+q1ID);
		var nextQuestion = thisQuestion.nextAll('.multiple-short-txt:eq(0)');
		var q2ID = $(nextQuestion).attr('id').replace(/question/, '');
 
		//Hide the multiple-short-text
		nextQuestion.hide();
 
		// Move the text inputs
			$('tr.subquestion-list', thisQuestion).each(function(i) {
				var thisCode = $(this).attr('id').split('X')[2].split(q1ID)[1];
				$('td.answer-item:eq(3) input[type="checkbox"]', this).css({
					'position': 'absolute',
					'left': '-9999em'
				});
$('td.answer-item:eq(3)', this).removeClass('checkbox-item').addClass('inserted-text-item').append($('input[type="text"][id$="X'+q2ID+thisCode+'"]', nextQuestion));
		});
 
			// Listeners on the text inputs
			$('input[type="text"]', thisQuestion).on('keyup change', function(e) {
				var thisCheckbox = $(this).closest('td').find('input[type="checkbox"]');
				if($.trim($(this).val()) != '') {
					$(thisCheckbox).prop('checked', true);
					$(thisCheckbox).prev('input:hidden').val(1);
				}
				else {
					$(thisCheckbox).prop('checked', false);
					$(thisCheckbox).prev('input:hidden').val('');
				}
			// Fire Expression manager
				$(thisCheckbox).trigger('change');
			});
		});
</script>
<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:scriptcomplete',function(){
	   
		var thisQuestion = $('#question{QID}')

		// Add some classes to the checkbox cells
		$('td.checkbox-item:last-child', thisQuestion).addClass('exclusive-item');
		
		// A function to un-check boxes
		function resetCheckbox(thisItem) {
			$(':hidden', thisItem).val('');
			$(':checkbox', thisItem).prop('checked', false).trigger('change');
		}
		
		// A listener on the checkboxes
		$(':checkbox', thisQuestion).on('change', function(e) {
			if($(this).is(':checked')) {
				var thisItem = $(this).closest('.answer-item');				
				var thisRow = $(this).closest('tr');
				var items = $('td.answer-item.exclusive-item', thisRow);
				if($(thisItem).hasClass('exclusive-item')) {
					items = $('td.answer-item:not(.exclusive-item)', thisRow);
				}
				$.each(items, function(i, el) {
					resetCheckbox(el);
				});
			}
		});
	});
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563669]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[Q]]></type>
    <title><![CDATA[other]]></title>
    <question><![CDATA[<em>hidden - nicht entfernen! gehört zur Frage vorher!</em>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563670]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[intensitaet]]></title>
    <question><![CDATA[<p><strong>11. In welchen Projektphasen war der Kontakt besonders intensiv? </strong>(Mehrfachnennung möglich)</p>

<p>Falls Sie nie mit dem jeweiligen Akteur in Kontakt getreten sind, brauchen Sie die Teil-Frage nicht zu beantworten!</p>
<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:scriptcomplete',function(){
	   
		var thisQuestion = $('#question{QID}')

		// Add some classes to the checkbox cells
		$('td.checkbox-item:last-child', thisQuestion).addClass('exclusive-item');
		
		// A function to un-check boxes
		function resetCheckbox(thisItem) {
			$(':hidden', thisItem).val('');
			$(':checkbox', thisItem).prop('checked', false).trigger('change');
		}
		
		// A listener on the checkboxes
		$(':checkbox', thisQuestion).on('change', function(e) {
			if($(this).is(':checked')) {
				var thisItem = $(this).closest('.answer-item');				
				var thisRow = $(this).closest('tr');
				var items = $('td.answer-item.exclusive-item', thisRow);
				if($(thisItem).hasClass('exclusive-item')) {
					items = $('td.answer-item:not(.exclusive-item)', thisRow);
				}
				$.each(items, function(i, el) {
					resetCheckbox(el);
				});
			}
		});
	});
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563671]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[beziehung]]></title>
    <question><![CDATA[<p><strong>12. In welcher Beziehung standen Sie zu den genannten Akteuren?</strong></p>
<script type="text/javascript" charset="utf-8">
	$(document).on('ready pjax:scriptcomplete',function(){
		// Identify the questions
		var q1ID = {QID};
		var thisQuestion = $('#question'+q1ID);
		var nextQuestion = thisQuestion.nextAll('.multiple-short-txt:eq(0)');
		var q2ID = $(nextQuestion).attr('id').replace(/question/, '');
 
		//Hide the multiple-short-text
		nextQuestion.hide();
 
		// Move the text inputs
		$('tr.answers-list', thisQuestion).each(function(i) {
			var thisCode = $(this).attr('id').split('X')[2].split(q1ID)[1];
			$('td.answer-item:eq(2) input[type="radio"]', this).css({
				'position': 'absolute',
				'left': '-9999em'
			});
			$('td.answer-item:eq(2)', this).removeClass('radio-item').addClass('inserted-text-item').append($('input[type="text"][id$="X'+q2ID+thisCode+'"]', nextQuestion));
		});
 
		// Listeners on the text inputs
		$('input[type="text"]', thisQuestion).on('keyup change', function(e) {
			var thisRadio = $(this).closest('td').find('input[type="radio"]');
			var thisRadioVal = thisRadio.val();
			if($.trim($(this).val()) != '') {
				$(thisRadio).trigger('click');
			}
			else {
				$(thisRadio).prop('checked', false);
				thisRadioVal = '';
			}
			// Reset Expression manager
			checkconditions(thisRadioVal, $(thisRadio).attr('name'), 'radio', 'click');
		});
 
		// Listeners on the radios
		$('input[type="radio"]', thisQuestion).on('click', function(e) {
			if(!$(this).closest('td').hasClass('inserted-text-item')) {
				$(this).closest('tr').find('input[type="text"]').val('');
			}
		});
	});
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563672]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[Q]]></type>
    <title><![CDATA[other2]]></title>
    <question><![CDATA[<em>hidden - nicht entfernen! gehört zur Frage vorher!</em>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></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>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[563673]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Akteur 1]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563674]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Akteur 2]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563675]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[Akteur 3]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563676]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[Akteur 4]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563677]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[Akteur 5]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563678]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ006]]></title>
    <question><![CDATA[Akteur 6]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563679]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ007]]></title>
    <question><![CDATA[Akteur 7]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563680]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ008]]></title>
    <question><![CDATA[Akteur 8]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563681]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ009]]></title>
    <question><![CDATA[Akteur 9]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563682]]></qid>
    <parent_qid><![CDATA[563667]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44893]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ010]]></title>
    <question><![CDATA[Akteur 10]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563683]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Akteur 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563684]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[{akteurnamen_SQ001.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ001)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563685]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Akteur 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563686]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[{akteurnamen_SQ002.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ002)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563687]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[Akteur 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563688]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[{akteurnamen_SQ003.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ003)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563689]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[{akteurnamen_SQ004.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ004)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563690]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[Akteur 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563691]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[{akteurnamen_SQ005.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ005)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563692]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[Akteur 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563693]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ006]]></title>
    <question><![CDATA[{akteurnamen_SQ006.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ006)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563694]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ006]]></title>
    <question><![CDATA[Akteur 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563695]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ007]]></title>
    <question><![CDATA[{akteurnamen_SQ007.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ007)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563696]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ007]]></title>
    <question><![CDATA[Akteur 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563697]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ008]]></title>
    <question><![CDATA[{akteurnamen_SQ008.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ008)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563698]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ008]]></title>
    <question><![CDATA[Akteur 8]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563699]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ009]]></title>
    <question><![CDATA[{akteurnamen_SQ009.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ009)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563700]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ009]]></title>
    <question><![CDATA[Akteur 9]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563701]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[SQ0010]]></title>
    <question><![CDATA[{akteurnamen_SQ010.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ010)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563702]]></qid>
    <parent_qid><![CDATA[563669]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ0010]]></title>
    <question><![CDATA[Akteur 10]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563703]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a1]]></title>
    <question><![CDATA[{akteurnamen_SQ001.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ001)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563704]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Phase bis zur Investitions-entscheidung]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563705]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a2]]></title>
    <question><![CDATA[{akteurnamen_SQ002.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ002)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563706]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Konzeptionsphase]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563707]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a3]]></title>
    <question><![CDATA[{akteurnamen_SQ003.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ003)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563708]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[Planungsphase]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563709]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a4]]></title>
    <question><![CDATA[{akteurnamen_SQ004.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ004)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563710]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[Realisierungs-phase und Vermarktung]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563711]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a5]]></title>
    <question><![CDATA[{akteurnamen_SQ005.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ005)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563712]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a6]]></title>
    <question><![CDATA[{akteurnamen_SQ006.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ006)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563713]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a7]]></title>
    <question><![CDATA[{akteurnamen_SQ007.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ007)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563714]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a8]]></title>
    <question><![CDATA[{akteurnamen_SQ008.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ008)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563715]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a9]]></title>
    <question><![CDATA[{akteurnamen_SQ009.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ009)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563716]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[C9a10]]></title>
    <question><![CDATA[{akteurnamen_SQ010.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ010)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563717]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[{akteurnamen_SQ001.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ001)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563718]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[{akteurnamen_SQ002.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ002)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563719]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[{akteurnamen_SQ003.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ003)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563720]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[{akteurnamen_SQ004.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ004)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563721]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[{akteurnamen_SQ005.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ005)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563722]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ006]]></title>
    <question><![CDATA[{akteurnamen_SQ006.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ006)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563723]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ007]]></title>
    <question><![CDATA[{akteurnamen_SQ007.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ007)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563724]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ008]]></title>
    <question><![CDATA[{akteurnamen_SQ008.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ008)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563725]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ009]]></title>
    <question><![CDATA[{akteurnamen_SQ009.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ009)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563726]]></qid>
    <parent_qid><![CDATA[563671]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[F]]></type>
    <title><![CDATA[SQ0010]]></title>
    <question><![CDATA[{akteurnamen_SQ010.shown}]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[!is_empty(akteurnamen_SQ010)]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563727]]></qid>
    <parent_qid><![CDATA[563670]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[Kein Kontakt]]></question>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563728]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Akteur 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563729]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Akteur 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563730]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[Akteur 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563731]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[Akteur 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563732]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ005]]></title>
    <question><![CDATA[Akteur 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563733]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ006]]></title>
    <question><![CDATA[Akteur 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563734]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ007]]></title>
    <question><![CDATA[Akteur 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563735]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ008]]></title>
    <question><![CDATA[Akteur 8]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563736]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ009]]></title>
    <question><![CDATA[Akteur 9]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[563737]]></qid>
    <parent_qid><![CDATA[563672]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44894]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ0010]]></title>
    <question><![CDATA[Akteur 10]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[569810]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[x1]]></title>
    <question><![CDATA[Wohnraum<wbr>beschaffung]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[569811]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[x2]]></title>
    <question><![CDATA[Klimaschutz und/ oder Klimawandelanpassung]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[569812]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[x3]]></title>
    <question><![CDATA[Sonstiges]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[569813]]></qid>
    <parent_qid><![CDATA[563668]]></parent_qid>
    <sid><![CDATA[732433]]></sid>
    <gid><![CDATA[44895]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[x4]]></title>
    <question><![CDATA[kann ich nicht beurteilen]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
  </rows>
 </subquestions>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[563668]]></qid>
    <attribute><![CDATA[multiflexible_checkbox]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[563670]]></qid>
    <attribute><![CDATA[multiflexible_checkbox]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>gsid</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>showsurveypolicynotice</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[732433]]></sid>
    <gsid><![CDATA[1]]></gsid>
    <admin><![CDATA[Sarah Schüürmann]]></admin>
    <adminemail><![CDATA[sarah.schueuermann1@mailbox.tu-dresden.de]]></adminemail>
    <anonymized><![CDATA[N]]></anonymized>
    <faxto/>
    <format><![CDATA[G]]></format>
    <savetimings><![CDATA[N]]></savetimings>
    <template><![CDATA[fruity]]></template>
    <language><![CDATA[de]]></language>
    <additional_languages/>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[8]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[Y]]></allowprev>
    <printanswers><![CDATA[N]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <showsurveypolicynotice><![CDATA[2]]></showsurveypolicynotice>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[Y]]></htmlemail>
    <sendconfirmation><![CDATA[Y]]></sendconfirmation>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[N]]></assessments>
    <usecaptcha><![CDATA[D]]></usecaptcha>
    <usetokens><![CDATA[N]]></usetokens>
    <bounce_email><![CDATA[sarah.schueuermann1@mailbox.tu-dresden.de]]></bounce_email>
    <emailresponseto/>
    <emailnotificationto><![CDATA[sarah.schueuermann1@mailbox.tu-dresden.de]]></emailnotificationto>
    <tokenlength><![CDATA[15]]></tokenlength>
    <showxquestions><![CDATA[N]]></showxquestions>
    <showgroupinfo><![CDATA[B]]></showgroupinfo>
    <shownoanswer><![CDATA[N]]></shownoanswer>
    <showqnumcode><![CDATA[X]]></showqnumcode>
    <bounceprocessing><![CDATA[N]]></bounceprocessing>
    <showwelcome><![CDATA[Y]]></showwelcome>
    <showprogress><![CDATA[N]]></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_policy_notice</fieldname>
   <fieldname>surveyls_policy_error</fieldname>
   <fieldname>surveyls_policy_notice_label</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[732433]]></surveyls_survey_id>
    <surveyls_language><![CDATA[de]]></surveyls_language>
    <surveyls_title><![CDATA[XXX]]></surveyls_title>
    <surveyls_description/>
    <surveyls_welcometext/>
    <surveyls_endtext/>
    <surveyls_policy_notice/>
    <surveyls_policy_error/>
    <surveyls_policy_notice_label/>
    <surveyls_url/>
    <surveyls_urldescription/>
    <surveyls_email_invite_subj><![CDATA[Einladung zu einer Umfrage]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Hallo {FIRSTNAME},<br /><br />
Hiermit möchten wir Sie zu einer Umfrage einladen.<br /><br />
Der Titel der Umfrage ist <br />
'{SURVEYNAME}'<br /><br />
'{SURVEYDESCRIPTION}'<br /><br />
Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.<br /><br />
Mit freundlichen Grüßen,<br /><br />{ADMINNAME} ({ADMINEMAIL})<br /><br />
----------------------------------------------<br />
Klicken Sie hier um die Umfrage zu starten:<br />{SURVEYURL}<br /><br />
Wenn Sie an diese Umfrage nicht teilnehmen und keine weiteren Erinnerungen erhalten möchten, klicken Sie bitte auf den folgenden Link:<br />{OPTOUTURL}<br /><br />
Wenn Sie geblockt sind, jedoch wieder teilnehmen und weitere Einladungen erhalten möchten, klicken Sie bitte auf den folgenden Link:<br />{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Erinnerung an die Teilnahme an einer Umfrage]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Hallo {FIRSTNAME},<br /><br />
Vor kurzem haben wir Sie zu einer Umfrage eingeladen.<br /><br />
Zu unserem Bedauern haben wir bemerkt, dass Sie die Umfrage noch nicht ausgefüllt haben. Wir möchten Ihnen mitteilen, dass die Umfrage noch aktiv ist und würden uns freuen, wenn Sie teilnehmen könnten.<br /><br />
Der Titel der Umfrage ist <br />
'{SURVEYNAME}'<br /><br />
'{SURVEYDESCRIPTION}'<br /><br />
Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.<br /><br />
 Mit freundlichen Grüßen,<br /><br />{ADMINNAME} ({ADMINEMAIL})<br /><br />
----------------------------------------------<br />
Klicken Sie hier um die Umfrage zu starten:<br />{SURVEYURL}<br /><br />
Wenn Sie an diese Umfrage nicht teilnehmen und keine weiteren Erinnerungen erhalten möchten, klicken Sie bitte auf den folgenden Link:<br />{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Registrierungsbestätigung für Teilnahmeumfrage]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Hallo {FIRSTNAME},<br /><br />
Sie (oder jemand, der Ihre E-Mail benutzt hat) haben sich für eine Umfrage mit dem Titel {SURVEYNAME} angemeldet.<br /><br />
Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den folgenden Link.<br /><br />{SURVEYURL}<br /><br />
Wenn Sie irgendwelche Fragen zu dieser Umfrage haben oder wenn Sie sich _nicht_ für diese Umfrage angemeldet haben und sie glauben, dass Ihnen diese E-Mail irrtümlicherweise zugeschickt worden ist, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Bestätigung für die Teilnahme an unserer Umfrage]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Hallo {FIRSTNAME},<br /><br />
Vielen Dank für die Teilnahme an der Umfrage mit dem Titel {SURVEYNAME}. Ihre Antworten wurden bei uns gespeichert.<br /><br />
Wenn Sie irgendwelche Fragen zu dieser E-Mail haben, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.<br /><br />
Mit freundlichen Grüßen,<br /><br />{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[1]]></surveyls_dateformat>
    <email_admin_notification_subj><![CDATA[Antwortabsendung für Umfrage {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[Hallo,<br /><br />
Eine neue Antwort wurde für die Umfrage '{SURVEYNAME}' abgegeben.<br /><br />
Klicken Sie auf den folgenden Link um die Umfrage neu zu laden:<br />{RELOADURL}<br /><br />
Klicken Sie auf den folgenden Link um den Antwortdatensatz anzusehen:<br />{VIEWRESPONSEURL}<br /><br />
Klicken Sie auf den folgenden Link um den Antwortdatensatz zu bearbeiten:<br />{EDITRESPONSEURL}<br /><br />
Um die Statistik zu sehen, klicken Sie hier:<br />{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Antwortabsendung für Umfrage {SURVEYNAME} mit Ergebnissen]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[Hallo,<br /><br />
Eine neue Antwort wurde für die Umfrage '{SURVEYNAME}' abgegeben.<br /><br />
Klicken Sie auf den folgenden Link um die Umfrage neu zu laden:<br />{RELOADURL}<br /><br />
Klicken Sie auf den folgenden Link um den Antwortdatensatz anzusehen:<br />{VIEWRESPONSEURL}<br /><br />
Klicken Sie auf den folgenden Link um den Antwortdatensatz zu bearbeiten:<br />{EDITRESPONSEURL}<br /><br />
Um die Statistik zu sehen, klicken Sie hier:<br />{STATISTICSURL}<br /><br /><br />
Die folgenden Antworten wurden vom Teilnehmer gegeben:<br />{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[1]]></surveyls_numberformat>
   </row>
  </rows>
 </surveys_languagesettings>
 <themes>
  <theme>
   <sid>732433</sid>
   <template_name>fruity</template_name>
   <config>
    <options>inherit</options>
   </config>
  </theme>
  <theme>
   <sid>732433</sid>
   <template_name>vanilla</template_name>
   <config>
    <options>inherit</options>
   </config>
  </theme>
 </themes>
 <themes_inherited>
  <theme>
   <sid>732433</sid>
   <template_name>fruity</template_name>
   <config>
    <options>
     <ajaxmode>on</ajaxmode>
     <brandlogo>on</brandlogo>
     <brandlogofile>./files/logo.png</brandlogofile>
     <container>on</container>
     <backgroundimage>off</backgroundimage>
     <animatebody>off</animatebody>
     <bodyanimation>fadeInRight</bodyanimation>
     <bodyanimationduration>500</bodyanimationduration>
     <animatequestion>off</animatequestion>
     <questionanimation>flipInX</questionanimation>
     <questionanimationduration>500</questionanimationduration>
     <animatealert>off</animatealert>
     <alertanimation>shake</alertanimation>
     <alertanimationduration>500</alertanimationduration>
     <font>noto</font>
     <bodybackgroundcolor>#ffffff</bodybackgroundcolor>
     <fontcolor>#444444</fontcolor>
     <questionbackgroundcolor>#ffffff</questionbackgroundcolor>
     <questionborder>on</questionborder>
     <questioncontainershadow>on</questioncontainershadow>
     <checkicon>f00c</checkicon>
     <animatecheckbox>on</animatecheckbox>
     <checkboxanimation>rubberBand</checkboxanimation>
     <checkboxanimationduration>500</checkboxanimationduration>
     <animateradio>on</animateradio>
     <radioanimation>zoomIn</radioanimation>
     <radioanimationduration>500</radioanimationduration>
     <zebrastriping>off</zebrastriping>
     <stickymatrixheaders>off</stickymatrixheaders>
     <greyoutselected>off</greyoutselected>
     <hideprivacyinfo>off</hideprivacyinfo>
     <crosshover>off</crosshover>
     <showpopups>1</showpopups>
    </options>
   </config>
  </theme>
  <theme>
   <sid>732433</sid>
   <template_name>vanilla</template_name>
   <config>
    <options>
     <ajaxmode>on</ajaxmode>
     <brandlogo>on</brandlogo>
     <container>on</container>
     <hideprivacyinfo>off</hideprivacyinfo>
     <brandlogofile>./files/logo.png</brandlogofile>
     <font>noto</font>
    </options>
   </config>
  </theme>
 </themes_inherited>
</document>
