<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.bci2000.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mellinger</id>
	<title>BCI2000 Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.bci2000.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mellinger"/>
	<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php/Special:Contributions/Mellinger"/>
	<updated>2026-06-30T19:31:38Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=User_Reference:Timing&amp;diff=12493</id>
		<title>User Reference:Timing</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=User_Reference:Timing&amp;diff=12493"/>
		<updated>2026-06-29T13:01:48Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Timing Display */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Real-Time Operation==&lt;br /&gt;
Timing is a critical issue in a system that processes data in real time.&lt;br /&gt;
Such a system must process data faster than they are acquired; this is the &#039;&#039;real-time constraint&#039;&#039;.&lt;br /&gt;
In BCI2000, data is acquired and processed in [[BCI2000 Glossary#Sample Block|sample blocks]]. Ideally, these sample blocks are acquired in regular intervals. To work in real-time, the system needs to finish processing, user display, and data storage within a &#039;&#039;block duration&#039;&#039;, i.e., the duration corresponding to a single sample block.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Roundtrip time&#039;&#039; is the time needed for a sample block to traverse the [[Technical Reference:Core Modules|core modules]].&lt;br /&gt;
Starting with the acquisition of a sample block, a block&#039;s roundtrip includes the time spent on signal processing and stimulus display. The roundtrip finishes when the block enters the data acquisition module again.&lt;br /&gt;
&lt;br /&gt;
To fulfill the real-time constraint, roundtrip time may not exceed the physical duration of a sample block.&lt;br /&gt;
For stable system operation, a weaker condition is sufficient: only the roundtrip&#039;s average value needs to stay below a sample block duration.&lt;br /&gt;
&lt;br /&gt;
==Measuring Block Duration==&lt;br /&gt;
Immediately after data block has been acquired from hardware, the [[User Reference:DataIOFilter|DataIOFilter]] writes a 16-bit millisecond-resolution time stamp into the &#039;&#039;SourceTime&#039;&#039; state.&lt;br /&gt;
Block duration is measured as the difference between two consecutive time stamps.&lt;br /&gt;
&lt;br /&gt;
==Measuring Roundtrip Time==&lt;br /&gt;
Roundtrip is measured by subtracting a data block&#039;s time stamp from the current time when it enters the data acquisition module coming from the application module.&lt;br /&gt;
&lt;br /&gt;
==Measuring Source-to-Stimulus Delay==&lt;br /&gt;
In the &#039;&#039;StimulusTime&#039;&#039; state, the application module stores a time stamp when the module&#039;s Process() function has finished. By this time, video memory should have been updated, given that the module enforces a display update at the end of its Process() function; generally, this is done by calling the &amp;lt;tt&amp;gt;[[Programming Reference:GraphDisplay Class#Update|GUI::GraphDisplay::Update()]]&amp;lt;/tt&amp;gt; function for the module&#039;s display window. Modules that use the [[Programming Reference:ApplicationWindow Class|ApplicationWindow]] class for stimulus display (as most do), don&#039;t need to call &amp;lt;tt&amp;gt;GUI::GraphDisplay::Update()&amp;lt;/tt&amp;gt;, as this is taken care for by the ApplicationWindow class after all calls to &amp;lt;tt&amp;gt;GenericFilter::Process()&amp;lt;/tt&amp;gt; have returned.&lt;br /&gt;
&lt;br /&gt;
Once the stimulus time stamp has reached the source module, the [[User Reference:DataIOFilter|DataIOFilter]] subtracts the source time stamp from the stimulus time stamp to compute the source-to-stimulus delay. Unlike roundtrip time, measurement of the source-to-stimulus delay requires that data acquisition and application modules share a common time base; when BCI2000 is distributed over multiple machines in a network, source-to-stimulus delay cannot be measured.&lt;br /&gt;
&lt;br /&gt;
==Timing Display==&lt;br /&gt;
[[Image:TimingDisplay.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
When switched on via the [[User Reference:DataIOFilter#VisualizeTiming|&#039;&#039;VisualizeTiming&#039;&#039;]] parameter, timing data are displayed in a visualization window.&lt;br /&gt;
In this window, theoretical sample block length is indicated with a tickmark on the y axis, with scaling such that a range of 0..2 physical sample block lengths is displayed.&lt;br /&gt;
&lt;br /&gt;
Timing values are displayed separately for actual block duration, roundtrip time, and source-to-stimulus delay.&lt;br /&gt;
Using this graph, the experimentator can keep track of&lt;br /&gt;
*regularity of data acquisition -- the block duration curve should be a straight line;&lt;br /&gt;
*real-time operation -- roundtrip time should stay below theoretical sample block length;&lt;br /&gt;
*module communication overhead -- this is represented by the difference between &#039;&#039;roundtrip&#039;&#039; and &#039;&#039;stimulus&#039;&#039; curves;&lt;br /&gt;
*stimulus trigger time and stimulus display -- each yellow dot represents a triggered stimulus, each green dot represents a visual stimulus display;&lt;br /&gt;
*audio playback -- each violet dot represents the transition from a zero audio buffer to a nonzero one, relative to a preceding yellow dot (stimulus trigger).&lt;br /&gt;
&lt;br /&gt;
==Timing Evaluation==&lt;br /&gt;
During a run, BCI2000 continously monitors roundtrip time to ensure proper timing, and issues warnings when roundtrip time approaches more than 75% of a sample block duration. Once roundtrip time consistently exceeds sample block duration, the current run is aborted with an error message.&lt;br /&gt;
&lt;br /&gt;
There are situations in which this behavior is undesired, such as when debugging or profiling BCI2000 modules. To handle these cases, the SignalGenerator and FilePlayback source modules provide a command line switch that disables timing evaluation.&lt;br /&gt;
*Make sure that you are starting up BCI2000 from a batch file rather than [[User Reference:BCI2000Launcher|BCI2000Launcher]].&lt;br /&gt;
*Edit the batch file, and add &amp;lt;tt&amp;gt;--EvaluateTiming=0&amp;lt;/tt&amp;gt; to the command line that starts up the source module.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Technical Reference:Core Modules]], [[User Reference:DataIOFilter]]&lt;br /&gt;
&lt;br /&gt;
[[Category:User Interface]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=File:BCI2000Analysis_AnalysisWindow.png&amp;diff=12492</id>
		<title>File:BCI2000Analysis AnalysisWindow.png</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=File:BCI2000Analysis_AnalysisWindow.png&amp;diff=12492"/>
		<updated>2026-06-23T17:29:33Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: Mellinger uploaded a new version of File:BCI2000Analysis AnalysisWindow.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=File:BCI2000Analysis_AnalysisWindow.png&amp;diff=12491</id>
		<title>File:BCI2000Analysis AnalysisWindow.png</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=File:BCI2000Analysis_AnalysisWindow.png&amp;diff=12491"/>
		<updated>2026-06-23T17:22:16Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: Mellinger uploaded a new version of File:BCI2000Analysis AnalysisWindow.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=User_Reference:BCI2000Analysis&amp;diff=12490</id>
		<title>User Reference:BCI2000Analysis</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=User_Reference:BCI2000Analysis&amp;diff=12490"/>
		<updated>2026-06-23T17:12:01Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Viewing data as seen by the Application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The BCI2000Analysis program is a versatile tool for&lt;br /&gt;
* Applying Signal Processing filters to existing data,&lt;br /&gt;
* Testing and Benchmarking new Signal Processing filters,&lt;br /&gt;
* Training and testing Linear Classifier weights using various methods.&lt;br /&gt;
&lt;br /&gt;
The program may be viewed as a more versatile version of the [[User Reference:BCI2000 Offline Analysis|BCI2000 Offline Analysis]] tool, and a complement of the [[User Reference:P300Classifier|P300Classifier]] tool. Unlike BCI2000 Offline Analysis, it does not require Matlab to run. Unlike the P300Classifier tool, it allows to use classifier training methods other than SWLDA, and it allows to visualize time courses and topographic plots of P300 responses. For data recorded with the P300 speller online component, it will also translate classifications into spelling results.&lt;br /&gt;
&lt;br /&gt;
==The BCI2000Analysis main window==&lt;br /&gt;
The main window consists of &lt;br /&gt;
*areas for training and test data, &lt;br /&gt;
*a pane containing the filter graph,&lt;br /&gt;
*a log area that holds log information produced by filters (if any). &lt;br /&gt;
*In the lower left, two condition fields exist to hold the conditions for collecting data into either of two sets that may then be used to train a classifier, or to view data as seen by the application node.&lt;br /&gt;
*In the lower right, a selection area allows to select the &amp;quot;target&amp;quot; of analysis, i.e. the filter graph node at which to observe and visualize data. By default, this is set to &amp;quot;Linear Classifier&amp;quot;, and the Linear Classifier node in the filter graph is correspondingly highlighted by a black frame.&lt;br /&gt;
*At the bottom, there is an &amp;quot;Analysis Log&amp;quot; area that holds log messages originating from the BCI2000Analysis program itself, such as information about newly loaded data files, modifications to the filter graph, or application of filter parameters from trained classifiers.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_MainWindow.png]]&lt;br /&gt;
&lt;br /&gt;
Clicking the “Add analysis files” or the “+” button below the analysis files field will open a file dialog that allows you to choose BCI2000 data files for analysis. Similarly, “Add testing files” or the “+” button below the testing files field will allow you to add BCI2000 data files for testing after a classifier has been trained. Analysis and testing files are checked for consistency when added.&lt;br /&gt;
&lt;br /&gt;
By default, the filter graph is automatically populated when one or more training data files are added to the list, and so are the condition fields. If necessary, filter graph and conditions may be edited to fit special needs (see below).&lt;br /&gt;
&lt;br /&gt;
Above the condition fields, a button will show the standard BCI2000 parameter configuration dialog when clicked. By default, parameter configuration is taken from the first data file in the “training data files” list, and from parameter defaults for any parameters that are not present in that data file.&lt;br /&gt;
&lt;br /&gt;
===Editing the Filter Graph===&lt;br /&gt;
By default, a suitable filter graph is automatically chosen when specifying a data file. Still, you may edit such a default graph, choose a different one from the &#039;&#039;Analysis→FilterGraph&#039;&#039; menu, or build one from scratch by selecting &#039;&#039;Analysis→FilterGraph→User defined&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
As it suits the BCI2000 model, a filter graph will always begin with a single Source node, and end in  a single Application node. In between, filtering may be split into multiple branches but must finally be joined into a single node. By the way filter graph editing works, it is not possible to produce invalid graphs. Whenever you insert a splitter node, a corresponding joint is automatically inserted for you. You may add and remove filters into and from the new branches but when you remove a splitter, all its branches and its joint node are removed.&lt;br /&gt;
&lt;br /&gt;
Internally, a splitter and its corresponding joint node are implemented by a [[Programming_Reference:ParallelCombination|ParallelCombination]] object.&lt;br /&gt;
A splitter&#039;s two branches are each implemented as a [[Programming_Reference:SubchainFilter|SubchainFilter]].&lt;br /&gt;
&lt;br /&gt;
You insert a filter between two nodes by right-clicking the connection between them, and choosing “Filter…” from the popup menu. A dialog window appears that contains a menu with all pre-existing types of filters, so you may select e.g. “SpatialFilter”, “P3TemporalFilter”, and so on. As a special entry, the list contains “Filter from DLL…” which allows you to choose a [[Programming Reference:Filter DLLs|BCI2000 filter DLL]]. This is especially useful when developing a filter that is not part of the [[User_Reference:Filters|standard set of BCI2000 filters]] (see [[Programming_Reference:Filter_DLLs#Howto:_Building_your_own_filter_as_a_BCI2000_Filter_DLL|here]] for a description how to build your own filter as a BCI2000 filter DLL).&lt;br /&gt;
&lt;br /&gt;
A special role plays the [[User_Reference:LinearClassifier|LinearClassifier]] filter, which is displayed in red. At its location, data is collected according to the conditions specified in the “Analysis conditions” field. When performing classifier training (see below), this data is then used to train the classifier, and training results are applied to test the classifier.&lt;br /&gt;
&lt;br /&gt;
Similarly, there is a &amp;quot;CSPSpatialFilter&amp;quot; which is also displayed in red. Normally, it acts like a [[User_Reference:SpatialFilter|SpatialFilter]], but when selected as an analysis target, it will observe its input data according to the conditions specified in the &amp;quot;Analysis conditions&amp;quot; field. It will then be able to do a [https://en.wikipedia.org/wiki/Common_spatial_pattern &amp;quot;Common Spatial Pattern&amp;quot;] analysis on this data, resulting in a SpatialFilter configuration that provides an optimal signal-to-noise ratio between the two conditions.&lt;br /&gt;
&lt;br /&gt;
From the “File” menu, filter graphs may be saved to, and loaded from, &amp;lt;tt&amp;gt;.bcigraph&amp;lt;/tt&amp;gt; files, which are human readable and may be edited using a text editor. Also, filter graphs may written into C++ &amp;lt;tt&amp;gt;PipeDefinition.cpp&amp;lt;/tt&amp;gt; files suitable for use as a signal processing module’s [[Programming_Reference:Filter_Chain#Signal_Processing_Filter_Instantiation|pipe definition file]].&lt;br /&gt;
&lt;br /&gt;
==Performing Analysis==&lt;br /&gt;
You perform an analysis by pressing “Run analysis…” in the button bar, or by selecting “Run analysis…” from the “Analysis” menu. During analysis, a progress bar is displayed. Once done, a new window opens up, showing an r^2 plot. Depending on the input of the LinearClassifier filter, the x axis displays either time in milliseconds, or frequency in Hertz, whereas channels are numbered on the y axis. This is the same plot as displayed by the [[User_Reference:BCI2000_Offline_Analysis|Offline Analysis tool]], and shows the squared correlation between features and conditions at the input of the LinearClassifier filter.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_AnalysisWindow.png]]&lt;br /&gt;
&lt;br /&gt;
In the r^2 plot, you may view an individual value by clicking its location, which will make a tooltip appear. Right-clicking a location in the plot will turn up a context menu offering to view a cross-section across channels (topographic plot), or a cross-section across frequencies/time points (curve plot). You may also manually enter the frequency/time point, or channel, in question by selecting the appropriate entry from the “View” menu.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_ERDDistribution.png]]&lt;br /&gt;
[[File:BCI2000Analysis_ERDCurves.png]]&lt;br /&gt;
&lt;br /&gt;
==Using the Profiler==&lt;br /&gt;
If you choose “Profiler” as the analysis target, the behavior of “Run Analysis” will change. It will still run the specified data through the pipeline, but it will not produce an r^2 graph as a result. Rather, it will open a window that shows how much time each filter has been using, in terms of a sample block size. If any of these numbers approaches 100%, this will be problematic for real-time operation, and the respective lines will be shown in red.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_Profiler.png]]&lt;br /&gt;
&lt;br /&gt;
==Training a Classifier==&lt;br /&gt;
The analysis window provides controls that allow you to train a linear classifier using four distinct methods: Linear Discriminant Analysis (LDA), Step-Wise Linear Discriminant Analysis (SWLDA), Support Vector Machine (SVM), and &amp;quot;Manual&amp;quot;, i.e. choosing classifier weights by hand.&lt;br /&gt;
&lt;br /&gt;
For all training algorithms, a downsampling factor may be chosen. For P300 data sampled at 250Hz, this would typically be 10; for ERD data, no downsampling would be appropriate (downsampling factor of 1). Note that downsampling will typically improve classifier performance because it reduces the dimensionality of the classifier, and results in a better ratio of sampled data to degrees of freedom in the classifier.&lt;br /&gt;
&lt;br /&gt;
For the SWLDA training algorithm, three additional parameters are available. &amp;lt;tt&amp;gt;p_enter&amp;lt;/tt&amp;gt; is the p-value for which a feature will be included in classification, &amp;lt;tt&amp;gt;p_remove&amp;lt;/tt&amp;gt; is the p-value for which a feature will be removed from classification. &amp;lt;tt&amp;gt;max_iterations&amp;lt;/tt&amp;gt; limits the number of iterations to perform. Typically, default values are fine.&lt;br /&gt;
&lt;br /&gt;
Once a classifier has been trained, a window appears which shows classifier information on the left side, and a classifier plot on the right side. The classifier plot is similar to the r^2 plot but shows absolute values of classifier weights to give an impression which features are weighted strongly by the classifier.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_ClassifierWindow.png]]&lt;br /&gt;
&lt;br /&gt;
On the left, the classifier’s offset and variance are displayed, plus its performance on training and test data. Note that performance on training data is typically much better than on test data, which is due to overfitting of the classifier. Only the performance on test data should be taken as an indication how well the classifier will perform on unseen data. Performance is shown in % of correct classifications, for both the “normalized” and “raw” case. The difference is that the “normalized” case takes the bias due to unequal number of data samples in the two data sets into account. If the number of data samples in the two data sets agree, “normalized” and “raw” performance will agree as well.&lt;br /&gt;
&lt;br /&gt;
===Saving a Classifier as a Parameter File===&lt;br /&gt;
From the classifier window, choose &#039;&#039;File→Save Classifier Parameters…&#039;&#039; in order to save a parameter file with only LinearClassifier related parameters. You can then load this parameter file into BCI2000 using the [[User_Reference:Operator_Module#Parameter_Configuration_Window|Operator’s Config dialog]], or the &amp;lt;tt&amp;gt;Load Parameterfile&amp;lt;/tt&amp;gt; [[User_Reference:Operator_Module_Scripting|scripting command]]. Similarly, you may save all parameters from the current analysis chain, including LinearClassifier, by choosing &#039;&#039;File→Save All Filter Parameters…&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Applying a Classifier to the Filter Chain===&lt;br /&gt;
If you want to apply the LinearClassifier to the chain without saving it to a file, choose &#039;&#039;File→Apply Classifier Parameters&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Training a Spatial Filter==&lt;br /&gt;
If there is a &amp;quot;CSPSpatialFilter&amp;quot; node present in the filter graph (a red &amp;quot;SpatialFilter&amp;quot; node), it may be selected as the analysis target. Then, clicking &amp;quot;Run analysis...&amp;quot; will result in a window like this:&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis_CSPWindow.png]]&lt;br /&gt;
&lt;br /&gt;
At the top, CSP components are displayed in form of topographic plots. Below the topographic plot, there is a slider that allows to move through components; this works as well using shift-left arrow and shift-right arrow. Using the &amp;quot;Display pattern&amp;quot; and &amp;quot;Display field&amp;quot; radio buttons, a component may be viewed as a &amp;quot;pattern&amp;quot; (weights for component extraction) or &amp;quot;field&amp;quot; (weights for synthesizing the component). The &amp;quot;Retain&amp;quot; checkbox allows to select which components are supposed to be retained or removed from the data after applying the spatial filter. Finally, there is a graph showing the power log ratio of all components. Positive values correspond to greater amplitudes for condition 1, and negative values to greater amplitudes for condition 2. For the current component, power log ratio is also displayed at the top of the window, in both natural log and binary log units (bits). As can be seen from the graph, components are sorted according to power log ratio, such that the first components carry most information about the given conditions.&lt;br /&gt;
&lt;br /&gt;
===Saving a Spatial Filter as a Parameter File===&lt;br /&gt;
From the CSP window, choose &#039;&#039;File→Save Spatial Filter Parameters…&#039;&#039; in order to save a parameter file with only CSP spatial filter parameters. You can then load this parameter file into BCI2000 using the [[User_Reference:Operator_Module#Parameter_Configuration_Window|Operator’s Config dialog]], or the &amp;lt;tt&amp;gt;Load Parameterfile&amp;lt;/tt&amp;gt; [[User_Reference:Operator_Module_Scripting|scripting command]]. Similarly, you may save all parameters from the current analysis chain, including CSP spatial filter, by choosing &#039;&#039;File→Save All Filter Parameters…&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Applying a Spatial Filter to the Filter Chain===&lt;br /&gt;
If you want to apply the CSP Spatial Filter to the chain without saving it to a file, choose &#039;&#039;File→Apply Spatial Filter Parameters&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Viewing data as seen by the Application Module==&lt;br /&gt;
Finally, after training and applying classifier and/or spatial filter, you may be interested in the distribution of data as seen by the Application module. To this end, select the Application node as a target (its actual name depends on the kind of data analyzed).&lt;br /&gt;
&lt;br /&gt;
===SMR/ERD Data===&lt;br /&gt;
For SMR/ERD data, the result may look like this:&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis ApplicationData1.png]]&lt;br /&gt;
&lt;br /&gt;
For training data, the classifier is able to perform a perfect separation.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis ApplicationData2.png]]&lt;br /&gt;
&lt;br /&gt;
For test data, only partial separation is obtained.&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis ApplicationData3.png]]&lt;br /&gt;
&lt;br /&gt;
By integrating over trials (as the actual SMR application does), good separation is still obtained for both training and test data.&lt;br /&gt;
&lt;br /&gt;
===P300 Spelling Data===&lt;br /&gt;
For data recorded with the P300Speller online component, the result is not only displayed as a distribution but also evaluated in terms of spelling accuracy:&lt;br /&gt;
&lt;br /&gt;
[[File:BCI2000Analysis ApplicationData4.png]]&lt;br /&gt;
&lt;br /&gt;
==Debugging a filter DLL==&lt;br /&gt;
To debug a filter contained in a DLL, you have two options:&lt;br /&gt;
===Setting breakpoints in the IDE===&lt;br /&gt;
Start up &#039;&#039;BCI2000Analysis&#039;&#039;, and attach a debugger to the process. In the debugger IDE, navigate to your filter&#039;s cpp file, and set breakpoints as you see fit. Then, activate the DLL by adding a filter DLL node and choosing your filter, and run the filter chain by clicking &amp;quot;Run analysis&amp;quot;. Execution should stop when any of the breakpoints is hit.&lt;br /&gt;
===Using a &amp;lt;tt&amp;gt;SuggestDebugging&amp;lt;/tt&amp;gt; Statement===&lt;br /&gt;
In your filter&#039;s cpp file, include &amp;lt;tt&amp;gt;Debugging.h&amp;lt;/tt&amp;gt;, and add a line &amp;lt;pre&amp;gt;SuggestDebugging &amp;lt;&amp;lt; &amp;quot;Foo&amp;quot;;&amp;lt;/pre&amp;gt; anywhere in your filter&#039;s functions. When the filter DLL is activated and the &amp;lt;tt&amp;gt;SuggestDebugging&amp;lt;/tt&amp;gt; statement is executed, it will display a message box. You may then attach a debugger to the &#039;&#039;BCI2000Analysis&#039;&#039; process, and click &amp;quot;yes&amp;quot; in the message box to drop into the debugger.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For these debugging instructions to work, it is necessary that both &#039;&#039;BCI2000Analysis&#039;&#039; and the filter DLL have been compiled in Debug mode.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:BCI2000Viewer]], [[User Reference:BCI2000FileInfo]], [[User Reference:BCI2000 Offline Analysis]], [[User Reference:P300Classifier]], [[Programming Reference:Filter DLLs]]&lt;br /&gt;
&lt;br /&gt;
[[Category:User Interface]][[Category:Data Analysis Tools]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12489</id>
		<title>User Reference:P300Classifier</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12489"/>
		<updated>2026-06-23T13:34:56Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Classifier Weight Normalization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI (Graphical User Interface) is a tool that allows to train and test a linear classifier for detection of evoked related potentials collected with [http://www.bci2000.org/wiki BCI2000]. This GUI is designed for the analysis of BCI2000 data collected using the P3Speller or Stimuli Presentation paradigms. The program generates feature weights by using a linear classifier algorithm called Stepwise Linear Discriminant Analysis (SWLDA). The specifics of the feature space and training routine can be manipulated using the GUI. The feature weights derived from the GUI can be saved and imported into BCI2000 as a parameter file fragment (*.prm) for online testing. Unlike the Matlab-based P300 GUI, the P300 Classifier GUI has the main advantage of being completely Matlab independent. All its core functionality is written in C++ accompanied with a friendly graphical user interface written in [http://en.wikipedia.org/wiki/Qt_(toolkit) Qt]. Additionally, this new tool is completely scriptable; that is the investigator can write all the commands needed to train and test the linear classifier in a [http://en.wikipedia.org/wiki/Batch_file batch] file without using the GUI. An example of this batch script can be found in the [https://www.bci2000.org/mediawiki/index.php/User_Reference:P300Classifier#Batch_Scripting Batch Scripting] section. The P300 Classifier GUI provides the following functionality to investigators: &lt;br /&gt;
&lt;br /&gt;
; Classifier Training: Generates feature weights from BCI2000 P3Speller or Stimuli Presentation data files &lt;br /&gt;
&lt;br /&gt;
; Classifier Testing: Applies current feature weights to BCI2000 P3Speller or Stimuli Presentation data files and compares the results&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/core/Tools/P300Classifier&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Author===&lt;br /&gt;
Cristhian Mauricio Potes&lt;br /&gt;
&lt;br /&gt;
===e-mail===&lt;br /&gt;
cmpotes@miners.utep.edu&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: May 15, 2009&lt;br /&gt;
*Tested under: Windows XP, Windows Vista&lt;br /&gt;
*Known to compile under: Visual Studio 2008&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Control Panel==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI is composed of three panes: Data, Parameters, and Details. &lt;br /&gt;
&lt;br /&gt;
===Data Pane===&lt;br /&gt;
Data Pane allows the user to&lt;br /&gt;
&lt;br /&gt;
* Load training and testing data files and an INI file &lt;br /&gt;
* Generate and apply feature weights&lt;br /&gt;
* Write a parameter file fragment (*.prm)&lt;br /&gt;
&lt;br /&gt;
[[image:dataPaneLabels.png|frame|center|Data pane]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Training Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier training. The information for the selected files will appear at the top of the button.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [2] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Testing Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier testing. The information for the selected files will appear at the top of the button. Training and testing data files must be compatible.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [3] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Ini File:&#039;&#039;&#039; Use this button to load an [http://en.wikipedia.org/wiki/INI_file INI file] with all the parameters needed for the classifier.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
&lt;br /&gt;
maxiter = 60 // to set Max Model Features&lt;br /&gt;
penter = 0.1000 // to set Penter&lt;br /&gt;
premove = 0.1500 // to set Premove&lt;br /&gt;
spatial_filter = 1 // to set Spatial Filter. Set 1 for RAW and 2 for CAR&lt;br /&gt;
decimation_frequency_Hz = 20 // to set Decimation Frequency&lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 // to set Channel Set&lt;br /&gt;
Resp_window_ms = 0 800 // to set Response Window. The response window must be in milliseconds (ms) &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [4] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Generate Feature Weights:&#039;&#039;&#039; Use this button to generate the feature weights after properly configuring all of the parameters in the  [[User_Reference:P300_classifier#Parameters|Parameters]] pane. This button will be enable only if the parameters are properly configured and there exists training data files. Once it has been generated feature weights properly, a suggested name for the parameter file fragment (*.prm) will show up at the top of the [[User_Reference:P300_classifier#Write *.prm File|Write *.prm File]] button.   &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Apply Feature Weights:&#039;&#039;&#039; Use this button to test the classification accuracy of the feature weights currently stored in the GUI. The classification results will appear in the [[User_Reference:P300_classifier#Details Pane|Details]] pane.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [6] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Write *.prm File:&#039;&#039;&#039; Use this button to save the parameter file fragment with the name suggested at the top of this button. The *.prm file is a [http://www.bci2000.org/wiki BCI2000] parameter file fragment that can be imported into [http://www.bci2000.org/wiki BCI2000] for online testing of the feature weights.&lt;br /&gt;
&lt;br /&gt;
===Parameters Pane===&lt;br /&gt;
Parameters Pane contains all the parameters needed to generate feature weights by using the SWLDA algorithm. These parameters can be loaded using the [[User_Reference:P300_classifier#Load Ini File|Data Pane]] button. If the parameters are properly configured the [[User_Reference:P300_classifier#Data Pane|Generate Feature Weights]] button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:parametersPaneLabel.png|frame|center|Parameters pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [7] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Max Model Features:&#039;&#039;&#039; Used to specify the maximum number of features to be kept in the SWLDA algorithm. Only a single value can be entered for evaluation. The default value is 60.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [8] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Penter:&#039;&#039;&#039; Used to specify the maximum [http://en.wikipedia.org/wiki/P-value p-value] for  a variable to be entered. The default value is 0.1000. Penter must be less than Premove and 0&amp;lt;Penter&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [9] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Premove:&#039;&#039;&#039; Used to specify the maximum  [http://en.wikipedia.org/wiki/P-value p-value] for a variable to be removed. The default value is 0.1500. Premove must be greater than Penter and 0&amp;lt;Premove&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [10] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Spatial Filter:&#039;&#039;&#039; Selects the spatial filter applied to the training data. Select &#039;&#039;&#039;RAW&#039;&#039;&#039; or &#039;&#039;&#039;CAR&#039;&#039;&#039; from the drop-down menu. &#039;&#039;&#039;RAW&#039;&#039;&#039; is no spatial filter applied to the data, and &#039;&#039;&#039;CAR&#039;&#039;&#039; is a common average reference filter using all of the channels contained in the data file &#039;&#039;&#039;(not just the channels specified in the GUI channel set)&#039;&#039;&#039;. The default spatial filter is &#039;&#039;&#039;RAW&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [11] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Decimation Frequency:&#039;&#039;&#039; Used to specify the temporal decimation frequency of the data in Hz. Only a single value can be entered for evaluation. Set this parameter to the [[User_Reference:P300_classifier#Details Pane|Sampling Rate]] value for no decimation. The lower the Decimation Frequency, the less original data retained for processing. Typically, 20 is a good choice for this parameter.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [12] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Channel Set:&#039;&#039;&#039; Used to specify the channel set that will be used to create feature weights. The specified channels must be a subset of the channels contained in the training data file. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [13] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Response Window:&#039;&#039;&#039; Used to specify the &#039;&#039;Begin&#039;&#039; and &#039;&#039;End&#039;&#039; time points in milliseconds (ms) following the stimuli collected for the analysis. These two values are automatically converted into samples according to the sampling rate of the data (rounded). Only a single data window can be entered and will be evaluated. &#039;&#039;Begin&#039;&#039; must be less than &#039;&#039;End&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Details Pane===&lt;br /&gt;
Details Pane displays information about the [http://www.bci2000.org/wiki BCI2000] training data files and the classification results. &lt;br /&gt;
&lt;br /&gt;
[[image:detailsPaneLabel.png|frame|center|Details pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [14] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Sampling Rate:&#039;&#039;&#039; Displays the sampling rate in (Hz) contained in the training data files.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [15] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Number of Channels:&#039;&#039;&#039; Displays the total number of channels contained in the training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [16] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Classifier:&#039;&#039;&#039; Displays the classifier applied to generate the feature weights. The P300Classifier GUI only uses the SWLDA classifier algorithm.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [17] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Application:&#039;&#039;&#039; Displays the type of application used for the investigator. The application can be either &#039;&#039;P3SpellerTask&#039;&#039; or &#039;&#039;StimulusPresentationTask&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [18] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Interpret Mode:&#039;&#039;&#039; Displays the interpret mode used for the investigator. The mode can be either &#039;&#039;Copy Mode&#039;&#039; or &#039;&#039;Online Free Mode&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [19] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Duration:&#039;&#039;&#039; Displays the duration in seconds (s) of the whole training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; The text editor displays the classification results for the training and testing data files.&lt;br /&gt;
&lt;br /&gt;
===Batch Scripting===&lt;br /&gt;
The P300 Classifier Tool can be scripted in a batch file using the example format below (note this needs to be entered as a single line):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
C:\BCI2000.x64\tools\P300Classifier\P300Classifier.exe &lt;br /&gt;
-TrainingDataFiles C:\BCI2000.x64\data\ClassifierTest001\ClassifierTestS001R01.dat &lt;br /&gt;
-inicfg C:\BCI2000.x64\tools\P300Classifier\parameters.ini &lt;br /&gt;
-ClassifierOutputFile C:\BCI2000.x64\data\ClassifierTest001\P3Classifier_ChS1_RAW_SW.prm&lt;br /&gt;
-PscoreDumpFileTraining C:\BCI2000.x64\data\ClassifierTest001\PscoreTraining.txt&lt;br /&gt;
-PscoreDumpFileTesting C:\BCI2000.x64\data\ClassifierTest001\PscoreTesting.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Methodology==&lt;br /&gt;
&lt;br /&gt;
===Methodology Concept===&lt;br /&gt;
The idea behind the P300Classifier is to train and test a linear classifier (SWLDA) for detection of evoked potentials collected from brain signals. This is achieved in the following steps:&lt;br /&gt;
* Training Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Generate feature weights for a linear model using SWLDA&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application &lt;br /&gt;
&lt;br /&gt;
* Testing Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application&lt;br /&gt;
&lt;br /&gt;
===Methodology Step By Step===&lt;br /&gt;
&lt;br /&gt;
====Step 1: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Load BCI2000 Data Files]====&lt;br /&gt;
&lt;br /&gt;
The first step to start using the P300Classifier GUI is to load training and testing BCI2000 data files specified by the investigator. The BCI2000 data files are checked for compatibility and consistency. If all training data files are valid then the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled and each file is colored with light green. Otherwise, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled, and each file is colored either with yellow or pink. See the following color coded scheme and example.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:yellow&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files mismatch&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files may be valid but there is a mismatch with another file.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are invalid.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial0.png|frame|center|Training data file is not valid; the file is highlighted in pink. Testing data file is valid; the file is highlighted in light green. The &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until the training data file is valid.]]&lt;br /&gt;
&lt;br /&gt;
====Step 2: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Get P300 Responses] ====&lt;br /&gt;
&lt;br /&gt;
Signals, states, and parameters are extracted from BCI2000 training and testing data files. However, the signals that are only extracted for analysis are those defined by the user in the [[User_Reference:P300_classifier#Parameters Pane|&#039;&#039;&#039;Response Window&#039;&#039;&#039;]]. Only these signals are filtered and downsampled. The filter employed is a [http://en.wikipedia.org/wiki/Moving_average Moving Average (MA) Filter] implemented as a &#039;&#039;Direct form II Transposed&#039;&#039;. The MA filter belongs to the FIR filter and works as a low pass filter removing high frequency components of the signal.&lt;br /&gt;
&lt;br /&gt;
====Step 3: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Generate Feature Weights for a Linear Model using Stepwise Linear Discriminant Analysis (SWLDA)]====&lt;br /&gt;
&lt;br /&gt;
The idea behind SWLDA is to obtain a final linear model that approximately fits a set of data (stimulus) by using multiple linear regressions and iterative statistical procedures, thus selecting only significant variables that are included in the final regression.&lt;br /&gt;
 &lt;br /&gt;
The SWLDA algorithm can be summarized in the following steps:&lt;br /&gt;
&lt;br /&gt;
* STEP 1: Compute the autocorrelation matrix to select the variable most highly correlated to the observations. The selected variable is included in the linear model.&lt;br /&gt;
&lt;br /&gt;
* STEP 2: Fit an initial model by performing a linear regression equation with the included variable using least squares.&lt;br /&gt;
&lt;br /&gt;
* STEP 3: Check if the variable added is that one which makes greatest improvements in &amp;quot;goodness of fit.&amp;quot; That is, remove the added variable if its variance contribution in the regression is insignificant at a specified F level (F-test). If the added variable is removed go to Step 5, else go to Step 4.&lt;br /&gt;
&lt;br /&gt;
* STEP 4: Add the variable to the model if there is a significant variance reduction at a specified F-level.&lt;br /&gt;
&lt;br /&gt;
* STEP 5: Remove the added variable from the correlation matrix. Go to step 1.&lt;br /&gt;
&lt;br /&gt;
The method terminates when no single step improves the model.&lt;br /&gt;
&lt;br /&gt;
====Step 4: Apply Linear Classifier to Get Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are computed based on the variables included in the final linear model and the corresponding feature weights.&lt;br /&gt;
&lt;br /&gt;
====Step 5: Interpret Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are interpreted according to the given application, which can be either P300SpellerTask or StimulusPresentationTask.&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
&lt;br /&gt;
===Training the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Parameters&#039;&#039; pane contains all of the parameters for generating feature weights from BCI2000 data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps to generate feature weights: &lt;br /&gt;
&lt;br /&gt;
* Press the &#039;&#039;Load Training Data Files&#039;&#039; &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; button in the &#039;&#039;Data&#039;&#039; pane.&lt;br /&gt;
&lt;br /&gt;
* From the dialog box, select the desire BCI2000 *.dat file(s) for training. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each training data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. Files can only be selected from a single directory; the desired training data files should be organized into the same directory prior to using the P300Classifier GUI.&lt;br /&gt;
&lt;br /&gt;
* Once the &#039;&#039;Parameters&#039;&#039; pane is correctly set as desired, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enable. Press this button to perform the analysis and generate feature weights. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the SWLDA. The classification results will appear in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; of &#039;&#039;Details&#039;&#039; pane. Every time it is pressed the &#039;&#039;Generate Feature Weights&#039;&#039; button, and the analysis is successfully completed, there is generated a new feature weights set. &lt;br /&gt;
&lt;br /&gt;
* The training procedure can be repeated multiple times generating a new feature weights set that depends on the configured parameters.&lt;br /&gt;
&lt;br /&gt;
* After training is completed and feature weights are generated, it is recommended to test (cross validate) the feature weights on independent data (testing data files) before saving the parameter file fragment (*.prm). Additionally, there is a suggested parameter file fragment name displayed on the top of &#039;&#039;Write *.prm File&#039;&#039; button, which can be used to save the *.prm file either with the suggested name or the name specified by the investigator.&lt;br /&gt;
&lt;br /&gt;
===Testing the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Data&#039;&#039; pane contains the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button for testing the generated feature weights to one or more BCI2000 testing data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps for applying feature weights to testing data files:&lt;br /&gt;
&lt;br /&gt;
* Once it has been successfully generated feature weights and there exists testing data files, the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled. If there are no testing data files loaded, the investigator must press this button to load testing data file(s). One or more BCI2000 *.dat files can be selected from the same directory as a single &#039;test file group&#039; each time the button is pressed. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each testing data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. All testing files selected should have the same sampling rate and electrode montage as the training data files selected to generate the current feature weights set. &lt;br /&gt;
&lt;br /&gt;
* After all the testing data files are correctly selected, press the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button to perform the analysis. Results of the classification are displayed in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt;  of &#039;&#039;Details&#039;&#039; pane. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the classification.&lt;br /&gt;
&lt;br /&gt;
* After evaluating the classification results, the *.prm file from the current session can be saved by pressing the &#039;&#039;Write *.prm File&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
In the next example, it is desired to compute feature weights from the following BCI2000 training data file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button the file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039; is uploaded as shown in the next figure. Notice that the training data file is set up correctly since it is colored in light green. Remember that the classifier algorithm will be trained by using this training data file. &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial1.png|frame|center|By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button it is uploaded the desired BCI2000 training data file. The classifier algorithm is trained by using this training data file.]]&lt;br /&gt;
&lt;br /&gt;
The parameters shown in &#039;&#039;Parameters Pane&#039;&#039; are set by default. For illustration purposes, however, it is desired to load initial parameters from an INI file called parameters.ini by pressing the &#039;&#039;Load Ini File&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
maxiter = 60 &lt;br /&gt;
penter = 0.1000 &lt;br /&gt;
premove = 0.1500 &lt;br /&gt;
spatial_filter = 2 &lt;br /&gt;
decimation_frequency_Hz = 20 &lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 &lt;br /&gt;
Resp_window_ms = 0 800 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial2.png|frame|center|By pressing the &#039;&#039;Load Ini File&#039;&#039; button it is uploaded the desired initial parameters that the classifier algorithm will use to generate the corresponding feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Once the initial parameters are loaded and properly set up, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled, and each one of the parameter fields is colored in light green as shown in the next figure.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial3.png|frame|center|All of the parameter fields are properly set up. Thus, each parameter field is colored in light green.]]&lt;br /&gt;
&lt;br /&gt;
The investigator can change any of the parameters fields at any time. However, if that change is not properly set up (i.e., the given parameter is invalid), the corresponding parameter field will be colored in pink.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is invalid.&lt;br /&gt;
&lt;br /&gt;
In the next figure, the investigator changes the &#039;&#039;Channel Set&#039;&#039; field introducing one more channel, channel 9. Since this channel is not a subset of the channels contained in the training data file, the corresponding field is colored in pink, and a tool tip is popped up displaying the error message. Additionally, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until that specific field is properly configured.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial4.png|frame|center|The &#039;&#039;Channel Set&#039;&#039; field is modified by introducing one more channel, channel 9. This field is colored in pink since channel 9 is not a subset of the channels contained in the training data file.]]&lt;br /&gt;
&lt;br /&gt;
Once the parameters are properly configured, the investigator is ready to generate feature weights by pressing the &#039;&#039;Generate Feature Weights&#039;&#039; button. Details of the training data file and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.   &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial5.png|frame|center|Details of the training data file and progress of the classification. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
Once the classifier has been trained with the BCI2000 training data file, and it has generated the corresponding feature weights, it is desired to test these feature weights with the following BCI2000 testing data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button this file is uploaded as shown in the next figure. Notice that the testing data file is set up correctly since it is colored in light green. If the testing data file is valid then the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial6.png|frame|center|By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button it is uploaded the desired BCI2000 testing data file. The file is colored in light green if valid.]]&lt;br /&gt;
&lt;br /&gt;
The investigator is ready to apply feature weights by pressing the &#039;&#039;Apply Feature Weights&#039;&#039; button. Details of the training data file (no testing data file) and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial7.png|frame|center|Details of the training data file and progress of the classification. Testing feature weights generated from the training data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
If satisfied with the classification obtained from the current feature weights, the investigator can write a parameter file fragment *.prm with the name suggested in the &#039;&#039;Write *.prm File&#039;&#039; field by pressing the &#039;&#039;Write *.prm File&#039;&#039; button. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights. In the following image, it is written a *.prm file called &#039;&#039;&#039;MUDChS1_RAW_SW.prm&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial8.png|frame|center|Write a parameter file fragment *.prm. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Every time the investigator changes any of the parameters in the &#039;&#039;Parameters Pane&#039;&#039;, the &#039;&#039;Apply Feature Weights&#039;&#039; button is disabled. To enable it, the investigator must generate feature weights again.&lt;br /&gt;
&lt;br /&gt;
==Classifier Weight Normalization==&lt;br /&gt;
When applying classifier weights to obtain a classification score, and when selecting a target with the largest score, this procedure is invariant against multiplication of all classifier weights with a constant factor.&lt;br /&gt;
We are, thus, free to normalize classifier weights with a factor that allows us to interpret classification scores in a certain way. &lt;br /&gt;
&lt;br /&gt;
As described [[Programming_Reference:StimulusTask_Class#Accumulation_and_Combination_of_Evidence|here]], a normalization that makes within-class variance identical to unity will result in classification scores to represent an estimate of the log evidence in favor of the respective target. This allows the [[Programming_Reference:StimulusTask_Class#Accumulation_and_Combination_of_Evidence|AccumulateEvidence and MinimumEvidence parameters]] to work.&lt;br /&gt;
&lt;br /&gt;
==Future work==&lt;br /&gt;
&lt;br /&gt;
* Present classification results as topographies and graphs as the Matlab-based P300 GUI (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Let the P300Classifier GUI work with frequency-based features (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Speed up the P300Classifier GUI by using multithreading when solving the Least Squares (QR factorization)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* N. R. Draper, H. Smith. &#039;&#039;Applied Regression Analysis&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1966.&lt;br /&gt;
&lt;br /&gt;
* P. M. Embree, B. Kimble. &#039;&#039;C Language Algorithms for Digital Signal Processing&#039;&#039;. Prentice Hall, Englewood Cliffs, New Jersey, 1991.&lt;br /&gt;
&lt;br /&gt;
* A. Ralston, H. S. Wilf. &#039;&#039;Mathematical Methods for Digital Computers&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1962.&lt;br /&gt;
&lt;br /&gt;
* W. H. Press, S. A. Teukolsky, W. T. Vetterling, B. P. Flannery. &#039;&#039;Numerical Recipes in C&#039;&#039;. Cambridge University Press, New York, 1988.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12488</id>
		<title>User Reference:P300Classifier</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12488"/>
		<updated>2026-06-23T12:39:23Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Classifier Weight Normalization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI (Graphical User Interface) is a tool that allows to train and test a linear classifier for detection of evoked related potentials collected with [http://www.bci2000.org/wiki BCI2000]. This GUI is designed for the analysis of BCI2000 data collected using the P3Speller or Stimuli Presentation paradigms. The program generates feature weights by using a linear classifier algorithm called Stepwise Linear Discriminant Analysis (SWLDA). The specifics of the feature space and training routine can be manipulated using the GUI. The feature weights derived from the GUI can be saved and imported into BCI2000 as a parameter file fragment (*.prm) for online testing. Unlike the Matlab-based P300 GUI, the P300 Classifier GUI has the main advantage of being completely Matlab independent. All its core functionality is written in C++ accompanied with a friendly graphical user interface written in [http://en.wikipedia.org/wiki/Qt_(toolkit) Qt]. Additionally, this new tool is completely scriptable; that is the investigator can write all the commands needed to train and test the linear classifier in a [http://en.wikipedia.org/wiki/Batch_file batch] file without using the GUI. An example of this batch script can be found in the [https://www.bci2000.org/mediawiki/index.php/User_Reference:P300Classifier#Batch_Scripting Batch Scripting] section. The P300 Classifier GUI provides the following functionality to investigators: &lt;br /&gt;
&lt;br /&gt;
; Classifier Training: Generates feature weights from BCI2000 P3Speller or Stimuli Presentation data files &lt;br /&gt;
&lt;br /&gt;
; Classifier Testing: Applies current feature weights to BCI2000 P3Speller or Stimuli Presentation data files and compares the results&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/core/Tools/P300Classifier&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Author===&lt;br /&gt;
Cristhian Mauricio Potes&lt;br /&gt;
&lt;br /&gt;
===e-mail===&lt;br /&gt;
cmpotes@miners.utep.edu&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: May 15, 2009&lt;br /&gt;
*Tested under: Windows XP, Windows Vista&lt;br /&gt;
*Known to compile under: Visual Studio 2008&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Control Panel==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI is composed of three panes: Data, Parameters, and Details. &lt;br /&gt;
&lt;br /&gt;
===Data Pane===&lt;br /&gt;
Data Pane allows the user to&lt;br /&gt;
&lt;br /&gt;
* Load training and testing data files and an INI file &lt;br /&gt;
* Generate and apply feature weights&lt;br /&gt;
* Write a parameter file fragment (*.prm)&lt;br /&gt;
&lt;br /&gt;
[[image:dataPaneLabels.png|frame|center|Data pane]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Training Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier training. The information for the selected files will appear at the top of the button.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [2] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Testing Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier testing. The information for the selected files will appear at the top of the button. Training and testing data files must be compatible.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [3] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Ini File:&#039;&#039;&#039; Use this button to load an [http://en.wikipedia.org/wiki/INI_file INI file] with all the parameters needed for the classifier.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
&lt;br /&gt;
maxiter = 60 // to set Max Model Features&lt;br /&gt;
penter = 0.1000 // to set Penter&lt;br /&gt;
premove = 0.1500 // to set Premove&lt;br /&gt;
spatial_filter = 1 // to set Spatial Filter. Set 1 for RAW and 2 for CAR&lt;br /&gt;
decimation_frequency_Hz = 20 // to set Decimation Frequency&lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 // to set Channel Set&lt;br /&gt;
Resp_window_ms = 0 800 // to set Response Window. The response window must be in milliseconds (ms) &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [4] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Generate Feature Weights:&#039;&#039;&#039; Use this button to generate the feature weights after properly configuring all of the parameters in the  [[User_Reference:P300_classifier#Parameters|Parameters]] pane. This button will be enable only if the parameters are properly configured and there exists training data files. Once it has been generated feature weights properly, a suggested name for the parameter file fragment (*.prm) will show up at the top of the [[User_Reference:P300_classifier#Write *.prm File|Write *.prm File]] button.   &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Apply Feature Weights:&#039;&#039;&#039; Use this button to test the classification accuracy of the feature weights currently stored in the GUI. The classification results will appear in the [[User_Reference:P300_classifier#Details Pane|Details]] pane.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [6] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Write *.prm File:&#039;&#039;&#039; Use this button to save the parameter file fragment with the name suggested at the top of this button. The *.prm file is a [http://www.bci2000.org/wiki BCI2000] parameter file fragment that can be imported into [http://www.bci2000.org/wiki BCI2000] for online testing of the feature weights.&lt;br /&gt;
&lt;br /&gt;
===Parameters Pane===&lt;br /&gt;
Parameters Pane contains all the parameters needed to generate feature weights by using the SWLDA algorithm. These parameters can be loaded using the [[User_Reference:P300_classifier#Load Ini File|Data Pane]] button. If the parameters are properly configured the [[User_Reference:P300_classifier#Data Pane|Generate Feature Weights]] button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:parametersPaneLabel.png|frame|center|Parameters pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [7] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Max Model Features:&#039;&#039;&#039; Used to specify the maximum number of features to be kept in the SWLDA algorithm. Only a single value can be entered for evaluation. The default value is 60.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [8] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Penter:&#039;&#039;&#039; Used to specify the maximum [http://en.wikipedia.org/wiki/P-value p-value] for  a variable to be entered. The default value is 0.1000. Penter must be less than Premove and 0&amp;lt;Penter&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [9] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Premove:&#039;&#039;&#039; Used to specify the maximum  [http://en.wikipedia.org/wiki/P-value p-value] for a variable to be removed. The default value is 0.1500. Premove must be greater than Penter and 0&amp;lt;Premove&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [10] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Spatial Filter:&#039;&#039;&#039; Selects the spatial filter applied to the training data. Select &#039;&#039;&#039;RAW&#039;&#039;&#039; or &#039;&#039;&#039;CAR&#039;&#039;&#039; from the drop-down menu. &#039;&#039;&#039;RAW&#039;&#039;&#039; is no spatial filter applied to the data, and &#039;&#039;&#039;CAR&#039;&#039;&#039; is a common average reference filter using all of the channels contained in the data file &#039;&#039;&#039;(not just the channels specified in the GUI channel set)&#039;&#039;&#039;. The default spatial filter is &#039;&#039;&#039;RAW&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [11] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Decimation Frequency:&#039;&#039;&#039; Used to specify the temporal decimation frequency of the data in Hz. Only a single value can be entered for evaluation. Set this parameter to the [[User_Reference:P300_classifier#Details Pane|Sampling Rate]] value for no decimation. The lower the Decimation Frequency, the less original data retained for processing. Typically, 20 is a good choice for this parameter.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [12] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Channel Set:&#039;&#039;&#039; Used to specify the channel set that will be used to create feature weights. The specified channels must be a subset of the channels contained in the training data file. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [13] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Response Window:&#039;&#039;&#039; Used to specify the &#039;&#039;Begin&#039;&#039; and &#039;&#039;End&#039;&#039; time points in milliseconds (ms) following the stimuli collected for the analysis. These two values are automatically converted into samples according to the sampling rate of the data (rounded). Only a single data window can be entered and will be evaluated. &#039;&#039;Begin&#039;&#039; must be less than &#039;&#039;End&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Details Pane===&lt;br /&gt;
Details Pane displays information about the [http://www.bci2000.org/wiki BCI2000] training data files and the classification results. &lt;br /&gt;
&lt;br /&gt;
[[image:detailsPaneLabel.png|frame|center|Details pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [14] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Sampling Rate:&#039;&#039;&#039; Displays the sampling rate in (Hz) contained in the training data files.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [15] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Number of Channels:&#039;&#039;&#039; Displays the total number of channels contained in the training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [16] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Classifier:&#039;&#039;&#039; Displays the classifier applied to generate the feature weights. The P300Classifier GUI only uses the SWLDA classifier algorithm.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [17] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Application:&#039;&#039;&#039; Displays the type of application used for the investigator. The application can be either &#039;&#039;P3SpellerTask&#039;&#039; or &#039;&#039;StimulusPresentationTask&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [18] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Interpret Mode:&#039;&#039;&#039; Displays the interpret mode used for the investigator. The mode can be either &#039;&#039;Copy Mode&#039;&#039; or &#039;&#039;Online Free Mode&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [19] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Duration:&#039;&#039;&#039; Displays the duration in seconds (s) of the whole training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; The text editor displays the classification results for the training and testing data files.&lt;br /&gt;
&lt;br /&gt;
===Batch Scripting===&lt;br /&gt;
The P300 Classifier Tool can be scripted in a batch file using the example format below (note this needs to be entered as a single line):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
C:\BCI2000.x64\tools\P300Classifier\P300Classifier.exe &lt;br /&gt;
-TrainingDataFiles C:\BCI2000.x64\data\ClassifierTest001\ClassifierTestS001R01.dat &lt;br /&gt;
-inicfg C:\BCI2000.x64\tools\P300Classifier\parameters.ini &lt;br /&gt;
-ClassifierOutputFile C:\BCI2000.x64\data\ClassifierTest001\P3Classifier_ChS1_RAW_SW.prm&lt;br /&gt;
-PscoreDumpFileTraining C:\BCI2000.x64\data\ClassifierTest001\PscoreTraining.txt&lt;br /&gt;
-PscoreDumpFileTesting C:\BCI2000.x64\data\ClassifierTest001\PscoreTesting.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Methodology==&lt;br /&gt;
&lt;br /&gt;
===Methodology Concept===&lt;br /&gt;
The idea behind the P300Classifier is to train and test a linear classifier (SWLDA) for detection of evoked potentials collected from brain signals. This is achieved in the following steps:&lt;br /&gt;
* Training Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Generate feature weights for a linear model using SWLDA&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application &lt;br /&gt;
&lt;br /&gt;
* Testing Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application&lt;br /&gt;
&lt;br /&gt;
===Methodology Step By Step===&lt;br /&gt;
&lt;br /&gt;
====Step 1: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Load BCI2000 Data Files]====&lt;br /&gt;
&lt;br /&gt;
The first step to start using the P300Classifier GUI is to load training and testing BCI2000 data files specified by the investigator. The BCI2000 data files are checked for compatibility and consistency. If all training data files are valid then the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled and each file is colored with light green. Otherwise, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled, and each file is colored either with yellow or pink. See the following color coded scheme and example.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:yellow&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files mismatch&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files may be valid but there is a mismatch with another file.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are invalid.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial0.png|frame|center|Training data file is not valid; the file is highlighted in pink. Testing data file is valid; the file is highlighted in light green. The &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until the training data file is valid.]]&lt;br /&gt;
&lt;br /&gt;
====Step 2: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Get P300 Responses] ====&lt;br /&gt;
&lt;br /&gt;
Signals, states, and parameters are extracted from BCI2000 training and testing data files. However, the signals that are only extracted for analysis are those defined by the user in the [[User_Reference:P300_classifier#Parameters Pane|&#039;&#039;&#039;Response Window&#039;&#039;&#039;]]. Only these signals are filtered and downsampled. The filter employed is a [http://en.wikipedia.org/wiki/Moving_average Moving Average (MA) Filter] implemented as a &#039;&#039;Direct form II Transposed&#039;&#039;. The MA filter belongs to the FIR filter and works as a low pass filter removing high frequency components of the signal.&lt;br /&gt;
&lt;br /&gt;
====Step 3: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Generate Feature Weights for a Linear Model using Stepwise Linear Discriminant Analysis (SWLDA)]====&lt;br /&gt;
&lt;br /&gt;
The idea behind SWLDA is to obtain a final linear model that approximately fits a set of data (stimulus) by using multiple linear regressions and iterative statistical procedures, thus selecting only significant variables that are included in the final regression.&lt;br /&gt;
 &lt;br /&gt;
The SWLDA algorithm can be summarized in the following steps:&lt;br /&gt;
&lt;br /&gt;
* STEP 1: Compute the autocorrelation matrix to select the variable most highly correlated to the observations. The selected variable is included in the linear model.&lt;br /&gt;
&lt;br /&gt;
* STEP 2: Fit an initial model by performing a linear regression equation with the included variable using least squares.&lt;br /&gt;
&lt;br /&gt;
* STEP 3: Check if the variable added is that one which makes greatest improvements in &amp;quot;goodness of fit.&amp;quot; That is, remove the added variable if its variance contribution in the regression is insignificant at a specified F level (F-test). If the added variable is removed go to Step 5, else go to Step 4.&lt;br /&gt;
&lt;br /&gt;
* STEP 4: Add the variable to the model if there is a significant variance reduction at a specified F-level.&lt;br /&gt;
&lt;br /&gt;
* STEP 5: Remove the added variable from the correlation matrix. Go to step 1.&lt;br /&gt;
&lt;br /&gt;
The method terminates when no single step improves the model.&lt;br /&gt;
&lt;br /&gt;
====Step 4: Apply Linear Classifier to Get Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are computed based on the variables included in the final linear model and the corresponding feature weights.&lt;br /&gt;
&lt;br /&gt;
====Step 5: Interpret Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are interpreted according to the given application, which can be either P300SpellerTask or StimulusPresentationTask.&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
&lt;br /&gt;
===Training the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Parameters&#039;&#039; pane contains all of the parameters for generating feature weights from BCI2000 data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps to generate feature weights: &lt;br /&gt;
&lt;br /&gt;
* Press the &#039;&#039;Load Training Data Files&#039;&#039; &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; button in the &#039;&#039;Data&#039;&#039; pane.&lt;br /&gt;
&lt;br /&gt;
* From the dialog box, select the desire BCI2000 *.dat file(s) for training. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each training data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. Files can only be selected from a single directory; the desired training data files should be organized into the same directory prior to using the P300Classifier GUI.&lt;br /&gt;
&lt;br /&gt;
* Once the &#039;&#039;Parameters&#039;&#039; pane is correctly set as desired, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enable. Press this button to perform the analysis and generate feature weights. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the SWLDA. The classification results will appear in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; of &#039;&#039;Details&#039;&#039; pane. Every time it is pressed the &#039;&#039;Generate Feature Weights&#039;&#039; button, and the analysis is successfully completed, there is generated a new feature weights set. &lt;br /&gt;
&lt;br /&gt;
* The training procedure can be repeated multiple times generating a new feature weights set that depends on the configured parameters.&lt;br /&gt;
&lt;br /&gt;
* After training is completed and feature weights are generated, it is recommended to test (cross validate) the feature weights on independent data (testing data files) before saving the parameter file fragment (*.prm). Additionally, there is a suggested parameter file fragment name displayed on the top of &#039;&#039;Write *.prm File&#039;&#039; button, which can be used to save the *.prm file either with the suggested name or the name specified by the investigator.&lt;br /&gt;
&lt;br /&gt;
===Testing the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Data&#039;&#039; pane contains the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button for testing the generated feature weights to one or more BCI2000 testing data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps for applying feature weights to testing data files:&lt;br /&gt;
&lt;br /&gt;
* Once it has been successfully generated feature weights and there exists testing data files, the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled. If there are no testing data files loaded, the investigator must press this button to load testing data file(s). One or more BCI2000 *.dat files can be selected from the same directory as a single &#039;test file group&#039; each time the button is pressed. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each testing data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. All testing files selected should have the same sampling rate and electrode montage as the training data files selected to generate the current feature weights set. &lt;br /&gt;
&lt;br /&gt;
* After all the testing data files are correctly selected, press the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button to perform the analysis. Results of the classification are displayed in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt;  of &#039;&#039;Details&#039;&#039; pane. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the classification.&lt;br /&gt;
&lt;br /&gt;
* After evaluating the classification results, the *.prm file from the current session can be saved by pressing the &#039;&#039;Write *.prm File&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
In the next example, it is desired to compute feature weights from the following BCI2000 training data file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button the file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039; is uploaded as shown in the next figure. Notice that the training data file is set up correctly since it is colored in light green. Remember that the classifier algorithm will be trained by using this training data file. &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial1.png|frame|center|By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button it is uploaded the desired BCI2000 training data file. The classifier algorithm is trained by using this training data file.]]&lt;br /&gt;
&lt;br /&gt;
The parameters shown in &#039;&#039;Parameters Pane&#039;&#039; are set by default. For illustration purposes, however, it is desired to load initial parameters from an INI file called parameters.ini by pressing the &#039;&#039;Load Ini File&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
maxiter = 60 &lt;br /&gt;
penter = 0.1000 &lt;br /&gt;
premove = 0.1500 &lt;br /&gt;
spatial_filter = 2 &lt;br /&gt;
decimation_frequency_Hz = 20 &lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 &lt;br /&gt;
Resp_window_ms = 0 800 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial2.png|frame|center|By pressing the &#039;&#039;Load Ini File&#039;&#039; button it is uploaded the desired initial parameters that the classifier algorithm will use to generate the corresponding feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Once the initial parameters are loaded and properly set up, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled, and each one of the parameter fields is colored in light green as shown in the next figure.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial3.png|frame|center|All of the parameter fields are properly set up. Thus, each parameter field is colored in light green.]]&lt;br /&gt;
&lt;br /&gt;
The investigator can change any of the parameters fields at any time. However, if that change is not properly set up (i.e., the given parameter is invalid), the corresponding parameter field will be colored in pink.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is invalid.&lt;br /&gt;
&lt;br /&gt;
In the next figure, the investigator changes the &#039;&#039;Channel Set&#039;&#039; field introducing one more channel, channel 9. Since this channel is not a subset of the channels contained in the training data file, the corresponding field is colored in pink, and a tool tip is popped up displaying the error message. Additionally, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until that specific field is properly configured.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial4.png|frame|center|The &#039;&#039;Channel Set&#039;&#039; field is modified by introducing one more channel, channel 9. This field is colored in pink since channel 9 is not a subset of the channels contained in the training data file.]]&lt;br /&gt;
&lt;br /&gt;
Once the parameters are properly configured, the investigator is ready to generate feature weights by pressing the &#039;&#039;Generate Feature Weights&#039;&#039; button. Details of the training data file and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.   &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial5.png|frame|center|Details of the training data file and progress of the classification. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
Once the classifier has been trained with the BCI2000 training data file, and it has generated the corresponding feature weights, it is desired to test these feature weights with the following BCI2000 testing data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button this file is uploaded as shown in the next figure. Notice that the testing data file is set up correctly since it is colored in light green. If the testing data file is valid then the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial6.png|frame|center|By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button it is uploaded the desired BCI2000 testing data file. The file is colored in light green if valid.]]&lt;br /&gt;
&lt;br /&gt;
The investigator is ready to apply feature weights by pressing the &#039;&#039;Apply Feature Weights&#039;&#039; button. Details of the training data file (no testing data file) and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial7.png|frame|center|Details of the training data file and progress of the classification. Testing feature weights generated from the training data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
If satisfied with the classification obtained from the current feature weights, the investigator can write a parameter file fragment *.prm with the name suggested in the &#039;&#039;Write *.prm File&#039;&#039; field by pressing the &#039;&#039;Write *.prm File&#039;&#039; button. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights. In the following image, it is written a *.prm file called &#039;&#039;&#039;MUDChS1_RAW_SW.prm&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial8.png|frame|center|Write a parameter file fragment *.prm. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Every time the investigator changes any of the parameters in the &#039;&#039;Parameters Pane&#039;&#039;, the &#039;&#039;Apply Feature Weights&#039;&#039; button is disabled. To enable it, the investigator must generate feature weights again.&lt;br /&gt;
&lt;br /&gt;
==Classifier Weight Normalization==&lt;br /&gt;
When applying classifier weights to obtain a classification score, and select a target with the largest score, this procedure is invariant to multiplication of all classifier weights with a constant factor. We are, thus, free to normalize classifier weights with a factor that allows us to interpret classification scores in a certain way. &lt;br /&gt;
&lt;br /&gt;
As described [[Programming_Reference:StimulusTask_Class#Accumulation_and_Combination_of_Evidence|here]], a normalization that makes within-class variance identical to unity when the classifier is applied to the training data set will result in classification scores to represent an estimate of the log evidence in favor of the respective target. This allows the AccumulateEvidence and MinimumEvidence parameters to work.&lt;br /&gt;
&lt;br /&gt;
==Future work==&lt;br /&gt;
&lt;br /&gt;
* Present classification results as topographies and graphs as the Matlab-based P300 GUI (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Let the P300Classifier GUI work with frequency-based features (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Speed up the P300Classifier GUI by using multithreading when solving the Least Squares (QR factorization)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* N. R. Draper, H. Smith. &#039;&#039;Applied Regression Analysis&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1966.&lt;br /&gt;
&lt;br /&gt;
* P. M. Embree, B. Kimble. &#039;&#039;C Language Algorithms for Digital Signal Processing&#039;&#039;. Prentice Hall, Englewood Cliffs, New Jersey, 1991.&lt;br /&gt;
&lt;br /&gt;
* A. Ralston, H. S. Wilf. &#039;&#039;Mathematical Methods for Digital Computers&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1962.&lt;br /&gt;
&lt;br /&gt;
* W. H. Press, S. A. Teukolsky, W. T. Vetterling, B. P. Flannery. &#039;&#039;Numerical Recipes in C&#039;&#039;. Cambridge University Press, New York, 1988.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12487</id>
		<title>User Reference:P300Classifier</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=User_Reference:P300Classifier&amp;diff=12487"/>
		<updated>2026-06-23T12:38:44Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Future work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI (Graphical User Interface) is a tool that allows to train and test a linear classifier for detection of evoked related potentials collected with [http://www.bci2000.org/wiki BCI2000]. This GUI is designed for the analysis of BCI2000 data collected using the P3Speller or Stimuli Presentation paradigms. The program generates feature weights by using a linear classifier algorithm called Stepwise Linear Discriminant Analysis (SWLDA). The specifics of the feature space and training routine can be manipulated using the GUI. The feature weights derived from the GUI can be saved and imported into BCI2000 as a parameter file fragment (*.prm) for online testing. Unlike the Matlab-based P300 GUI, the P300 Classifier GUI has the main advantage of being completely Matlab independent. All its core functionality is written in C++ accompanied with a friendly graphical user interface written in [http://en.wikipedia.org/wiki/Qt_(toolkit) Qt]. Additionally, this new tool is completely scriptable; that is the investigator can write all the commands needed to train and test the linear classifier in a [http://en.wikipedia.org/wiki/Batch_file batch] file without using the GUI. An example of this batch script can be found in the [https://www.bci2000.org/mediawiki/index.php/User_Reference:P300Classifier#Batch_Scripting Batch Scripting] section. The P300 Classifier GUI provides the following functionality to investigators: &lt;br /&gt;
&lt;br /&gt;
; Classifier Training: Generates feature weights from BCI2000 P3Speller or Stimuli Presentation data files &lt;br /&gt;
&lt;br /&gt;
; Classifier Testing: Applies current feature weights to BCI2000 P3Speller or Stimuli Presentation data files and compares the results&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/core/Tools/P300Classifier&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Author===&lt;br /&gt;
Cristhian Mauricio Potes&lt;br /&gt;
&lt;br /&gt;
===e-mail===&lt;br /&gt;
cmpotes@miners.utep.edu&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: May 15, 2009&lt;br /&gt;
*Tested under: Windows XP, Windows Vista&lt;br /&gt;
*Known to compile under: Visual Studio 2008&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Control Panel==&lt;br /&gt;
&lt;br /&gt;
The P300 Classifier GUI is composed of three panes: Data, Parameters, and Details. &lt;br /&gt;
&lt;br /&gt;
===Data Pane===&lt;br /&gt;
Data Pane allows the user to&lt;br /&gt;
&lt;br /&gt;
* Load training and testing data files and an INI file &lt;br /&gt;
* Generate and apply feature weights&lt;br /&gt;
* Write a parameter file fragment (*.prm)&lt;br /&gt;
&lt;br /&gt;
[[image:dataPaneLabels.png|frame|center|Data pane]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Training Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier training. The information for the selected files will appear at the top of the button.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [2] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Testing Data Files:&#039;&#039;&#039; Use this button to load [http://www.bci2000.org/wiki BCI2000] data files for classifier testing. The information for the selected files will appear at the top of the button. Training and testing data files must be compatible.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [3] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Load Ini File:&#039;&#039;&#039; Use this button to load an [http://en.wikipedia.org/wiki/INI_file INI file] with all the parameters needed for the classifier.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
&lt;br /&gt;
maxiter = 60 // to set Max Model Features&lt;br /&gt;
penter = 0.1000 // to set Penter&lt;br /&gt;
premove = 0.1500 // to set Premove&lt;br /&gt;
spatial_filter = 1 // to set Spatial Filter. Set 1 for RAW and 2 for CAR&lt;br /&gt;
decimation_frequency_Hz = 20 // to set Decimation Frequency&lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 // to set Channel Set&lt;br /&gt;
Resp_window_ms = 0 800 // to set Response Window. The response window must be in milliseconds (ms) &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [4] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Generate Feature Weights:&#039;&#039;&#039; Use this button to generate the feature weights after properly configuring all of the parameters in the  [[User_Reference:P300_classifier#Parameters|Parameters]] pane. This button will be enable only if the parameters are properly configured and there exists training data files. Once it has been generated feature weights properly, a suggested name for the parameter file fragment (*.prm) will show up at the top of the [[User_Reference:P300_classifier#Write *.prm File|Write *.prm File]] button.   &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Apply Feature Weights:&#039;&#039;&#039; Use this button to test the classification accuracy of the feature weights currently stored in the GUI. The classification results will appear in the [[User_Reference:P300_classifier#Details Pane|Details]] pane.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [6] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Write *.prm File:&#039;&#039;&#039; Use this button to save the parameter file fragment with the name suggested at the top of this button. The *.prm file is a [http://www.bci2000.org/wiki BCI2000] parameter file fragment that can be imported into [http://www.bci2000.org/wiki BCI2000] for online testing of the feature weights.&lt;br /&gt;
&lt;br /&gt;
===Parameters Pane===&lt;br /&gt;
Parameters Pane contains all the parameters needed to generate feature weights by using the SWLDA algorithm. These parameters can be loaded using the [[User_Reference:P300_classifier#Load Ini File|Data Pane]] button. If the parameters are properly configured the [[User_Reference:P300_classifier#Data Pane|Generate Feature Weights]] button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:parametersPaneLabel.png|frame|center|Parameters pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [7] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Max Model Features:&#039;&#039;&#039; Used to specify the maximum number of features to be kept in the SWLDA algorithm. Only a single value can be entered for evaluation. The default value is 60.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [8] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Penter:&#039;&#039;&#039; Used to specify the maximum [http://en.wikipedia.org/wiki/P-value p-value] for  a variable to be entered. The default value is 0.1000. Penter must be less than Premove and 0&amp;lt;Penter&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [9] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Premove:&#039;&#039;&#039; Used to specify the maximum  [http://en.wikipedia.org/wiki/P-value p-value] for a variable to be removed. The default value is 0.1500. Premove must be greater than Penter and 0&amp;lt;Premove&amp;lt;1. Only a single value can be entered for evaluation.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [10] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Spatial Filter:&#039;&#039;&#039; Selects the spatial filter applied to the training data. Select &#039;&#039;&#039;RAW&#039;&#039;&#039; or &#039;&#039;&#039;CAR&#039;&#039;&#039; from the drop-down menu. &#039;&#039;&#039;RAW&#039;&#039;&#039; is no spatial filter applied to the data, and &#039;&#039;&#039;CAR&#039;&#039;&#039; is a common average reference filter using all of the channels contained in the data file &#039;&#039;&#039;(not just the channels specified in the GUI channel set)&#039;&#039;&#039;. The default spatial filter is &#039;&#039;&#039;RAW&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [11] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Decimation Frequency:&#039;&#039;&#039; Used to specify the temporal decimation frequency of the data in Hz. Only a single value can be entered for evaluation. Set this parameter to the [[User_Reference:P300_classifier#Details Pane|Sampling Rate]] value for no decimation. The lower the Decimation Frequency, the less original data retained for processing. Typically, 20 is a good choice for this parameter.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [12] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Channel Set:&#039;&#039;&#039; Used to specify the channel set that will be used to create feature weights. The specified channels must be a subset of the channels contained in the training data file. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [13] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Response Window:&#039;&#039;&#039; Used to specify the &#039;&#039;Begin&#039;&#039; and &#039;&#039;End&#039;&#039; time points in milliseconds (ms) following the stimuli collected for the analysis. These two values are automatically converted into samples according to the sampling rate of the data (rounded). Only a single data window can be entered and will be evaluated. &#039;&#039;Begin&#039;&#039; must be less than &#039;&#039;End&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Details Pane===&lt;br /&gt;
Details Pane displays information about the [http://www.bci2000.org/wiki BCI2000] training data files and the classification results. &lt;br /&gt;
&lt;br /&gt;
[[image:detailsPaneLabel.png|frame|center|Details pane]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [14] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Sampling Rate:&#039;&#039;&#039; Displays the sampling rate in (Hz) contained in the training data files.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [15] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Number of Channels:&#039;&#039;&#039; Displays the total number of channels contained in the training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [16] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Classifier:&#039;&#039;&#039; Displays the classifier applied to generate the feature weights. The P300Classifier GUI only uses the SWLDA classifier algorithm.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [17] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Application:&#039;&#039;&#039; Displays the type of application used for the investigator. The application can be either &#039;&#039;P3SpellerTask&#039;&#039; or &#039;&#039;StimulusPresentationTask&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [18] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Interpret Mode:&#039;&#039;&#039; Displays the interpret mode used for the investigator. The mode can be either &#039;&#039;Copy Mode&#039;&#039; or &#039;&#039;Online Free Mode&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [19] &amp;lt;/font&amp;gt; &#039;&#039;&#039;Duration:&#039;&#039;&#039; Displays the duration in seconds (s) of the whole training data files. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; The text editor displays the classification results for the training and testing data files.&lt;br /&gt;
&lt;br /&gt;
===Batch Scripting===&lt;br /&gt;
The P300 Classifier Tool can be scripted in a batch file using the example format below (note this needs to be entered as a single line):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
C:\BCI2000.x64\tools\P300Classifier\P300Classifier.exe &lt;br /&gt;
-TrainingDataFiles C:\BCI2000.x64\data\ClassifierTest001\ClassifierTestS001R01.dat &lt;br /&gt;
-inicfg C:\BCI2000.x64\tools\P300Classifier\parameters.ini &lt;br /&gt;
-ClassifierOutputFile C:\BCI2000.x64\data\ClassifierTest001\P3Classifier_ChS1_RAW_SW.prm&lt;br /&gt;
-PscoreDumpFileTraining C:\BCI2000.x64\data\ClassifierTest001\PscoreTraining.txt&lt;br /&gt;
-PscoreDumpFileTesting C:\BCI2000.x64\data\ClassifierTest001\PscoreTesting.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Methodology==&lt;br /&gt;
&lt;br /&gt;
===Methodology Concept===&lt;br /&gt;
The idea behind the P300Classifier is to train and test a linear classifier (SWLDA) for detection of evoked potentials collected from brain signals. This is achieved in the following steps:&lt;br /&gt;
* Training Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Generate feature weights for a linear model using SWLDA&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application &lt;br /&gt;
&lt;br /&gt;
* Testing Data Files&lt;br /&gt;
# Load BCI2000 data files&lt;br /&gt;
# Get P300 responses&lt;br /&gt;
# Apply linear classifier to get scores &lt;br /&gt;
# Interpret scores according to the given application&lt;br /&gt;
&lt;br /&gt;
===Methodology Step By Step===&lt;br /&gt;
&lt;br /&gt;
====Step 1: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Load BCI2000 Data Files]====&lt;br /&gt;
&lt;br /&gt;
The first step to start using the P300Classifier GUI is to load training and testing BCI2000 data files specified by the investigator. The BCI2000 data files are checked for compatibility and consistency. If all training data files are valid then the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled and each file is colored with light green. Otherwise, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled, and each file is colored either with yellow or pink. See the following color coded scheme and example.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:yellow&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files mismatch&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files may be valid but there is a mismatch with another file.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;files error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The files are invalid.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial0.png|frame|center|Training data file is not valid; the file is highlighted in pink. Testing data file is valid; the file is highlighted in light green. The &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until the training data file is valid.]]&lt;br /&gt;
&lt;br /&gt;
====Step 2: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Get P300 Responses] ====&lt;br /&gt;
&lt;br /&gt;
Signals, states, and parameters are extracted from BCI2000 training and testing data files. However, the signals that are only extracted for analysis are those defined by the user in the [[User_Reference:P300_classifier#Parameters Pane|&#039;&#039;&#039;Response Window&#039;&#039;&#039;]]. Only these signals are filtered and downsampled. The filter employed is a [http://en.wikipedia.org/wiki/Moving_average Moving Average (MA) Filter] implemented as a &#039;&#039;Direct form II Transposed&#039;&#039;. The MA filter belongs to the FIR filter and works as a low pass filter removing high frequency components of the signal.&lt;br /&gt;
&lt;br /&gt;
====Step 3: [http://www.bci2000.org/wiki/index.php/UserReference:P300ClassifierMethods Generate Feature Weights for a Linear Model using Stepwise Linear Discriminant Analysis (SWLDA)]====&lt;br /&gt;
&lt;br /&gt;
The idea behind SWLDA is to obtain a final linear model that approximately fits a set of data (stimulus) by using multiple linear regressions and iterative statistical procedures, thus selecting only significant variables that are included in the final regression.&lt;br /&gt;
 &lt;br /&gt;
The SWLDA algorithm can be summarized in the following steps:&lt;br /&gt;
&lt;br /&gt;
* STEP 1: Compute the autocorrelation matrix to select the variable most highly correlated to the observations. The selected variable is included in the linear model.&lt;br /&gt;
&lt;br /&gt;
* STEP 2: Fit an initial model by performing a linear regression equation with the included variable using least squares.&lt;br /&gt;
&lt;br /&gt;
* STEP 3: Check if the variable added is that one which makes greatest improvements in &amp;quot;goodness of fit.&amp;quot; That is, remove the added variable if its variance contribution in the regression is insignificant at a specified F level (F-test). If the added variable is removed go to Step 5, else go to Step 4.&lt;br /&gt;
&lt;br /&gt;
* STEP 4: Add the variable to the model if there is a significant variance reduction at a specified F-level.&lt;br /&gt;
&lt;br /&gt;
* STEP 5: Remove the added variable from the correlation matrix. Go to step 1.&lt;br /&gt;
&lt;br /&gt;
The method terminates when no single step improves the model.&lt;br /&gt;
&lt;br /&gt;
====Step 4: Apply Linear Classifier to Get Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are computed based on the variables included in the final linear model and the corresponding feature weights.&lt;br /&gt;
&lt;br /&gt;
====Step 5: Interpret Scores ====&lt;br /&gt;
&lt;br /&gt;
Scores are interpreted according to the given application, which can be either P300SpellerTask or StimulusPresentationTask.&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
&lt;br /&gt;
===Training the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Parameters&#039;&#039; pane contains all of the parameters for generating feature weights from BCI2000 data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps to generate feature weights: &lt;br /&gt;
&lt;br /&gt;
* Press the &#039;&#039;Load Training Data Files&#039;&#039; &amp;lt;font color=red&amp;gt; [1] &amp;lt;/font&amp;gt; button in the &#039;&#039;Data&#039;&#039; pane.&lt;br /&gt;
&lt;br /&gt;
* From the dialog box, select the desire BCI2000 *.dat file(s) for training. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each training data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. Files can only be selected from a single directory; the desired training data files should be organized into the same directory prior to using the P300Classifier GUI.&lt;br /&gt;
&lt;br /&gt;
* Once the &#039;&#039;Parameters&#039;&#039; pane is correctly set as desired, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enable. Press this button to perform the analysis and generate feature weights. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the SWLDA. The classification results will appear in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt; of &#039;&#039;Details&#039;&#039; pane. Every time it is pressed the &#039;&#039;Generate Feature Weights&#039;&#039; button, and the analysis is successfully completed, there is generated a new feature weights set. &lt;br /&gt;
&lt;br /&gt;
* The training procedure can be repeated multiple times generating a new feature weights set that depends on the configured parameters.&lt;br /&gt;
&lt;br /&gt;
* After training is completed and feature weights are generated, it is recommended to test (cross validate) the feature weights on independent data (testing data files) before saving the parameter file fragment (*.prm). Additionally, there is a suggested parameter file fragment name displayed on the top of &#039;&#039;Write *.prm File&#039;&#039; button, which can be used to save the *.prm file either with the suggested name or the name specified by the investigator.&lt;br /&gt;
&lt;br /&gt;
===Testing the SWLDA Classifier===&lt;br /&gt;
The &#039;&#039;Data&#039;&#039; pane contains the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button for testing the generated feature weights to one or more BCI2000 testing data files.&lt;br /&gt;
&lt;br /&gt;
The investigator must follow the next steps for applying feature weights to testing data files:&lt;br /&gt;
&lt;br /&gt;
* Once it has been successfully generated feature weights and there exists testing data files, the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled. If there are no testing data files loaded, the investigator must press this button to load testing data file(s). One or more BCI2000 *.dat files can be selected from the same directory as a single &#039;test file group&#039; each time the button is pressed. Selected files can be from different sessions of the same paradigm but must contain consistent parameters. Each testing data file is colored according to the color coded scheme explained in [[User_Reference:P300_classifier#Step 1: Load BCI2000 data files|Load BCI2000 data files]]. All testing files selected should have the same sampling rate and electrode montage as the training data files selected to generate the current feature weights set. &lt;br /&gt;
&lt;br /&gt;
* After all the testing data files are correctly selected, press the &#039;&#039;Apply Feature Weights&#039;&#039; &amp;lt;font color=red&amp;gt; [5] &amp;lt;/font&amp;gt; button to perform the analysis. Results of the classification are displayed in the text editor &amp;lt;font color=red&amp;gt; [20] &amp;lt;/font&amp;gt;  of &#039;&#039;Details&#039;&#039; pane. The &#039;&#039;Overall Progress&#039;&#039; bar displayed in &#039;&#039;Data&#039;&#039; and &#039;&#039;Details&#039;&#039; panes will indicate the progress of the classification.&lt;br /&gt;
&lt;br /&gt;
* After evaluating the classification results, the *.prm file from the current session can be saved by pressing the &#039;&#039;Write *.prm File&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
In the next example, it is desired to compute feature weights from the following BCI2000 training data file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button the file &#039;&#039;&#039;eeg3_1.dat&#039;&#039;&#039; is uploaded as shown in the next figure. Notice that the training data file is set up correctly since it is colored in light green. Remember that the classifier algorithm will be trained by using this training data file. &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial1.png|frame|center|By pressing the &#039;&#039;Load Training Data Files&#039;&#039; button it is uploaded the desired BCI2000 training data file. The classifier algorithm is trained by using this training data file.]]&lt;br /&gt;
&lt;br /&gt;
The parameters shown in &#039;&#039;Parameters Pane&#039;&#039; are set by default. For illustration purposes, however, it is desired to load initial parameters from an INI file called parameters.ini by pressing the &#039;&#039;Load Ini File&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Initialization]&lt;br /&gt;
maxiter = 60 &lt;br /&gt;
penter = 0.1000 &lt;br /&gt;
premove = 0.1500 &lt;br /&gt;
spatial_filter = 2 &lt;br /&gt;
decimation_frequency_Hz = 20 &lt;br /&gt;
channel_set = 1 2 3 4 5 6 7 8 &lt;br /&gt;
Resp_window_ms = 0 800 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial2.png|frame|center|By pressing the &#039;&#039;Load Ini File&#039;&#039; button it is uploaded the desired initial parameters that the classifier algorithm will use to generate the corresponding feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Once the initial parameters are loaded and properly set up, the &#039;&#039;Generate Feature Weights&#039;&#039; button is enabled, and each one of the parameter fields is colored in light green as shown in the next figure.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial3.png|frame|center|All of the parameter fields are properly set up. Thus, each parameter field is colored in light green.]]&lt;br /&gt;
&lt;br /&gt;
The investigator can change any of the parameters fields at any time. However, if that change is not properly set up (i.e., the given parameter is invalid), the corresponding parameter field will be colored in pink.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:lightgreen&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field ok&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is valid.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:pink&amp;quot;&amp;gt;&amp;lt;b&amp;gt;parameter field error&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; : The parameter is invalid.&lt;br /&gt;
&lt;br /&gt;
In the next figure, the investigator changes the &#039;&#039;Channel Set&#039;&#039; field introducing one more channel, channel 9. Since this channel is not a subset of the channels contained in the training data file, the corresponding field is colored in pink, and a tool tip is popped up displaying the error message. Additionally, the &#039;&#039;Generate Feature Weights&#039;&#039; button is not enabled until that specific field is properly configured.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial4.png|frame|center|The &#039;&#039;Channel Set&#039;&#039; field is modified by introducing one more channel, channel 9. This field is colored in pink since channel 9 is not a subset of the channels contained in the training data file.]]&lt;br /&gt;
&lt;br /&gt;
Once the parameters are properly configured, the investigator is ready to generate feature weights by pressing the &#039;&#039;Generate Feature Weights&#039;&#039; button. Details of the training data file and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.   &lt;br /&gt;
&lt;br /&gt;
[[image:tutorial5.png|frame|center|Details of the training data file and progress of the classification. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
Once the classifier has been trained with the BCI2000 training data file, and it has generated the corresponding feature weights, it is desired to test these feature weights with the following BCI2000 testing data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button this file is uploaded as shown in the next figure. Notice that the testing data file is set up correctly since it is colored in light green. If the testing data file is valid then the &#039;&#039;Apply Feature Weights&#039;&#039; button is enabled.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial6.png|frame|center|By pressing the &#039;&#039;Load Testing Data Files&#039;&#039; button it is uploaded the desired BCI2000 testing data file. The file is colored in light green if valid.]]&lt;br /&gt;
&lt;br /&gt;
The investigator is ready to apply feature weights by pressing the &#039;&#039;Apply Feature Weights&#039;&#039; button. Details of the training data file (no testing data file) and progress of the classification are displayed in the &#039;&#039;Details Pane&#039;&#039; as shown below.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial7.png|frame|center|Details of the training data file and progress of the classification. Testing feature weights generated from the training data file &#039;&#039;&#039;eeg3_2.dat&#039;&#039;&#039;. There is an overall progress bar in both the &#039;&#039;Data Pane&#039;&#039; and &#039;&#039;Details Pane&#039;&#039;.]]&lt;br /&gt;
&lt;br /&gt;
If satisfied with the classification obtained from the current feature weights, the investigator can write a parameter file fragment *.prm with the name suggested in the &#039;&#039;Write *.prm File&#039;&#039; field by pressing the &#039;&#039;Write *.prm File&#039;&#039; button. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights. In the following image, it is written a *.prm file called &#039;&#039;&#039;MUDChS1_RAW_SW.prm&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[image:tutorial8.png|frame|center|Write a parameter file fragment *.prm. The *.prm file is a BCI2000 parameter file fragment that can be imported into BCI2000 for online testing of the feature weights.]]&lt;br /&gt;
&lt;br /&gt;
Every time the investigator changes any of the parameters in the &#039;&#039;Parameters Pane&#039;&#039;, the &#039;&#039;Apply Feature Weights&#039;&#039; button is disabled. To enable it, the investigator must generate feature weights again.&lt;br /&gt;
&lt;br /&gt;
==Classifier Weight Normalization==&lt;br /&gt;
When applying classifier weights to obtain a classification score, and select a target with the largest score, this procedure is invariant to multiplication of all classifier weights with a constant factor. We are, thus, free to normalize classifier weights with a factor that allows us to interpret classification scores in a certain way. &lt;br /&gt;
As described [[Programming_Reference:StimulusTask_Class#Accumulation_and_Combination_of_Evidence|here]], a normalization that makes within-class variance identical to unity when the classifier is applied to the training data set will result in classification scores to represent an estimate of the log evidence in favor of the respective target. This allows the AccumulateEvidence and MinimumEvidence parameters to work.&lt;br /&gt;
&lt;br /&gt;
==Future work==&lt;br /&gt;
&lt;br /&gt;
* Present classification results as topographies and graphs as the Matlab-based P300 GUI (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Let the P300Classifier GUI work with frequency-based features (has been done in [[User_Reference:BCI2000Analysis|BCI2000Analysis]])&lt;br /&gt;
&lt;br /&gt;
* Speed up the P300Classifier GUI by using multithreading when solving the Least Squares (QR factorization)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* N. R. Draper, H. Smith. &#039;&#039;Applied Regression Analysis&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1966.&lt;br /&gt;
&lt;br /&gt;
* P. M. Embree, B. Kimble. &#039;&#039;C Language Algorithms for Digital Signal Processing&#039;&#039;. Prentice Hall, Englewood Cliffs, New Jersey, 1991.&lt;br /&gt;
&lt;br /&gt;
* A. Ralston, H. S. Wilf. &#039;&#039;Mathematical Methods for Digital Computers&#039;&#039;. John Wiley &amp;amp; Sons, Inc, New York, 1962.&lt;br /&gt;
&lt;br /&gt;
* W. H. Press, S. A. Teukolsky, W. T. Vetterling, B. P. Flannery. &#039;&#039;Numerical Recipes in C&#039;&#039;. Cambridge University Press, New York, 1988.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:ADCs&amp;diff=12486</id>
		<title>Contributions:ADCs</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:ADCs&amp;diff=12486"/>
		<updated>2026-06-22T14:04:44Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following data acquisition filters are available in the [[Contributions:Contents|Contributions]] section of BCI2000:&lt;br /&gt;
&lt;br /&gt;
*[[Contributions:AmpServerProADC]]: Interface to the EGI AmpServerPro.&lt;br /&gt;
*[[Contributions:BioRadioADC]]: Interface to the BioRadio amplifer.&lt;br /&gt;
*[[Contributions:Biosemi2ADC]]: Interface to the Biosemi amplifier.&lt;br /&gt;
*[[Contributions:Blackrock]]: Interface Blackrock devices through CereLink.&lt;br /&gt;
*[[Contributions:BlackrockGemini]]: Interface Blackrock Gemini devices through CereLink.&lt;br /&gt;
*[[Contributions:BrainFlow]]: Interface various devices (e.g. OpenBCI systems) through the BrainFlow library.&lt;br /&gt;
*[[Contributions:B-Alert]]: Interface to B-Alert brain monitoring systems.&lt;br /&gt;
*[[Contributions:DAS_ADC]]: Interface to MeasurementComputing AD cards.&lt;br /&gt;
*[[Contributions:IOTech]]: Interface to MeasurementComputing IOTech AD cards.&lt;br /&gt;
*[[Contributions:DTADC]]: Interface to Data Translation boards.&lt;br /&gt;
*[[Contributions:eegoRTADC]]: Interface to the eego product family and SDK.&lt;br /&gt;
*[[Contributions:Emotiv]]: Interface to the Emotiv EPOC.&lt;br /&gt;
*[[Contributions:FieldTripBufferSource]]: Interface to the FieldTrip buffer.&lt;br /&gt;
*[[Contributions:FilePlayback]]: A source module that replays sessions from recorded data files.&lt;br /&gt;
*[[Contributions:MicroLeadsADC]]: Interface to the Micro-Leads Implant system.&lt;br /&gt;
*[[Contributions:MicromedADC]]: Interface to the Micromed EEG system.&lt;br /&gt;
*[[Contributions:ModularEEG]]: Interface to the ModularEEG system.&lt;br /&gt;
*[[Contributions:NeuroOmegaADC]]: Interface to the AlphaOmega NeuroOmega.&lt;br /&gt;
&amp;lt;!--*[[Contributions:NIADC]]: Interface to National Instruments boards.--&amp;gt;&lt;br /&gt;
*[[Contributions:NIDAQ-MX]]: Interface to National Instruments boards using the MX driver.&lt;br /&gt;
*[[Contributions:NIDAQLogger]]: Interface to multiple National Instruments DAQ boards using MX driver (INPUT ONLY).&lt;br /&gt;
*[[Contributions:NIDAQFilter]]: Interface to multiple National Instruments DAQ boards using MX driver (OUTPUT ONLY).&lt;br /&gt;
*[[Contributions:NeuroscanADC]]: Neuroscan Acquire socket protocol client.&lt;br /&gt;
*[[Contributions:NeuroscanAccessSDK]]: Interface to Neuroscan Direct Access SDK.&lt;br /&gt;
*[[Contributions:NeuroSky]]: Interface to Neurosky MindSet.&lt;br /&gt;
*[[Contributions:NicoletOne]]: Interface to NicoletOne nEEG series amplifiers.&lt;br /&gt;
*[[Contributions:ctfneurod]]: CTF RealTime to Neuroscan Acquire relay.&lt;br /&gt;
*[[Contributions:RDAClientADC]]: Brain Vision RDA socket protocol client.&lt;br /&gt;
*[[Contributions:TDTADC]]: Interface to Tucker-Davis Pentusa systems.&lt;br /&gt;
*[[Contributions:TMSiADC]]: Interface to TMSi Refa and Porti systems.&lt;br /&gt;
*[[Contributions:vAmpADC]]: Interface to Brain Products V-amp systems.&lt;br /&gt;
*[[Contributions:EnobioADC]]: Interface to Enobio sensor.&lt;br /&gt;
*[[Contributions:DSISerial]]: Interface to Dry Sensor Interface (DSI) EEG systems by Wearable Sensing.&lt;br /&gt;
*[[Contributions:MicRecorderFilter]]: Interface to the system soundcard, logging audio input.&lt;br /&gt;
*[[Contributions:actiCHamp]]: Interface to the Brain Products actiCHamp system.&lt;br /&gt;
*[[Contributions:actiCHampPlus]]: Interface to the Brain Products actiCHamp Plus system.&lt;br /&gt;
*[[Contributions:LiveAmpADC]]: Interface to the Brain Products LiveAmp system.&lt;br /&gt;
*[[Contributions:LSLSource]]: Interface to the Brain Products Hardware system.&lt;br /&gt;
*[[Contributions:OpenBCISource]]: Interface to the OpenBCI system.&lt;br /&gt;
*[[Contributions:OpenBCI_Module]]: Interface to the OpenBCI system.&lt;br /&gt;
*[[Contributions:NeuroSpark]]: Interface to NeuroSpark.&lt;br /&gt;
*[[Contributions:NeusenW4]]: Interface to Neuracle NeusenW (API V4).&lt;br /&gt;
*[[Contributions:LabJackADC]]: Interface to LabJack devices.&lt;br /&gt;
*[[Contributions:RippleADC]]: Interface to Ripple devices.&lt;br /&gt;
&amp;lt;!--*[[Contributions:RipplePyADC]]: Python-based interface to Ripple devices.--&amp;gt;&lt;br /&gt;
*[[Contributions:SerialWidgetADC]]: Interface to programmable Arduino-like devices.&lt;br /&gt;
*[[Contributions:FlexEEG]]: Interface (via NC_flexXADC filter) to the FlexEEG system by NeuroCONCISE Ltd.&lt;br /&gt;
*[[Contributions:PicoscopeADC]]: Acquires data from PicoScope 5000A series oscilloscopes.&lt;br /&gt;
*[[Contributions:BioPacADC]]: Interface to the BioPac MP160 amplifier.&lt;br /&gt;
*[[Contributions:DelsysTrignoAvanti]]: Acquire EMG, IMU and other sensors belonging to the Trigno Wireless class from Delsys Systems.&lt;br /&gt;
&lt;br /&gt;
==Contributed ADCs from the private directory==&lt;br /&gt;
Unlike contributions from the &amp;lt;tt&amp;gt;src/contrib&amp;lt;/tt&amp;gt; directory, contributions to the &amp;lt;tt&amp;gt;src/private&amp;lt;/tt&amp;gt; directory&lt;br /&gt;
are not available to the general public but require to sign a non-disclosure agreement before use.&lt;br /&gt;
Please contact brunner[at]neurotechcenter.org for more information.&lt;br /&gt;
&lt;br /&gt;
*[[Contributions:CortecADC]]: Interface to the Cortec Brain Interchange.&lt;br /&gt;
*[[Contributions:NatusADC]]: Interface to the Natus clinical system.&lt;br /&gt;
*[[Contributions:NeuralynxADC]]: Interface to Neuralynx systems.&lt;br /&gt;
*[[Contributions:gNautilusNEEDAccess]]: Interface to the gNautilus via g.NEEDAccess.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:Filters]], [[Contributions:How to use a Contributed Source Module]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contents]][[Category:Data Acquisition]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:ADCs&amp;diff=12485</id>
		<title>Contributions:ADCs</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:ADCs&amp;diff=12485"/>
		<updated>2026-06-22T14:03:47Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following data acquisition filters are available in the [[Contributions:Contents|Contributions]] section of BCI2000:&lt;br /&gt;
&lt;br /&gt;
*[[Contributions:AmpServerProADC]]: Interface to the EGI AmpServerPro.&lt;br /&gt;
*[[Contributions:BioRadioADC]]: Interface to the BioRadio amplifer.&lt;br /&gt;
*[[Contributions:Biosemi2ADC]]: Interface to the Biosemi amplifier.&lt;br /&gt;
*[[Contributions:Blackrock]]: Interface Blackrock devices through CereLink.&lt;br /&gt;
*[[Contributions:BlackrockGemini]]: Interface Blackrock Gemini devices through CereLink.&lt;br /&gt;
*[[Contributions:BrainFlow]]: Interface various devices (e.g. OpenBCI systems) through the BrainFlow library.&lt;br /&gt;
*[[Contributions:B-Alert]]: Interface to B-Alert brain monitoring systems.&lt;br /&gt;
*[[Contributions:DAS_ADC]]: Interface to MeasurementComputing AD cards.&lt;br /&gt;
*[[Contributions:IOTech]]: Interface to MeasurementComputing IOTech AD cards.&lt;br /&gt;
*[[Contributions:DTADC]]: Interface to Data Translation boards.&lt;br /&gt;
*[[Contributions:eegoRTADC]]: Interface to the eego product family and SDK.&lt;br /&gt;
*[[Contributions:Emotiv]]: Interface to the Emotiv EPOC.&lt;br /&gt;
*[[Contributions:FieldTripBufferSource]]: Interface to the FieldTrip buffer.&lt;br /&gt;
*[[Contributions:FilePlayback]]: A source module that replays sessions from recorded data files.&lt;br /&gt;
*[[Contributions:MicroLeadsADC]]: Interface to the Micro-Leads Implant system.&lt;br /&gt;
*[[Contributions:MicromedADC]]: Interface to the Micromed EEG system.&lt;br /&gt;
*[[Contributions:ModularEEG]]: Interface to the ModularEEG system.&lt;br /&gt;
*[[Contributions:NeuroOmegaADC]]: Interface to the AlphaOmega NeuroOmega.&lt;br /&gt;
&amp;lt;!--*[[Contributions:NIADC]]: Interface to National Instruments boards.--&amp;gt;&lt;br /&gt;
*[[Contributions:NIDAQ-MX]]: Interface to National Instruments boards using the MX driver.&lt;br /&gt;
*[[Contributions:NIDAQLogger]]: Interface to multiple National Instruments DAQ boards using MX driver (INPUT ONLY).&lt;br /&gt;
*[[Contributions:NIDAQFilter]]: Interface to multiple National Instruments DAQ boards using MX driver (OUTPUT ONLY).&lt;br /&gt;
*[[Contributions:NeuroscanADC]]: Neuroscan Acquire socket protocol client.&lt;br /&gt;
*[[Contributions:NeuroscanAccessSDK]]: Interface to Neuroscan Direct Access SDK.&lt;br /&gt;
*[[Contributions:NeuroSky]]: Interface to Neurosky MindSet.&lt;br /&gt;
*[[Contributions:NicoletOne]]: Interface to NicoletOne nEEG series amplifiers.&lt;br /&gt;
*[[Contributions:ctfneurod]]: CTF RealTime to Neuroscan Acquire relay.&lt;br /&gt;
*[[Contributions:RDAClientADC]]: Brain Vision RDA socket protocol client.&lt;br /&gt;
*[[Contributions:TDTADC]]: Interface to Tucker-Davis Pentusa systems.&lt;br /&gt;
*[[Contributions:TMSiADC]]: Interface to TMSi Refa and Porti systems.&lt;br /&gt;
*[[Contributions:vAmpADC]]: Interface to Brain Products V-amp systems.&lt;br /&gt;
*[[Contributions:EnobioADC]]: Interface to Enobio sensor.&lt;br /&gt;
*[[Contributions:DSISerial]]: Interface to Dry Sensor Interface (DSI) EEG systems by Wearable Sensing.&lt;br /&gt;
*[[Contributions:MicRecorderFilter]]: Interface to the system soundcard, logging audio input.&lt;br /&gt;
*[[Contributions:actiCHamp]]: Interface to the Brain Products actiCHamp system.&lt;br /&gt;
*[[Contributions:actiCHampPlus]]: Interface to the Brain Products actiCHamp Plus system.&lt;br /&gt;
*[[Contributions:LiveAmpADC]]: Interface to the Brain Products LiveAmp system.&lt;br /&gt;
*[[Contributions:LSLSource]]: Interface to the Brain Products Hardware system.&lt;br /&gt;
*[[Contributions:OpenBCISource]]: Interface to the OpenBCI system.&lt;br /&gt;
*[[Contributions:OpenBCI_Module]]: Interface to the OpenBCI system.&lt;br /&gt;
*[[Contributions:NeuroSpark]]: Interface to NeuroSpark.&lt;br /&gt;
*[[Contributions:NeusenW4]]: Interface to NeusenW (API V4).&lt;br /&gt;
*[[Contributions:LabJackADC]]: Interface to LabJack devices.&lt;br /&gt;
*[[Contributions:RippleADC]]: Interface to Ripple devices.&lt;br /&gt;
&amp;lt;!--*[[Contributions:RipplePyADC]]: Python-based interface to Ripple devices.--&amp;gt;&lt;br /&gt;
*[[Contributions:SerialWidgetADC]]: Interface to programmable Arduino-like devices.&lt;br /&gt;
*[[Contributions:FlexEEG]]: Interface (via NC_flexXADC filter) to the FlexEEG system by NeuroCONCISE Ltd.&lt;br /&gt;
*[[Contributions:PicoscopeADC]]: Acquires data from PicoScope 5000A series oscilloscopes.&lt;br /&gt;
*[[Contributions:BioPacADC]]: Interface to the BioPac MP160 amplifier.&lt;br /&gt;
*[[Contributions:DelsysTrignoAvanti]]: Acquire EMG, IMU and other sensors belonging to the Trigno Wireless class from Delsys Systems.&lt;br /&gt;
&lt;br /&gt;
==Contributed ADCs from the private directory==&lt;br /&gt;
Unlike contributions from the &amp;lt;tt&amp;gt;src/contrib&amp;lt;/tt&amp;gt; directory, contributions to the &amp;lt;tt&amp;gt;src/private&amp;lt;/tt&amp;gt; directory&lt;br /&gt;
are not available to the general public but require to sign a non-disclosure agreement before use.&lt;br /&gt;
Please contact brunner[at]neurotechcenter.org for more information.&lt;br /&gt;
&lt;br /&gt;
*[[Contributions:CortecADC]]: Interface to the Cortec Brain Interchange.&lt;br /&gt;
*[[Contributions:NatusADC]]: Interface to the Natus clinical system.&lt;br /&gt;
*[[Contributions:NeuralynxADC]]: Interface to Neuralynx systems.&lt;br /&gt;
*[[Contributions:gNautilusNEEDAccess]]: Interface to the gNautilus via g.NEEDAccess.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:Filters]], [[Contributions:How to use a Contributed Source Module]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contents]][[Category:Data Acquisition]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeuSenW&amp;diff=12484</id>
		<title>Contributions:NeuSenW</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeuSenW&amp;diff=12484"/>
		<updated>2026-06-22T14:02:31Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: Mellinger moved page Contributions:NeuSenW to Contributions:NeusenW4: Updated NeusenW source module to NeusenW API V4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Contributions:NeusenW4]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12483</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12483"/>
		<updated>2026-06-22T14:02:31Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: Mellinger moved page Contributions:NeuSenW to Contributions:NeusenW4: Updated NeusenW source module to NeusenW API V4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. When set to &amp;quot;auto&amp;quot;, a sampling rate of 1000 Hz will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &amp;quot;auto&amp;quot; to have the correct values filled in by the source module.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &amp;quot;auto&amp;quot;, or a list of length &#039;&#039;SourceCh&#039;&#039; with all zero entries.&lt;br /&gt;
&lt;br /&gt;
===ChannelNames===&lt;br /&gt;
When set to &amp;quot;auto&amp;quot;, channel names will be filled in automatically.&lt;br /&gt;
If &#039;&#039;SourceCh&#039;&#039; is set to 64, EEG 10-20 electrode names from the Neuracle cap will be used.&lt;br /&gt;
Otherwise, generic channel names indicating the sensor type and number will be created.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12482</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12482"/>
		<updated>2026-06-22T14:00:59Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. When set to &amp;quot;auto&amp;quot;, a sampling rate of 1000 Hz will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &amp;quot;auto&amp;quot; to have the correct values filled in by the source module.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &amp;quot;auto&amp;quot;, or a list of length &#039;&#039;SourceCh&#039;&#039; with all zero entries.&lt;br /&gt;
&lt;br /&gt;
===ChannelNames===&lt;br /&gt;
When set to &amp;quot;auto&amp;quot;, channel names will be filled in automatically.&lt;br /&gt;
If &#039;&#039;SourceCh&#039;&#039; is set to 64, EEG 10-20 electrode names from the Neuracle cap will be used.&lt;br /&gt;
Otherwise, generic channel names indicating the sensor type and number will be created.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12481</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12481"/>
		<updated>2026-06-22T13:58:11Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SourceChOffset */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. When set to &amp;quot;auto&amp;quot;, a sampling rate of 1000 Hz will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &amp;quot;auto&amp;quot; to have the correct values filled in by the source module.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &amp;quot;auto&amp;quot;, or a list of length SourceCh with all zero entries.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12480</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12480"/>
		<updated>2026-06-22T13:57:30Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SourceChGain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. When set to &amp;quot;auto&amp;quot;, a sampling rate of 1000 Hz will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &amp;quot;auto&amp;quot; to have the correct values filled in by the source module.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12479</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12479"/>
		<updated>2026-06-22T12:15:43Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SamplingRate */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. When set to &amp;quot;auto&amp;quot;, a sampling rate of 1000 Hz will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12478</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12478"/>
		<updated>2026-06-22T12:14:48Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SampleBlockSize */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
The NeusenW4 API does not support data blocks below 100ms. If you set &#039;&#039;SampleBlockSize&#039;&#039; to &amp;quot;auto&amp;quot;, a data block duration of 100ms will be chosen.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12477</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12477"/>
		<updated>2026-06-22T11:30:20Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SourceCh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When &#039;&#039;SamplingRate&#039;&#039; is 2000 Hz, &#039;&#039;SourceCh &#039;&#039; cannot be bigger than 32. When &#039;&#039;SamplingRate&#039;&#039; is 4000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 16. When &#039;&#039;SamplingRate&#039;&#039; is 8000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 8. When &#039;&#039;SamplingRate&#039;&#039; is 16000 Hz, the maximum of &#039;&#039;SourceCh&#039;&#039; is 4.&lt;br /&gt;
&lt;br /&gt;
If this parameter is set to &amp;quot;auto&amp;quot;, it will automatically be set to the number of available amplifier channels, as is suitable for &#039;&#039;SamplingRate&#039;&#039; settings up to, and including, 1000 Hz.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12476</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12476"/>
		<updated>2026-06-22T11:25:25Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SourceCh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Defines the number of signal channels to be acquired from the NeusenW device given the following constraints. Only certain numbers of channels are supported for specific sampling rates defined by &#039;&#039;SamplingRate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
When &#039;&#039;SamplingRate&#039;&#039; is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the &amp;quot;auto&amp;quot; setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12475</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12475"/>
		<updated>2026-06-22T11:23:09Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Setting Up BCI2000 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &lt;br /&gt;
 Start executable &lt;br /&gt;
with&lt;br /&gt;
 Start executable NeusenW --local&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12474</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12474"/>
		<updated>2026-06-22T11:21:26Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Usage of Device */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeusenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeusenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12473</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12473"/>
		<updated>2026-06-22T11:20:27Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Known Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
With the NeusenW4 API, it is not possible to achieve a sample block duration less than 100ms. This is a limitation of the API and cannot be improved upon on the BCI2000 side.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12472</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12472"/>
		<updated>2026-06-22T11:17:55Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeusenW4&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12471</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12471"/>
		<updated>2026-06-22T11:17:32Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Functional Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the version 4 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12470</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12470"/>
		<updated>2026-06-22T11:17:15Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Source Code Revisions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
9405: first working version of NeusenW4 source module&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12469</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12469"/>
		<updated>2026-06-22T11:15:32Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Authors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12468</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12468"/>
		<updated>2026-06-22T11:14:48Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Version History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12467</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12467"/>
		<updated>2026-06-22T11:14:13Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Author */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
Jürgen Mellinger, Neurotechcenter&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* V1.00 - 09/15/2022&lt;br /&gt;
* V2.00 - 10/08/2022&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12466</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12466"/>
		<updated>2026-06-02T20:41:16Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms as of July, 2022.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:90%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresentation&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWithGauges&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&#039;t exist; Variables inaccessible&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  determine mex file extension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_queue.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined OpenGL functions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerSimulator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobii3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiPro&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerEyeLink&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certification&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000MediaPlayer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulationParamsGUI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12465</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12465"/>
		<updated>2026-06-01T23:05:35Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:90%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresentation&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWithGauges&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&#039;t exist; Variables inaccessible&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  determine mex file extension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_queue.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined OpenGL functions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerSimulator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobii3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiPro&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerEyeLink&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certification&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000MediaPlayer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulationParamsGUI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12464</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12464"/>
		<updated>2026-06-01T23:05:17Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:100%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresentation&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWithGauges&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&#039;t exist; Variables inaccessible&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  determine mex file extension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_queue.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined OpenGL functions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerSimulator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobii3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiPro&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerEyeLink&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certification&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000MediaPlayer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulationParamsGUI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12463</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12463"/>
		<updated>2026-06-01T23:03:58Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:110%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresentation&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWithGauges&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&#039;t exist; Variables inaccessible&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  determine mex file extension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_queue.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined OpenGL functions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerSimulator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobii3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerTobiiPro&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLoggerEyeLink&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certification&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000MediaPlayer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulationParamsGUI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12462</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12462"/>
		<updated>2026-06-01T22:40:08Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:90%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresentation&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWith&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;Gauges&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;&#039;t exist; Variables inaccessible&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  deter&amp;lt;span style=&#039;border:1px solid black;display:none&#039;&amp;gt;mine mex file extension&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSour&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ce&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferS&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ource&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Modu&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;le&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_que&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ue.h&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined Ope&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;nGL functions&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erSimulator&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilt&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLog&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ger&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobii3&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobiiX&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobiiPro&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erEyeLink&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtensio&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;n&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysi&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;s&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certific&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Media&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;Player&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulatio&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;nParamsGUI&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12461</id>
		<title>Non-Windows Functionality</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Non-Windows_Functionality&amp;diff=12461"/>
		<updated>2026-06-01T22:38:28Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The table below shows how well features of BCI2000 work on OSX and Linux platforms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&#039;border:1px solid black;width:90%;margin:5%;padding:2px;overflow-x:scroll&#039;&amp;gt;&lt;br /&gt;
	&amp;lt;table border=0 cellpadding=0 cellspacing=0 style=&#039;border-collapse: collapse&#039;&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 width=164 style=&#039;border:1px solid black;height:15.75pt;width:123pt&#039;&amp;gt;Key:&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 width=101 style=&#039;border:1px solid black;width:76pt;background:#34A853&#039;&amp;gt;Fully Works&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 width=101 style=&#039;border:1px solid black;width:76pt;background:#FBBC04&#039;&amp;gt;Mostly works but may need some finagling&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 width=101 style=&#039;border:1px solid black;width:76pt;background:#EA4335&#039;&amp;gt;Builds but doesn&#039;t work&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 width=101 style=&#039;border:1px solid black;width:76pt;background:#9900FF&#039;&amp;gt;Doesn&#039;t Build&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 width=101 style=&#039;border:1px solid black;width:76pt;background:fuchsia&#039;&amp;gt;CMake Error&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;Untested&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 width=101 style=&#039;border:1px solid black;width:76pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr class=xl74 height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Operator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Remote&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Launcher&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;StimulusPresentation runs help command instead of application&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Application&lt;br /&gt;
	  Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FeedbackDemo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3Speller&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimulusPresent&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CursorTaskWith&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;Gauges&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Gauges Only&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeurofeedbackTask&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes at the end of a run&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl72 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl73 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;Sometimes crashes&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Missing files&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Processing Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AR&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Dummy&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFT&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Matlab&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P3&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Spectral&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LisaMemycFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;MatlabFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;Parameters don&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;&#039;t exist; Variables inaccessible&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl71 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:fuchsia;mso-pattern:fuchsia none&#039;&amp;gt;Unable to&lt;br /&gt;
	  deter&amp;lt;span style=&#039;border:1px solid black;display:none&#039;&amp;gt;mine mex file extension&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Signal&lt;br /&gt;
	  Source Module&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.HIampSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.MOBIlabPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Nautilus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.Unicorn&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;g.USBamp&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SignalGenerator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SoundCardSour&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ce&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;RDAClient&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Neuroscan&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBufferS&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ource&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FilePlayback&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Blackrock&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Ripple&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DSISerial&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;LSLSource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCISource&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OpenBCI_Modu&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;le&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;actiCHampPlus&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroSpark&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FFTFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;FieldTripBuffer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;PegasusAstroFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Win32Defs.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;concurrent_que&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ue.h&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;winsock.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;windows.h&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demos&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Demo3DAPI&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Undefined Ope&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;nGL functions&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl76 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;Tests&lt;br /&gt;
	  (Breaks Build)&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ObserverTest&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Calculator&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;sockstream_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;iobjects_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;clock_test&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Miscellaneous&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCPy2000&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 colspan=2 style=&#039;border:1px solid black;mso-ignore:colspan;font-size:10.0pt;&lt;br /&gt;
	  color:black;font-weight:400;text-decoration:none;text-underline-style:none;&lt;br /&gt;
	  text-line-through:none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Keyboard&lt;br /&gt;
	  Conditionals&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Extensions&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erSimulator&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioExtension&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;DataGloveLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WebcamLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;WiimoteLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GazeMonitorFilt&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;StimBoxFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CyberGloveLog&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ger&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobii3&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobiiX&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erTobiiPro&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EyetrackerLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;erEyeLink&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;ParallelPortFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;XsensMTwLogg&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;er&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NIDAQLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;AudioInputFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;GaugeExtensio&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;n&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;gEstimFilter&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;CereStim&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BioPacLogger&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl70 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#9900FF;mso-pattern:#9900FF none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl75 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;Tools&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Viewer&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Analysi&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;s&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Certific&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;ation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Export&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000FileInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;BCI2000Media&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;Player&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;EEGlabImport&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;NeuroStimulatio&amp;lt;span&lt;br /&gt;
	  style=&#039;border:1px solid black;display:none&#039;&amp;gt;nParamsGUI&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;OfflineAnalysis&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;P300Classifier&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;SimpleCert&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl75 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#A6A6A6;mso-pattern:black none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Linux&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;Intel OSX&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:white;mso-pattern:white none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	 &amp;lt;tr height=20 style=&#039;border:1px solid black;mso-height-source:userset;height:15.75pt&#039;&amp;gt;&lt;br /&gt;
	  &amp;lt;td height=20 class=xl66 style=&#039;border:1px solid black;height:15.75pt;font-size:10.0pt;color:black;&lt;br /&gt;
	  font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:&lt;br /&gt;
	  none;font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;Apple&lt;br /&gt;
	  Silicon&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl67 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#34A853;mso-pattern:#34A853 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl69 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#EA4335;mso-pattern:#EA4335 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl68 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#FBBC04;mso-pattern:#FBBC04 none&#039;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	  &amp;lt;td class=xl66 style=&#039;border:1px solid black;font-size:10.0pt;color:black;font-weight:400;&lt;br /&gt;
	  text-decoration:none;text-underline-style:none;text-line-through:none;&lt;br /&gt;
	  font-family:Arial;background:#F3F3F3;mso-pattern:#F3F3F3 none&#039;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	 &amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12460</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12460"/>
		<updated>2026-05-28T16:22:58Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Known Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Author===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* V1.00 - 09/15/2022&lt;br /&gt;
* V2.00 - 10/08/2022&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
The Neuracle API Version 3 is now obsolete, and has been replaced with Version 4.&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12459</id>
		<title>Contributions:NeusenW4</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:NeusenW4&amp;diff=12459"/>
		<updated>2026-05-28T16:22:11Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Functional Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/SignalSource/NeuSenW&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Author===&lt;br /&gt;
Jintao Li, Frontier Lab for Applied Neurotechnology (https://ant.chenfrontierlab.com), Tianqiao and Chrissy Chen Institute&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* V1.00 - 09/15/2022&lt;br /&gt;
* V2.00 - 10/08/2022&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
This Source module allows BCI2000 to receive electrophysiological data from one single NeuSenW device.&lt;br /&gt;
It requires the (obsolete) version 3 of the Neuracle API.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
This module requires the VS2012 C++ runtime to be installed (https://www.microsoft.com/en-us/download/details.aspx?id=30679). If the runtime is not installed, you will get an error for a missing DLL!&lt;br /&gt;
&lt;br /&gt;
==Usage of Device==&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_1.jpg|Figure 1: NeuSenW&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_2.jpg|Figure 2: Smart Sync Center&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_3.jpg|Figure 3: Dongle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
These are all devices you need to use the Source module: NeuSenW amplifier, Smart Sync Center, and the dongle provided by Neuracle. &lt;br /&gt;
Start by connecting the Smart Sync Center to the power source. Then, turn on the amplifier and plug the dongle into the computer. No other software is needed. Make sure the computer and amplifier are connected to the Smart Sync Center through Wi-Fi.&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=800px heights=350px&amp;gt;&lt;br /&gt;
File:Neusenw_picture_4.jpg|Figure 4: Trigger Box&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The trigger box can record a variety of types of events (such as sound, light, program output), with sufficiently high timing accuracy and neurophysiological data synchronously, but it is not supported by the current version of the Source module.&lt;br /&gt;
&lt;br /&gt;
==Setting Up BCI2000==&lt;br /&gt;
Once you compiled BCI2000 correctly and generated the solution, create a batch file to run the NeusenW Source Module. Just copy one of the existing batch files in BCI2000/batch. Then replace the first line beginning with &amp;quot;Start executable&amp;quot; with &amp;quot;Start executable NeusenW --local&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Usage Steps==&lt;br /&gt;
Make sure that the device and computer are connecting to Smart Sync Center and the dongle is plugged in before you start BCI2000.&lt;br /&gt;
# Double click the batch file you just created.&lt;br /&gt;
# Click the &amp;quot;Config&amp;quot; button.&lt;br /&gt;
# Set suitable parameters. Detail about these parameters can be found below.&lt;br /&gt;
# Click &amp;quot;Set Config&amp;quot;.&lt;br /&gt;
# Click &amp;quot;Start&amp;quot; to start the experiment.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===SourceCh===&lt;br /&gt;
Define the number of signal channels to be acquired from the NeusenW device given the constraints. Only certain channel numbers are supported for specific sampling rate defined by SamplingRate. When the SamplingRate is not bigger than 1000 Hz (250 Hz/500 Hz/1000 Hz), there is no limit to this parameter. When the SamplingRate is 2000 Hz, SourceCh cannot be bigger than 32. When the SamplingRate is 4000 Hz, the maximum of SourceCh is 16. When the SamplingRate is 8000 Hz, the maximum of SourceCh is 8. When the SamplingRate is 16000 Hz, the maximum of SourceCh is 4. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SampleBlockSize===&lt;br /&gt;
Depending on the system configuration (Neuracle&#039;s triggerbox enabled/disabled, wired vs. wireless connection), data acquisition may not be stable, and data loss may occur, when SampleBlockSize is less than 40 ms (i.e., 40 at 1000 Hz sampling rate). This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SamplingRate===&lt;br /&gt;
The NeusenW device supports 7 different sampling rates: 250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz, 8000 Hz, and 16000 Hz. This parameter may limit the value of SourceCh as described above. This parameter does not support the “auto” setting.&lt;br /&gt;
&lt;br /&gt;
===SourceChGain===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 1.&lt;br /&gt;
&lt;br /&gt;
===SourceChOffset===&lt;br /&gt;
Use &#039;auto&#039;, or a list of SourceCh numbers of 0.&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12458</id>
		<title>Programming Howto:Install Prerequisites</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12458"/>
		<updated>2026-05-21T10:38:43Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* CMake */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Back==&lt;br /&gt;
To [[Programming Howto:Building and Customizing BCI2000|this howto&#039;s overview page]].&lt;br /&gt;
&lt;br /&gt;
==TortoiseSVN==&lt;br /&gt;
Download the TortoiseSVN installer from [https://tortoisesvn.net tortoisesvn.net].&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_2-1985.png|center]]&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to install command line client tools:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_3-1990.png|center]]&lt;br /&gt;
This will allow you to later check the build number and run various commands. &lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_4-2001.png|center]]&lt;br /&gt;
&lt;br /&gt;
==CMake==&lt;br /&gt;
Download the CMake installer from [https://cmake.org cmake.org/download].&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_2-2013.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose &amp;quot;Add to path for all users&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_3-2019.png|center]]&lt;br /&gt;
&lt;br /&gt;
Follow the installation instructions. Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_4-2025.png|center]]&lt;br /&gt;
&lt;br /&gt;
==VisualStudio==&lt;br /&gt;
Download the VisualStudio Community installer from [https://visualstudio.com/downloads/ visualstudio.com]. BCI2000 compilation will work with VS2019,  VS2022, and VS2026 but does not work with VS2017 or below. &amp;lt;br /&amp;gt;&amp;lt;i&amp;gt;*Note that BCI2000 is most frequently tested with VS2022. &amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
Make sure to install the C++ compiler:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_2.png|600px|center]]&lt;br /&gt;
&lt;br /&gt;
==Qt==&lt;br /&gt;
Download the Qt open source installer from [https://www.qt.io/download www.qt.io].&lt;br /&gt;
&lt;br /&gt;
Use the &amp;quot;go open source&amp;quot; link to download a version of qt available for open source software:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 1-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Download the Qt online installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 2-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt_installer_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, follow the steps to create one:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer account.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the open source obligations, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer open source obligations.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; to start the installation:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_3.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose a directory, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_4.png|center]]&lt;br /&gt;
====Qt Versioning====&lt;br /&gt;
&lt;br /&gt;
Choose a Qt version that is consistent with the version of VisualStudio you downloaded earlier. Another consideration is the framework you wish to build BCI2000 with. For example, in this tutorial, we are compiling for the 2019 Visual Studio on a 64 bit system, make sure you select MSVC 2019 64-bit, which is demonstrated in the photo below. If you&#039;re using Visual Studio 2022 or 2026, find the latest version of Qt that supports Visual Studio 2022 or 2026 for whatever architecture you want to build BCI2000 on and install that version of Qt. Note that VisualStudio 2022 and 2026 are binary compatible with VisualStudio 2019.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_5.png|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the License Agreement, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_6.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; when prompted for Start Menu shortcuts:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_7.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Install&amp;quot; to download and install Qt files:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_8.png|center]]&lt;br /&gt;
&lt;br /&gt;
Progress will be indicated during installation.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_9.png|center]]&lt;br /&gt;
&lt;br /&gt;
Installation may take a long time.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_10.png|center]]&lt;br /&gt;
&lt;br /&gt;
Uncheck &amp;quot;Launch Qt Creator&amp;quot; before clicking &amp;quot;Finish&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_11.png|center]]&lt;br /&gt;
&lt;br /&gt;
==Next step==&lt;br /&gt;
As a next step, learn how to [[Programming Howto:Register with BCI2000 Project|register with the BCI2000 Project]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Programming Howto:Building and Customizing BCI2000]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Howto]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12457</id>
		<title>Programming Howto:Install Prerequisites</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12457"/>
		<updated>2026-05-21T10:38:00Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Qt Versioning */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Back==&lt;br /&gt;
To [[Programming Howto:Building and Customizing BCI2000|this howto&#039;s overview page]].&lt;br /&gt;
&lt;br /&gt;
==TortoiseSVN==&lt;br /&gt;
Download the TortoiseSVN installer from [https://tortoisesvn.net tortoisesvn.net].&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_2-1985.png|center]]&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to install command line client tools:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_3-1990.png|center]]&lt;br /&gt;
This will allow you to later check the build number and run various commands. &lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_4-2001.png|center]]&lt;br /&gt;
&lt;br /&gt;
==CMake==&lt;br /&gt;
Download the CMake installer from [https://cmake.org cmake.org/download]. &#039;&#039;&#039;Do not download the latest release!&#039;&#039;&#039; CMake versions after 4.0 currently do not work. Download version 3.31.6 or earlier. &lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_2-2013.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose &amp;quot;Add to path for all users&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_3-2019.png|center]]&lt;br /&gt;
&lt;br /&gt;
Follow the installation instructions. Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_4-2025.png|center]]&lt;br /&gt;
&lt;br /&gt;
==VisualStudio==&lt;br /&gt;
Download the VisualStudio Community installer from [https://visualstudio.com/downloads/ visualstudio.com]. BCI2000 compilation will work with VS2019,  VS2022, and VS2026 but does not work with VS2017 or below. &amp;lt;br /&amp;gt;&amp;lt;i&amp;gt;*Note that BCI2000 is most frequently tested with VS2022. &amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
Make sure to install the C++ compiler:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_2.png|600px|center]]&lt;br /&gt;
&lt;br /&gt;
==Qt==&lt;br /&gt;
Download the Qt open source installer from [https://www.qt.io/download www.qt.io].&lt;br /&gt;
&lt;br /&gt;
Use the &amp;quot;go open source&amp;quot; link to download a version of qt available for open source software:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 1-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Download the Qt online installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 2-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt_installer_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, follow the steps to create one:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer account.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the open source obligations, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer open source obligations.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; to start the installation:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_3.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose a directory, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_4.png|center]]&lt;br /&gt;
====Qt Versioning====&lt;br /&gt;
&lt;br /&gt;
Choose a Qt version that is consistent with the version of VisualStudio you downloaded earlier. Another consideration is the framework you wish to build BCI2000 with. For example, in this tutorial, we are compiling for the 2019 Visual Studio on a 64 bit system, make sure you select MSVC 2019 64-bit, which is demonstrated in the photo below. If you&#039;re using Visual Studio 2022 or 2026, find the latest version of Qt that supports Visual Studio 2022 or 2026 for whatever architecture you want to build BCI2000 on and install that version of Qt. Note that VisualStudio 2022 and 2026 are binary compatible with VisualStudio 2019.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_5.png|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the License Agreement, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_6.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; when prompted for Start Menu shortcuts:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_7.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Install&amp;quot; to download and install Qt files:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_8.png|center]]&lt;br /&gt;
&lt;br /&gt;
Progress will be indicated during installation.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_9.png|center]]&lt;br /&gt;
&lt;br /&gt;
Installation may take a long time.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_10.png|center]]&lt;br /&gt;
&lt;br /&gt;
Uncheck &amp;quot;Launch Qt Creator&amp;quot; before clicking &amp;quot;Finish&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_11.png|center]]&lt;br /&gt;
&lt;br /&gt;
==Next step==&lt;br /&gt;
As a next step, learn how to [[Programming Howto:Register with BCI2000 Project|register with the BCI2000 Project]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Programming Howto:Building and Customizing BCI2000]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Howto]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12456</id>
		<title>Programming Howto:Install Prerequisites</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Programming_Howto:Install_Prerequisites&amp;diff=12456"/>
		<updated>2026-05-21T10:36:55Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* VisualStudio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Back==&lt;br /&gt;
To [[Programming Howto:Building and Customizing BCI2000|this howto&#039;s overview page]].&lt;br /&gt;
&lt;br /&gt;
==TortoiseSVN==&lt;br /&gt;
Download the TortoiseSVN installer from [https://tortoisesvn.net tortoisesvn.net].&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_2-1985.png|center]]&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to install command line client tools:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_3-1990.png|center]]&lt;br /&gt;
This will allow you to later check the build number and run various commands. &lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:TortoiseSVN_4-2001.png|center]]&lt;br /&gt;
&lt;br /&gt;
==CMake==&lt;br /&gt;
Download the CMake installer from [https://cmake.org cmake.org/download]. &#039;&#039;&#039;Do not download the latest release!&#039;&#039;&#039; CMake versions after 4.0 currently do not work. Download version 3.31.6 or earlier. &lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_2-2013.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose &amp;quot;Add to path for all users&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_3-2019.png|center]]&lt;br /&gt;
&lt;br /&gt;
Follow the installation instructions. Click &amp;quot;Finish&amp;quot; to dismiss the installer dialog:&lt;br /&gt;
&lt;br /&gt;
[[File:CMake_4-2025.png|center]]&lt;br /&gt;
&lt;br /&gt;
==VisualStudio==&lt;br /&gt;
Download the VisualStudio Community installer from [https://visualstudio.com/downloads/ visualstudio.com]. BCI2000 compilation will work with VS2019,  VS2022, and VS2026 but does not work with VS2017 or below. &amp;lt;br /&amp;gt;&amp;lt;i&amp;gt;*Note that BCI2000 is most frequently tested with VS2022. &amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
Make sure to install the C++ compiler:&lt;br /&gt;
&lt;br /&gt;
[[File:install_vs2017_community_2.png|600px|center]]&lt;br /&gt;
&lt;br /&gt;
==Qt==&lt;br /&gt;
Download the Qt open source installer from [https://www.qt.io/download www.qt.io].&lt;br /&gt;
&lt;br /&gt;
Use the &amp;quot;go open source&amp;quot; link to download a version of qt available for open source software:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 1-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Download the Qt online installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt installer 2-2.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Run the installer:&lt;br /&gt;
&lt;br /&gt;
[[File:Qt_installer_1.png|center]]&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, follow the steps to create one:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer account.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the open source obligations, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt installer open source obligations.PNG|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; to start the installation:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_3.png|center]]&lt;br /&gt;
&lt;br /&gt;
Choose a directory, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_4.png|center]]&lt;br /&gt;
====Qt Versioning====&lt;br /&gt;
&lt;br /&gt;
Choose a Qt version that is consistent with the version of VisualStudio you downloaded earlier. Another consideration is the framework you wish to build BCI2000 with. For example, in this tutorial, we are compiling for the 2019 Visual Studio on a 64 bit system, make sure you select MSVC 2019 64-bit, which is demonstrated in the photo below. If you&#039;re using Visual Studio 2022 find the latest version of Qt that supports Visual Studio 2022 for whatever architecture you want to build BCI2000 on and install that version of Qt. Note that VisualStudio 2022 is binary compatible with VisualStudio 2019.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_5.png|center]]&lt;br /&gt;
&lt;br /&gt;
Agree to the License Agreement, and click &amp;quot;Next&amp;quot; to continue:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_6.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Next&amp;quot; when prompted for Start Menu shortcuts:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_7.png|center]]&lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;Install&amp;quot; to download and install Qt files:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_8.png|center]]&lt;br /&gt;
&lt;br /&gt;
Progress will be indicated during installation.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_9.png|center]]&lt;br /&gt;
&lt;br /&gt;
Installation may take a long time.&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_10.png|center]]&lt;br /&gt;
&lt;br /&gt;
Uncheck &amp;quot;Launch Qt Creator&amp;quot; before clicking &amp;quot;Finish&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
[[File:qt_installer_11.png|center]]&lt;br /&gt;
&lt;br /&gt;
==Next step==&lt;br /&gt;
As a next step, learn how to [[Programming Howto:Register with BCI2000 Project|register with the BCI2000 Project]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Programming Howto:Building and Customizing BCI2000]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Howto]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12455</id>
		<title>Contributions:ScreenCaptureLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12455"/>
		<updated>2026-05-20T16:39:48Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* ScreenCaptureAreas */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
An extension that records video from one or more screen areas to mp4 files, and stores frame numbers as (event-type) state variables.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger&amp;lt;br&amp;gt;&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger_Wayland&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Juergen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
May 6, 2026: initial version&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9343&lt;br /&gt;
*Tested under: 9357&lt;br /&gt;
*Known to compile under: 9357&lt;br /&gt;
&lt;br /&gt;
===Known Issues===&lt;br /&gt;
On Linux, the Wayland version has never been working. It connects to the XDG screen capturing portal and displays a screen selector dialog but subsequently fails to establish a connection to the PipeWire daemon. Due to lack of error information and documentation on the PipeWire side, it is currently not possible to fix the issue with reasonable effort.&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
For many experiments, a documentation of screen content is desired. While the content of the user&#039;s task window is available in the ApplicationWindow visualization, this has its limitations, especially if the participant&#039;s screen is not displayed by a BCI2000 application module but a third party stimulus presentation kit such as &#039;&#039;PsychoPy&#039;&#039; or &#039;&#039;PsychToolBox&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This extension allows capturing of any number of desktop areas, and saving each into its own MP4 video file. It also records the current frame number as a state variable, so that the video can be synchronized with brain data at sample resolution (max. 1ms). &lt;br /&gt;
&lt;br /&gt;
The video file bears the name of the BCI2000 data file, with the extension removed and &amp;lt;tt&amp;gt;_ScreenCaptureM.mp4&amp;lt;/tt&amp;gt; appended where &amp;lt;tt&amp;gt;M&amp;lt;/tt&amp;gt; is the one-based index of the screen area in question.&lt;br /&gt;
For the format of the video file, see [[Contributions:ScreenCaptureLogger#Format_of_the_Video_File|the notes below]].&lt;br /&gt;
&lt;br /&gt;
==Integration into BCI2000==&lt;br /&gt;
Compile the extension into your source module by enabling contributed extensions in your CMake configuration. In your root build folder, run &amp;lt;tt&amp;gt;Configure.sh.cmd&amp;lt;/tt&amp;gt; in order to bring up the CMake GUI; there, enable EXTENSIONS_SCREENCAPTURELOGGER for the Windows/macOS/Linux-X11 version of the module.&lt;br /&gt;
In order to use the Linux-Wayland version &#039;&#039;&#039;disable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER, and &#039;&#039;&#039;enable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER_WAYLAND.&lt;br /&gt;
You cannot enable both the default and the Wayland version.&lt;br /&gt;
&lt;br /&gt;
Further requirements are:&lt;br /&gt;
===Windows===&lt;br /&gt;
No further requirements must be met.&lt;br /&gt;
===macOS===&lt;br /&gt;
On macOS, the extension requires at least macOS 15.2 (Sequoia) to compile and run.&lt;br /&gt;
===Linux-X11===&lt;br /&gt;
The X11 version of the extension requires the xcb (X11 C bindings) and the xcb-shm (XCB shared memory extension) libraries and headers. On Debian-based distributions, this resolved by installing the &#039;&#039;libxcb-dev&#039;&#039; and &#039;&#039;libxcd-shm0-dev&#039;&#039; packages. On other distributions, installing &#039;&#039;libxcb&#039;&#039; may be sufficient.&lt;br /&gt;
===Linux-Wayland===&lt;br /&gt;
To build the (currently broken) Wayland version of the extension, it its necessary to install the sdbus-c++ library (&#039;&#039;libsdbus-c++-dev&#039;&#039; on Debian-based systems, &#039;&#039;sdbus-cpp&#039;&#039; on Arch) as well as the PipeWire library (&#039;&#039;libpipewire-dev&#039;&#039; on Debian-based distributions, &#039;&#039;libpipewire&#039;&#039; on Arch).&lt;br /&gt;
&lt;br /&gt;
Once the extension is built into the source module, enable it by starting the source module with the &amp;lt;code&amp;gt;--LogScreenCapture=1&amp;lt;/code&amp;gt; command line argument.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
The ScreenCapture logger is configured in the &#039;&#039;Source&#039;&#039; tab within the ScreenCaptureLogger section.  The configurable parameters are:&lt;br /&gt;
&lt;br /&gt;
===LogScreenCapture===&lt;br /&gt;
Enables/Disables the logger extension.&lt;br /&gt;
===DisplayCaptureStream===&lt;br /&gt;
Display the video stream from each captured screen area. Display stream is identical to what is being recorded in the .mp4 file.&lt;br /&gt;
===ScreenCaptureAreas===&lt;br /&gt;
A matrix parameter with each row representing an independently capture area (capture areas may overlap).&lt;br /&gt;
In each row, you may specify a video width, height, spatial decimation, fps, encoder profile, and a compression factor. &lt;br /&gt;
The &#039;&#039;encoding profile&#039;&#039; column allows you to choose an H.264 encoding profile for video output, which may be a number from 1 to 3. &#039;&#039;&#039;1&#039;&#039;&#039; corresponds to the &amp;quot;baseline&amp;quot; profile, &#039;&#039;&#039;2&#039;&#039;&#039; corresponds to the &amp;quot;main&amp;quot; profile, and &#039;&#039;&#039;3&#039;&#039;&#039; corresponds to the &amp;quot;high&amp;quot; profile as defined in the &#039;&#039;ITU-T H.264&#039;&#039; standard.&lt;br /&gt;
If the encoder uses ffmpeg’s &#039;&#039;x264&#039;&#039; codec (on non-Windows systems), the additional option &#039;&#039;tune=animation&#039;&#039; is applied to optimize encoding for screen content. On Windows, the &#039;&#039;mf_h264&#039;&#039; codec is used which does not provide such an option.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;compression factor&#039;&#039; determines the amount of data compression applied when encoding the stream of images into an .mp4 file. The smallest possible compression setting is 1 (no compression). Use a setting of 100 to compress the data stream to 1/100 of its original size.&lt;br /&gt;
&lt;br /&gt;
==Event Variables==&lt;br /&gt;
&lt;br /&gt;
===ScreenCaptureFrame&amp;lt;1-n&amp;gt;===&lt;br /&gt;
The frame number of the screen capture area with row i. The default value of n is 4, allowing for capturing of up to 4 areas. To record more areas, change the &amp;lt;code&amp;gt;NUM_OF_SCREEN_CAPTURE_EVENTS&amp;lt;/code&amp;gt; macro in ScreenCaptureLogger.cpp to the number of areas you want to record, and recompile. Event values can be used to synchronize the video with the recorded neural data. It is a 32-bit value, allowing 4294967295 frames before overflowing. If screen capturing is done at 30 frames/sec, this allows more than four years of video before it will go back to frame 0. In other words, this should not be an issue for most users.&lt;br /&gt;
&lt;br /&gt;
==Format of the Video File==&lt;br /&gt;
Each capture area writes its own video file. Files in mp4 format (and related formats) do not allow to seek to locations that represent original frames when writing the file. Rather, the file&#039;s nominal frame rate and length are used in conjunction with interpolation to construct a frame at an ideal location.&lt;br /&gt;
Thus, it is not possible to write individual frames using the screen capture’s original timestamp, at the original frame rate.&lt;br /&gt;
&lt;br /&gt;
Instead, the file is written with the nominal framerate specified in the &#039;&#039;fps&#039;&#039; column of the &#039;&#039;ScreenCaptureAreas&#039;&#039; parameter, with differences between frame timestamps matching ideal frame duration.&lt;br /&gt;
This way, loading the video into e.g. Matlab, you will obtain a sequence of frames where each frame index corresponds to the frame index in the &amp;lt;tt&amp;gt;ScreenCaptureFrameN&amp;lt;/tt&amp;gt; state (minus 1).&lt;br /&gt;
&lt;br /&gt;
For a strategy how to synchronize video file frames with brain signal data, and possibly audio data, see [[User_Reference:BCI2000Viewer#AV_Synchronization_Strategies|this page]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:Logging Input]], [[Contributions:Extensions]], [[Programming Reference:Events]], [[User Reference:BCI2000Viewer]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12454</id>
		<title>Contributions:ScreenCaptureLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12454"/>
		<updated>2026-05-20T16:39:07Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* ScreenCaptureAreas */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
An extension that records video from one or more screen areas to mp4 files, and stores frame numbers as (event-type) state variables.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger&amp;lt;br&amp;gt;&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger_Wayland&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Juergen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
May 6, 2026: initial version&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9343&lt;br /&gt;
*Tested under: 9357&lt;br /&gt;
*Known to compile under: 9357&lt;br /&gt;
&lt;br /&gt;
===Known Issues===&lt;br /&gt;
On Linux, the Wayland version has never been working. It connects to the XDG screen capturing portal and displays a screen selector dialog but subsequently fails to establish a connection to the PipeWire daemon. Due to lack of error information and documentation on the PipeWire side, it is currently not possible to fix the issue with reasonable effort.&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
For many experiments, a documentation of screen content is desired. While the content of the user&#039;s task window is available in the ApplicationWindow visualization, this has its limitations, especially if the participant&#039;s screen is not displayed by a BCI2000 application module but a third party stimulus presentation kit such as &#039;&#039;PsychoPy&#039;&#039; or &#039;&#039;PsychToolBox&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This extension allows capturing of any number of desktop areas, and saving each into its own MP4 video file. It also records the current frame number as a state variable, so that the video can be synchronized with brain data at sample resolution (max. 1ms). &lt;br /&gt;
&lt;br /&gt;
The video file bears the name of the BCI2000 data file, with the extension removed and &amp;lt;tt&amp;gt;_ScreenCaptureM.mp4&amp;lt;/tt&amp;gt; appended where &amp;lt;tt&amp;gt;M&amp;lt;/tt&amp;gt; is the one-based index of the screen area in question.&lt;br /&gt;
For the format of the video file, see [[Contributions:ScreenCaptureLogger#Format_of_the_Video_File|the notes below]].&lt;br /&gt;
&lt;br /&gt;
==Integration into BCI2000==&lt;br /&gt;
Compile the extension into your source module by enabling contributed extensions in your CMake configuration. In your root build folder, run &amp;lt;tt&amp;gt;Configure.sh.cmd&amp;lt;/tt&amp;gt; in order to bring up the CMake GUI; there, enable EXTENSIONS_SCREENCAPTURELOGGER for the Windows/macOS/Linux-X11 version of the module.&lt;br /&gt;
In order to use the Linux-Wayland version &#039;&#039;&#039;disable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER, and &#039;&#039;&#039;enable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER_WAYLAND.&lt;br /&gt;
You cannot enable both the default and the Wayland version.&lt;br /&gt;
&lt;br /&gt;
Further requirements are:&lt;br /&gt;
===Windows===&lt;br /&gt;
No further requirements must be met.&lt;br /&gt;
===macOS===&lt;br /&gt;
On macOS, the extension requires at least macOS 15.2 (Sequoia) to compile and run.&lt;br /&gt;
===Linux-X11===&lt;br /&gt;
The X11 version of the extension requires the xcb (X11 C bindings) and the xcb-shm (XCB shared memory extension) libraries and headers. On Debian-based distributions, this resolved by installing the &#039;&#039;libxcb-dev&#039;&#039; and &#039;&#039;libxcd-shm0-dev&#039;&#039; packages. On other distributions, installing &#039;&#039;libxcb&#039;&#039; may be sufficient.&lt;br /&gt;
===Linux-Wayland===&lt;br /&gt;
To build the (currently broken) Wayland version of the extension, it its necessary to install the sdbus-c++ library (&#039;&#039;libsdbus-c++-dev&#039;&#039; on Debian-based systems, &#039;&#039;sdbus-cpp&#039;&#039; on Arch) as well as the PipeWire library (&#039;&#039;libpipewire-dev&#039;&#039; on Debian-based distributions, &#039;&#039;libpipewire&#039;&#039; on Arch).&lt;br /&gt;
&lt;br /&gt;
Once the extension is built into the source module, enable it by starting the source module with the &amp;lt;code&amp;gt;--LogScreenCapture=1&amp;lt;/code&amp;gt; command line argument.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
The ScreenCapture logger is configured in the &#039;&#039;Source&#039;&#039; tab within the ScreenCaptureLogger section.  The configurable parameters are:&lt;br /&gt;
&lt;br /&gt;
===LogScreenCapture===&lt;br /&gt;
Enables/Disables the logger extension.&lt;br /&gt;
===DisplayCaptureStream===&lt;br /&gt;
Display the video stream from each captured screen area. Display stream is identical to what is being recorded in the .mp4 file.&lt;br /&gt;
===ScreenCaptureAreas===&lt;br /&gt;
A matrix parameter with each row representing an independently capture area (capture areas may overlap).&lt;br /&gt;
In each row, you may specify a video width, height, spatial decimation, fps, encoder profile, and compression factor. &lt;br /&gt;
The &#039;&#039;encoding profile&#039;&#039; column allows you to choose an H.264 encoding profile for video output, which may be a number from 1 to 3. &#039;&#039;&#039;1&#039;&#039;&#039; corresponds to the &amp;quot;baseline&amp;quot; profile, &#039;&#039;&#039;2&#039;&#039;&#039; corresponds to the &amp;quot;main&amp;quot; profile, and &#039;&#039;&#039;3&#039;&#039;&#039; corresponds to the &amp;quot;high&amp;quot; profile as defined in the &#039;&#039;ITU-T H.264&#039;&#039; standard.&lt;br /&gt;
If the encoder uses ffmpeg’s &#039;&#039;x264&#039;&#039; codec (on non-Windows systems), the additional option &#039;&#039;tune=animation&#039;&#039; is applied to optimize encoding for screen content. On Windows, the &#039;&#039;mf_h264&#039;&#039; codec is used which does not provide such an option.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;compression factor&#039;&#039; determines the amount of data compression applied when encoding the stream of images into an .mp4 file. The smallest possible compression setting is 1 (no compression). Use a setting of 100 to compress the data stream to 1/100 of its original size.&lt;br /&gt;
&lt;br /&gt;
==Event Variables==&lt;br /&gt;
&lt;br /&gt;
===ScreenCaptureFrame&amp;lt;1-n&amp;gt;===&lt;br /&gt;
The frame number of the screen capture area with row i. The default value of n is 4, allowing for capturing of up to 4 areas. To record more areas, change the &amp;lt;code&amp;gt;NUM_OF_SCREEN_CAPTURE_EVENTS&amp;lt;/code&amp;gt; macro in ScreenCaptureLogger.cpp to the number of areas you want to record, and recompile. Event values can be used to synchronize the video with the recorded neural data. It is a 32-bit value, allowing 4294967295 frames before overflowing. If screen capturing is done at 30 frames/sec, this allows more than four years of video before it will go back to frame 0. In other words, this should not be an issue for most users.&lt;br /&gt;
&lt;br /&gt;
==Format of the Video File==&lt;br /&gt;
Each capture area writes its own video file. Files in mp4 format (and related formats) do not allow to seek to locations that represent original frames when writing the file. Rather, the file&#039;s nominal frame rate and length are used in conjunction with interpolation to construct a frame at an ideal location.&lt;br /&gt;
Thus, it is not possible to write individual frames using the screen capture’s original timestamp, at the original frame rate.&lt;br /&gt;
&lt;br /&gt;
Instead, the file is written with the nominal framerate specified in the &#039;&#039;fps&#039;&#039; column of the &#039;&#039;ScreenCaptureAreas&#039;&#039; parameter, with differences between frame timestamps matching ideal frame duration.&lt;br /&gt;
This way, loading the video into e.g. Matlab, you will obtain a sequence of frames where each frame index corresponds to the frame index in the &amp;lt;tt&amp;gt;ScreenCaptureFrameN&amp;lt;/tt&amp;gt; state (minus 1).&lt;br /&gt;
&lt;br /&gt;
For a strategy how to synchronize video file frames with brain signal data, and possibly audio data, see [[User_Reference:BCI2000Viewer#AV_Synchronization_Strategies|this page]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:Logging Input]], [[Contributions:Extensions]], [[Programming Reference:Events]], [[User Reference:BCI2000Viewer]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12453</id>
		<title>Contributions:ScreenCaptureLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:ScreenCaptureLogger&amp;diff=12453"/>
		<updated>2026-05-20T16:35:12Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Functional Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
An extension that records video from one or more screen areas to mp4 files, and stores frame numbers as (event-type) state variables.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger&amp;lt;br&amp;gt;&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/ScreenCaptureLogger_Wayland&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
===Authors===&lt;br /&gt;
Juergen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
May 6, 2026: initial version&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9343&lt;br /&gt;
*Tested under: 9357&lt;br /&gt;
*Known to compile under: 9357&lt;br /&gt;
&lt;br /&gt;
===Known Issues===&lt;br /&gt;
On Linux, the Wayland version has never been working. It connects to the XDG screen capturing portal and displays a screen selector dialog but subsequently fails to establish a connection to the PipeWire daemon. Due to lack of error information and documentation on the PipeWire side, it is currently not possible to fix the issue with reasonable effort.&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
For many experiments, a documentation of screen content is desired. While the content of the user&#039;s task window is available in the ApplicationWindow visualization, this has its limitations, especially if the participant&#039;s screen is not displayed by a BCI2000 application module but a third party stimulus presentation kit such as &#039;&#039;PsychoPy&#039;&#039; or &#039;&#039;PsychToolBox&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This extension allows capturing of any number of desktop areas, and saving each into its own MP4 video file. It also records the current frame number as a state variable, so that the video can be synchronized with brain data at sample resolution (max. 1ms). &lt;br /&gt;
&lt;br /&gt;
The video file bears the name of the BCI2000 data file, with the extension removed and &amp;lt;tt&amp;gt;_ScreenCaptureM.mp4&amp;lt;/tt&amp;gt; appended where &amp;lt;tt&amp;gt;M&amp;lt;/tt&amp;gt; is the one-based index of the screen area in question.&lt;br /&gt;
For the format of the video file, see [[Contributions:ScreenCaptureLogger#Format_of_the_Video_File|the notes below]].&lt;br /&gt;
&lt;br /&gt;
==Integration into BCI2000==&lt;br /&gt;
Compile the extension into your source module by enabling contributed extensions in your CMake configuration. In your root build folder, run &amp;lt;tt&amp;gt;Configure.sh.cmd&amp;lt;/tt&amp;gt; in order to bring up the CMake GUI; there, enable EXTENSIONS_SCREENCAPTURELOGGER for the Windows/macOS/Linux-X11 version of the module.&lt;br /&gt;
In order to use the Linux-Wayland version &#039;&#039;&#039;disable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER, and &#039;&#039;&#039;enable&#039;&#039;&#039; EXTENSIONS_SCREENCAPTURELOGGER_WAYLAND.&lt;br /&gt;
You cannot enable both the default and the Wayland version.&lt;br /&gt;
&lt;br /&gt;
Further requirements are:&lt;br /&gt;
===Windows===&lt;br /&gt;
No further requirements must be met.&lt;br /&gt;
===macOS===&lt;br /&gt;
On macOS, the extension requires at least macOS 15.2 (Sequoia) to compile and run.&lt;br /&gt;
===Linux-X11===&lt;br /&gt;
The X11 version of the extension requires the xcb (X11 C bindings) and the xcb-shm (XCB shared memory extension) libraries and headers. On Debian-based distributions, this resolved by installing the &#039;&#039;libxcb-dev&#039;&#039; and &#039;&#039;libxcd-shm0-dev&#039;&#039; packages. On other distributions, installing &#039;&#039;libxcb&#039;&#039; may be sufficient.&lt;br /&gt;
===Linux-Wayland===&lt;br /&gt;
To build the (currently broken) Wayland version of the extension, it its necessary to install the sdbus-c++ library (&#039;&#039;libsdbus-c++-dev&#039;&#039; on Debian-based systems, &#039;&#039;sdbus-cpp&#039;&#039; on Arch) as well as the PipeWire library (&#039;&#039;libpipewire-dev&#039;&#039; on Debian-based distributions, &#039;&#039;libpipewire&#039;&#039; on Arch).&lt;br /&gt;
&lt;br /&gt;
Once the extension is built into the source module, enable it by starting the source module with the &amp;lt;code&amp;gt;--LogScreenCapture=1&amp;lt;/code&amp;gt; command line argument.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
The ScreenCapture logger is configured in the &#039;&#039;Source&#039;&#039; tab within the ScreenCaptureLogger section.  The configurable parameters are:&lt;br /&gt;
&lt;br /&gt;
===LogScreenCapture===&lt;br /&gt;
Enables/Disables the logger extension.&lt;br /&gt;
===DisplayCaptureStream===&lt;br /&gt;
Display the video stream from each captured screen area. Display stream is identical to what is being recorded in the .mp4 file.&lt;br /&gt;
===ScreenCaptureAreas===&lt;br /&gt;
A matrix parameter with each row representing an independently capture area (capture areas may overlap).&lt;br /&gt;
In each row, you may specify a video width, height, spatial decimation, fps, and encoder profile. &lt;br /&gt;
The &#039;&#039;encoding profile&#039;&#039; column allows you to choose an H.264 encoding profile for video output, which may be a number from 1 to 3. &#039;&#039;&#039;1&#039;&#039;&#039; corresponds to the &amp;quot;baseline&amp;quot; profile, &#039;&#039;&#039;2&#039;&#039;&#039; corresponds to the &amp;quot;main&amp;quot; profile, and &#039;&#039;&#039;3&#039;&#039;&#039; corresponds to the &amp;quot;high&amp;quot; profile as defined in the &#039;&#039;ITU-T H.264&#039;&#039; standard.&lt;br /&gt;
If the encoder uses ffmpeg’s &#039;&#039;x264&#039;&#039; codec (on non-Windows systems), the additional option &#039;&#039;tune=animation&#039;&#039; is applied to optimize encoding for screen content. On Windows, the &#039;&#039;mf_h264&#039;&#039; codec is used which does not provide such an option.&lt;br /&gt;
&lt;br /&gt;
==Event Variables==&lt;br /&gt;
&lt;br /&gt;
===ScreenCaptureFrame&amp;lt;1-n&amp;gt;===&lt;br /&gt;
The frame number of the screen capture area with row i. The default value of n is 4, allowing for capturing of up to 4 areas. To record more areas, change the &amp;lt;code&amp;gt;NUM_OF_SCREEN_CAPTURE_EVENTS&amp;lt;/code&amp;gt; macro in ScreenCaptureLogger.cpp to the number of areas you want to record, and recompile. Event values can be used to synchronize the video with the recorded neural data. It is a 32-bit value, allowing 4294967295 frames before overflowing. If screen capturing is done at 30 frames/sec, this allows more than four years of video before it will go back to frame 0. In other words, this should not be an issue for most users.&lt;br /&gt;
&lt;br /&gt;
==Format of the Video File==&lt;br /&gt;
Each capture area writes its own video file. Files in mp4 format (and related formats) do not allow to seek to locations that represent original frames when writing the file. Rather, the file&#039;s nominal frame rate and length are used in conjunction with interpolation to construct a frame at an ideal location.&lt;br /&gt;
Thus, it is not possible to write individual frames using the screen capture’s original timestamp, at the original frame rate.&lt;br /&gt;
&lt;br /&gt;
Instead, the file is written with the nominal framerate specified in the &#039;&#039;fps&#039;&#039; column of the &#039;&#039;ScreenCaptureAreas&#039;&#039; parameter, with differences between frame timestamps matching ideal frame duration.&lt;br /&gt;
This way, loading the video into e.g. Matlab, you will obtain a sequence of frames where each frame index corresponds to the frame index in the &amp;lt;tt&amp;gt;ScreenCaptureFrameN&amp;lt;/tt&amp;gt; state (minus 1).&lt;br /&gt;
&lt;br /&gt;
For a strategy how to synchronize video file frames with brain signal data, and possibly audio data, see [[User_Reference:BCI2000Viewer#AV_Synchronization_Strategies|this page]].&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[User Reference:Logging Input]], [[Contributions:Extensions]], [[Programming Reference:Events]], [[User Reference:BCI2000Viewer]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12442</id>
		<title>Contributions:FnirsiUSBLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12442"/>
		<updated>2026-05-13T16:04:26Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* States */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:FNB58.jpg |thumb| right | FNIRSI FNB58 USB Power Meter]]&lt;br /&gt;
&lt;br /&gt;
==Synopsis==&lt;br /&gt;
A logger that stores voltage, current, and temperature readings from an FNIRSI FNB58 USB Power Meter into BCI2000 states.&lt;br /&gt;
The FNB58 is able to measure voltage and current for USB-A, USB-C and Micro USB outlets in real time.&lt;br /&gt;
For this, it hooks into a USB connection between host and any USB device for which to measure current draw and power consumption.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/FnirsiUSBLogger&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
mellinger@neurotechcenter.org&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* 2026/02/02: Initial public release&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9245&lt;br /&gt;
*Known to compile under: 9247&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
The FNB58 is an USB power meter and hooks into the USB connection between the host and a target USB device.&lt;br /&gt;
To the host, it appears as a HID USB device and can be read out without a dedicated driver, using the Windows HID library.&lt;br /&gt;
&lt;br /&gt;
The logger reads out the data provided and stores them in BCI2000 event states.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===LogFnirsiUSB===&lt;br /&gt;
This is the enabler parameter. Set it to 1 from the command line when starting the source module, or enable it in enabler list in BCI2000Launcher.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
===FnirsiUSB_Voltage===&lt;br /&gt;
The USB bus voltage, with an offset of 2^31, and a scale of 1e-5 V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Current===&lt;br /&gt;
The USB bus current, with an offset of 2^31, and in units of 1e-5 A.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Power===&lt;br /&gt;
The USB bus power, with an offset of 2^31, and in units of 1e-5 W.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_DataPlus, FnirsiUSB_DataMinus===&lt;br /&gt;
Voltages on the USB transmission lines, with an offset of 2^15, and in units of 1e-3V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Temperature===&lt;br /&gt;
Temperature as measured by the FNB58 device, with zero offset, in units of 0.1°C.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12441</id>
		<title>Contributions:FnirsiUSBLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12441"/>
		<updated>2026-05-13T16:03:07Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* FnirsiUSB_Current */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:FNB58.jpg |thumb| right | FNIRSI FNB58 USB Power Meter]]&lt;br /&gt;
&lt;br /&gt;
==Synopsis==&lt;br /&gt;
A logger that stores voltage, current, and temperature readings from an FNIRSI FNB58 USB Power Meter into BCI2000 states.&lt;br /&gt;
The FNB58 is able to measure voltage and current for USB-A, USB-C and Micro USB outlets in real time.&lt;br /&gt;
For this, it hooks into a USB connection between host and any USB device for which to measure current draw and power consumption.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/FnirsiUSBLogger&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
mellinger@neurotechcenter.org&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* 2026/02/02: Initial public release&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9245&lt;br /&gt;
*Known to compile under: 9247&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
The FNB58 is an USB power meter and hooks into the USB connection between the host and a target USB device.&lt;br /&gt;
To the host, it appears as a HID USB device and can be read out without a dedicated driver, using the Windows HID library.&lt;br /&gt;
&lt;br /&gt;
The logger reads out the data provided and stores them in BCI2000 event states.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===LogFnirsiUSB===&lt;br /&gt;
This is the enabler parameter. Set it to 1 from the command line when starting the source module, or enable it in enabler list in BCI2000Launcher.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
===FnirsiUSB_Voltage===&lt;br /&gt;
The USB bus voltage, with an offset of 2^31, and a scale of 1e-5 V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Current===&lt;br /&gt;
The USB bus current, with an offset of 2^31, and in units of 1e-5 A.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_DataPlus, FnirsiUSB_DataMinus===&lt;br /&gt;
Voltages on the USB transmission lines, in units of 1e-3V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Temperature===&lt;br /&gt;
Temperature as measured by the FNB58 device, in units of 0.1°C.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12440</id>
		<title>Contributions:FnirsiUSBLogger</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:FnirsiUSBLogger&amp;diff=12440"/>
		<updated>2026-05-13T16:02:46Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* FnirsiUSB_Voltage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:FNB58.jpg |thumb| right | FNIRSI FNB58 USB Power Meter]]&lt;br /&gt;
&lt;br /&gt;
==Synopsis==&lt;br /&gt;
A logger that stores voltage, current, and temperature readings from an FNIRSI FNB58 USB Power Meter into BCI2000 states.&lt;br /&gt;
The FNB58 is able to measure voltage and current for USB-A, USB-C and Micro USB outlets in real time.&lt;br /&gt;
For this, it hooks into a USB connection between host and any USB device for which to measure current draw and power consumption.&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
http://{{SERVERNAME}}/svn/trunk/src/contrib/Extensions/FnirsiUSBLogger&lt;br /&gt;
&lt;br /&gt;
==Versioning==&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
mellinger@neurotechcenter.org&lt;br /&gt;
&lt;br /&gt;
===Version History===&lt;br /&gt;
* 2026/02/02: Initial public release&lt;br /&gt;
&lt;br /&gt;
===Source Code Revisions===&lt;br /&gt;
*Initial development: 9245&lt;br /&gt;
*Known to compile under: 9247&lt;br /&gt;
*Broken since: --&lt;br /&gt;
&lt;br /&gt;
==Functional Description==&lt;br /&gt;
The FNB58 is an USB power meter and hooks into the USB connection between the host and a target USB device.&lt;br /&gt;
To the host, it appears as a HID USB device and can be read out without a dedicated driver, using the Windows HID library.&lt;br /&gt;
&lt;br /&gt;
The logger reads out the data provided and stores them in BCI2000 event states.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===LogFnirsiUSB===&lt;br /&gt;
This is the enabler parameter. Set it to 1 from the command line when starting the source module, or enable it in enabler list in BCI2000Launcher.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
===FnirsiUSB_Voltage===&lt;br /&gt;
The USB bus voltage, with an offset of 2^31, and a scale of 1e-5 V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Current===&lt;br /&gt;
The USB bus current, in units of 1e-5 A.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_DataPlus, FnirsiUSB_DataMinus===&lt;br /&gt;
Voltages on the USB transmission lines, in units of 1e-3V.&lt;br /&gt;
&lt;br /&gt;
===FnirsiUSB_Temperature===&lt;br /&gt;
Temperature as measured by the FNB58 device, in units of 0.1°C.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]][[Category:Extension]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12436</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12436"/>
		<updated>2026-05-12T16:45:11Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Example Batch File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Example Batch File==&lt;br /&gt;
The following example batch file starts up BCI2000 with the &#039;&#039;SignalGenerator&#039;&#039; source module, the &#039;&#039;DummySignalProcessing&#039;&#039; module, and the &#039;&#039;GuiltTask&#039;&#039; with the &#039;&#039;AVMeetingExtension&#039;&#039; enabled.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 #! ../prog/BCI2000Shell&lt;br /&gt;
@cls &amp;amp; ..\prog\BCI2000Shell %0 %* #! &amp;amp;&amp;amp; exit /b 0 || exit /b 1\n&lt;br /&gt;
&lt;br /&gt;
Change directory $BCI2000LAUNCHDIR&lt;br /&gt;
Show window; Set title ${Extract file base $0}&lt;br /&gt;
Reset system&lt;br /&gt;
Startup system localhost&lt;br /&gt;
Start executable SignalGenerator --local --LogKeyboard=1&lt;br /&gt;
Start executable DummySignalProcessing --local &lt;br /&gt;
Start executable GuiltTask --local --EnableAVMeeting=1 --Port=1234 --IPAddress=3.216.172.59 --SharedStates=isReadyStart0,8&amp;amp;isReadyStart1,8&amp;amp;ClientNumber,8&amp;amp;CompensationTrans,32&amp;amp;CompensationVictim,32&lt;br /&gt;
Wait for Connected&lt;br /&gt;
&lt;br /&gt;
Load parameterfile &amp;quot;../parms/GuiltTask/guiltTaskLocal.prm&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12435</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12435"/>
		<updated>2026-05-12T16:37:39Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Example Batch File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Example Batch File==&lt;br /&gt;
The following example batch file starts up BCI2000 with the &#039;&#039;SignalGenerator&#039;&#039; source module, the &#039;&#039;DummySignalProcessing&#039;&#039; module, and the &#039;&#039;GuiltTask&#039;&#039; with the &#039;&#039;AVMeetingExtension&#039;&#039; enabled.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 #! ../prog/BCI2000Shell&lt;br /&gt;
@cls &amp;amp; ..\prog\BCI2000Shell %0 %* #! &amp;amp;&amp;amp; exit /b 0 || exit /b 1\n&lt;br /&gt;
Change directory $BCI2000LAUNCHDIR&lt;br /&gt;
Show window; Set title ${Extract file base $0}&lt;br /&gt;
Reset system&lt;br /&gt;
Startup system localhost&lt;br /&gt;
Start executable SignalGenerator --local --LogKeyboard=1&lt;br /&gt;
Start executable DummySignalProcessing --local &lt;br /&gt;
Start executable GuiltTask --local --EnableAVMeeting=1 --Port=1234 --IPAddress=3.216.172.59 --SharedStates=isReadyStart0,8&amp;amp;isReadyStart1,8&amp;amp;ClientNumber,8&amp;amp;CompensationTrans,32&amp;amp;CompensationVictim,32&lt;br /&gt;
Wait for Connected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Load parameterfile &amp;quot;../parms/GuiltTask/guiltTaskLocal.prm&amp;quot;&lt;br /&gt;
&lt;br /&gt;
visualize watch ClientNumber&lt;br /&gt;
visualize watch isReadyStart0&lt;br /&gt;
visualize watch isReadyStart1&lt;br /&gt;
visualize watch CompensationTrans&lt;br /&gt;
visualize watch CompensationVictim&lt;br /&gt;
visualize watch PhaseNumber&lt;br /&gt;
visualize watch TrialNumber&lt;br /&gt;
visualize watch StimulusCode&lt;br /&gt;
visualize watch TrialType&lt;br /&gt;
visualize watch Photodiode&lt;br /&gt;
visualize watch FixationDuration&lt;br /&gt;
visualize watch ResponseValue&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12434</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12434"/>
		<updated>2026-05-12T16:37:01Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Example Batch File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Example Batch File==&lt;br /&gt;
The following example batch file starts up BCI2000 with the &#039;&#039;SignalGenerator&#039;&#039; source module, the &#039;&#039;DummySignalProcessing&#039;&#039; module, and the &#039;&#039;GuiltTask&#039;&#039; with the &#039;&#039;AVMeetingExtension&#039;&#039; enabled.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 #! ../prog/BCI2000Shell&lt;br /&gt;
@cls &amp;amp; ..\prog\BCI2000Shell %0 %* #! &amp;amp;&amp;amp; exit /b 0 || exit /b 1\n&lt;br /&gt;
Change directory $BCI2000LAUNCHDIR&lt;br /&gt;
Show window; Set title ${Extract file base $0}&lt;br /&gt;
Reset system&lt;br /&gt;
Startup system localhost&lt;br /&gt;
Start executable SignalGenerator --local --LogKeyboard=1&lt;br /&gt;
Start executable DummySignalProcessing --local &lt;br /&gt;
Start executable GuiltTask --local --Port=1234 --IPAddress=3.216.172.59 --SharedStates=isReadyStart0,8&amp;amp;isReadyStart1,8&amp;amp;ClientNumber,8&amp;amp;CompensationTrans,32&amp;amp;CompensationVictim,32&lt;br /&gt;
Wait for Connected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Load parameterfile &amp;quot;../parms/GuiltTask/guiltTaskLocal.prm&amp;quot;&lt;br /&gt;
&lt;br /&gt;
visualize watch ClientNumber&lt;br /&gt;
visualize watch isReadyStart0&lt;br /&gt;
visualize watch isReadyStart1&lt;br /&gt;
visualize watch CompensationTrans&lt;br /&gt;
visualize watch CompensationVictim&lt;br /&gt;
visualize watch PhaseNumber&lt;br /&gt;
visualize watch TrialNumber&lt;br /&gt;
visualize watch StimulusCode&lt;br /&gt;
visualize watch TrialType&lt;br /&gt;
visualize watch Photodiode&lt;br /&gt;
visualize watch FixationDuration&lt;br /&gt;
visualize watch ResponseValue&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12433</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12433"/>
		<updated>2026-05-12T16:28:14Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* Parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Example Batch File==&lt;br /&gt;
The following example batch file starts up BCI2000 with the &#039;&#039;SignalGenerator&#039;&#039; source module, the &#039;&#039;DummySignalProcessing&#039;&#039; module, and the &#039;&#039;GuiltTask&#039;&#039; with the &#039;&#039;AVMeetingExtension&#039;&#039; enabled.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12432</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12432"/>
		<updated>2026-05-12T16:25:05Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SimpleRelayServer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
	<entry>
		<id>https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12431</id>
		<title>Contributions:AVMeetingExtension</title>
		<link rel="alternate" type="text/html" href="https://www.bci2000.org/mediawiki/index.php?title=Contributions:AVMeetingExtension&amp;diff=12431"/>
		<updated>2026-05-12T16:24:43Z</updated>

		<summary type="html">&lt;p&gt;Mellinger: /* SimpleRelayServer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Synopsis==&lt;br /&gt;
This extension displays video from a remote location, plus local video in a user application window.&lt;br /&gt;
It works in conjunction with the &#039;&#039;SimpleRelayServer&#039;&#039; application running within a local network, or on the internet.&lt;br /&gt;
Audio may be transferred in one direction as well. Bidirectional audio is possible but will lead to feedback unless earphones are used.&lt;br /&gt;
&lt;br /&gt;
===Authors===&lt;br /&gt;
Jürgen Mellinger (mellinger@neurotechcenter.org)&lt;br /&gt;
&lt;br /&gt;
==SimpleRelayServer==&lt;br /&gt;
To allow connection between machines which are located at different locations, and possibly in different local networks,&lt;br /&gt;
it is necessary to use a bridge that is accessible to both machines.&lt;br /&gt;
AVMeetingExtension is designed to use a relay server for this bridge.&lt;br /&gt;
In order to bridge different local networks, the relay server must be located somewhere in the open internet, on a Linux server under the experimenter&#039;s control.&lt;br /&gt;
&lt;br /&gt;
Follow these steps to build and run the necessary &#039;&#039;SimpleRelayServer&#039;&#039; executable on a Linux machine:&lt;br /&gt;
* Download &amp;lt;tt&amp;gt;SimpleRelayServer.cpp&amp;lt;/tt&amp;gt; from&lt;br /&gt;
https://bci2000.org/svn/trunk/src/contrib/Extensions/AVMeetingExtension/SimpleRelayServer/SimpleRelayServer.cpp&lt;br /&gt;
* cd to the download&#039;s directory and execute&lt;br /&gt;
 g++ SimpleRelayServer.cpp -o SimpleRelayServer&lt;br /&gt;
* Start the server with&lt;br /&gt;
 ./SimpleRelayServer 2&amp;gt;/dev/null&lt;br /&gt;
or just&lt;br /&gt;
 ./SimpleRelayServer &lt;br /&gt;
if you want to see log messages on the console.&lt;br /&gt;
By default, the server process will listen on all of the machine&#039;s interfaces, at port 1915.&lt;br /&gt;
A different port may be specified by providing a command line argument:&lt;br /&gt;
 ./SimpleRelayServer 1928 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
For testing purposes, BCI2000 provides a SimpleRelayServer instance at &amp;lt;tt&amp;gt;upload.bci2000.org:1915&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
===EnableAVMeeting===&lt;br /&gt;
If nonzero, enables the AVMeeting extension.&lt;br /&gt;
&lt;br /&gt;
===StreamingServer=== &lt;br /&gt;
The streaming server&#039;s address with port, as in &#039;&#039;upload.bci2000.org:1915&#039;&#039;. This must match the &#039;&#039;SimpleRelayServer&#039;s&#039;&#039; listening address.&lt;br /&gt;
For testing purposes, an instance of the streaming server is running at the BCI2000 server&#039;s address given above.&lt;br /&gt;
&lt;br /&gt;
===CameraIndex===&lt;br /&gt;
The local camera&#039;s 0-based index into the video backend&#039;s list of detected cameras. Typically 0 unless multiple cameras are attached.&lt;br /&gt;
A value of -1 disables video streaming.&lt;br /&gt;
&lt;br /&gt;
===AudioDeviceIndex===&lt;br /&gt;
The local audio input device&#039;s 0-based index into the audio backend&#039;s list of detected audio devices.&lt;br /&gt;
Specify -1 to disable audio streaming from the local machine.&lt;br /&gt;
&lt;br /&gt;
===VideoEncoder===&lt;br /&gt;
The name of the desired video encoder to use, e.g. h264_mf or libx264.&lt;br /&gt;
Specify &#039;&#039;auto&#039;&#039; to use h264_mf on Windows, and libx264 on non-Windows systems.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoRect===&lt;br /&gt;
The display rectangle for remote video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0 0 1 1&amp;lt;/tt&amp;gt;, i.e. the entire window.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoZ===&lt;br /&gt;
The remote video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
===RemoteVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, remote video is displayed.&lt;br /&gt;
Otherwise, remote video is hidden.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoRect===&lt;br /&gt;
The display rectangle for local video, in relative coordinates. Values are &#039;&#039;left&#039;&#039;, &#039;&#039;top&#039;&#039;, &#039;&#039;bottom&#039;&#039;, &#039;&#039;right&#039;&#039;. Defaults to &amp;lt;tt&amp;gt;0.75 0 1 0.25&amp;lt;/tt&amp;gt;, i.e. the upper right corner of the display window.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoZ===&lt;br /&gt;
The local video display&#039;s Z coordinate. Objects with a smaller Z coordinate are displayed on top objects with larger Z coordinates.&lt;br /&gt;
&lt;br /&gt;
Note that by default the local video rectangle overlaps with the remote video rectangle, and local video is on top of the remote.&lt;br /&gt;
&lt;br /&gt;
===LocalVideoVisibility===&lt;br /&gt;
A BCI2000 expression which may entail BCI2000 state names. Whenever this expression evaluates to a nonzero value, local video is displayed.&lt;br /&gt;
Otherwise, local video is hidden.&lt;br /&gt;
&lt;br /&gt;
==States==&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalTotalFrames===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteTotalFrames===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current recording (BCI2000 run).&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingLocalFrame===&lt;br /&gt;
A 32-bit state holding the current local frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
===VideoStreamingRemoteFrame===&lt;br /&gt;
A 32-bit state holding the current remote frame number since the beginning of the current file.&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
Both local and remote video is being recorded into files in mp4 format.&lt;br /&gt;
These files bear the current BCI2000 file&#039;s basename, followed with &amp;lt;tt&amp;gt;_VideoStreamingLocal&amp;lt;/tt&amp;gt; and&lt;br /&gt;
&amp;lt;tt&amp;gt;_VideoStreamingRemote&amp;lt;/tt&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Seeking to individual frames is not possible for mp4 files unless frame time stamps exactly match the frame rate specified at the beginning of the file. To work around this, video files are created with the camera&#039;s nominal frame rate, and artificial time stamps proportional to frame number are used when writing frames to a file.&lt;br /&gt;
In analysis, it will be possible to reconstruct actual time stamps using one of the frame count states.&lt;br /&gt;
&lt;br /&gt;
However, replaying mp4 files written by the &#039;&#039;AVMeetingExtension&#039;&#039; with a standard video player may not result in proper playback speed.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[Contributions:Extensions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributions]]&lt;/div&gt;</summary>
		<author><name>Mellinger</name></author>
	</entry>
</feed>