diff --git a/.MATLABDriveTag b/.MATLABDriveTag
deleted file mode 100644
index 84059a2..0000000
--- a/.MATLABDriveTag
+++ /dev/null
@@ -1 +0,0 @@
-3496f669-9381-4974-bb7c-5cc1ddcb05d4
\ No newline at end of file
diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml
index 7f6c3ba..9b5a851 100644
--- a/.github/workflows/build-package.yml
+++ b/.github/workflows/build-package.yml
@@ -22,7 +22,7 @@ jobs:
- name: Zip code to distribute
run: |
- zip -r "pgmatlab-${{ github.event.release.tag_name }}.zip" src/* LICENSE README.md
+ zip -r "pgmatlab-${{ github.event.release.tag_name }}.zip" pgmatlab/* LICENSE README.md
- name: Upload code to distribute
uses: actions/upload-artifact@v4
diff --git a/.github/workflows/build-toolbox.yml b/.github/workflows/build-toolbox.yml
new file mode 100644
index 0000000..82066ca
--- /dev/null
+++ b/.github/workflows/build-toolbox.yml
@@ -0,0 +1,35 @@
+name: Build MATLAB Toolbox
+
+on:
+ release:
+ types: [published]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Set MATLAB version
+ uses: matlab-actions/setup-matlab@v2.1.2
+ with:
+ release: 'R2025a'
+
+ - name: Determine toolbox version
+ id: version
+ run: |
+ # Remove leading 'v' from git tag
+ echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
+
+ - name: Build toolbox
+ run: |
+ matlab -batch "
+ opts = matlab.addons.toolbox.ToolboxOptions('pgmatlab_toolbox.prj');
+ opts.ToolboxVersion = getenv('VERSION');
+ matlab.addons.toolbox.packageToolbox(opts, sprintf('pgmatlab_%s.mltbx', getenv('VERSION')));"
+
+ - name: Attach to GitHub release
+ uses: softprops/action-gh-release@v2
+ with:
+ files: "pgmatlab_*.mltbx"
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index e77c42a..e511779 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@ pgmatlab/Array/.MATLABDriveTag
.MATLABDriveTag
pgmatlab/.MATLABDriveTag
pgmatlab/Array/.MATLABDriveTag
+*.mltbx
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..4c6c6ee
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,237 @@
+# Contributing Guidelines
+
+PAMGuardMatlab is an open-source project. Whilst out license does not require it, we welcome you to contribute any changes you make back to the original repository.
+
+## Getting Started
+
+If you're planning on making contributions to PAMGuardMatlab, we highly recommend that you fork the repository, and then clone it into your machine. In the MATLAB editor, on the left sidebar, click on the 'Project' button then select [pgmatlab.prj](pgmatlab.prj) in the root of your cloned repository. This will automatically set-up the development environment, including the MATLAB path.
+
+## Testing
+
+There is a comprehensive testing suite located in the [tests](tests) folder. To run these tests, run the following commands.
+
+```commandline
+cd tests;
+runtests;
+```
+
+If you add new functionality to PAMGuardMatlab, please ensure you write appropriate unit tests in the testing suite.
+
+> If you find that the changes you have made are failing existing tests (due to an existing bug in the program or the testing suite), you are welcome to change the testing suite.
+
+## Making a Pull Request
+
+Once you are satisfied with your tested changes, you should make a pull request, linking an issue and with a detailed commit history (if there is one), changelog, and details and any new tests written.
+
+The GitHub repository will automatically run the unit tests in MacOS, Linux, and Windows - and you can see this by viewing your pull request.
+
+## Creating a New Release
+
+Stable code is maintained through new releases. This allows users to download a lightweight copy of the code without development tools such as tests.
+
+Upon the creation of a release, the following CI action is executed (allow 30-60 seconds for this to complete):
+
+- The user-facing code (README.md, LICENCE, pgmatlab/*) is put in an archive and attached to the release.
+
+Releases should be semantically named and tagged like so. These tags are dynamically inserted in the tarball and wheel uploaded to PyPI.
+
+- V1.2.3
+ - Tag: v1.2.3
+- V1.2.3 Beta 1
+ - Tag: v1.2.3-b1
+- V1.2.3 Alpha 1
+ - Tag: v1.2.3-a1
+
+## Structure
+
+All the source code is found in the [pgmatlab/+pgmatlab](pgmatlab/+pgmatlab/) folder.
+
+Folders use the plus (+) prefix to be treated as a 'package' (where [+pgmatlab](pgmatlab/+pgmatlab/) is the root). By adding [pgmatlab/](pgmatlab/) only the namespace `pgmatlab` is added to the MATLAB path. All classes and functions are accessible through sub-packages, such as: `pgmatlab.utils.millisToDateNum()`. We have temporarily kept three legacy entry points in the root source code folder to allow existing users to continue using the updated code.
+
+PAMGuardMatlab has three main sub-packages:
+
+1. [+core](pgmatlab/+pgmatlab/+core/): contains classes for reading chunks from data files.
+
+2. [+db](pgmatlab/+pgmatlab/+db/): contains functions for interacting with the database (legacy).
+
+3. [+utils](pgmatlab/+pgmatlab/+utils/): contains functions
+for utilities used by the rest of the library.
+
+## Adding New Modules
+
+The object-oriented structure of PAMGuardMatlab allows you to easily create new modules by extending the base classes. This section provides templates and instructions for creating new module types.
+
+### Creating a New Module Class
+
+To create a new module, you need to extend the `StandardModule` class and implement the required abstract methods.
+
+#### Template for a New Module
+
+Create a new file in `pgmatlab/+pgmatlab/+core/+modules/` with the following template:
+
+```matlab
+classdef YourModuleName < pgmatlab.core.standard.StandardModule
+ properties (Access = public)
+ objectType = 'Your Object Type'; % Set this to match PAMGuard's object type
+ end
+
+ methods
+ function obj = YourModuleName()
+ % Constructor - set custom header/footer classes if needed
+ obj.header = @pgmatlab.core.standard.StandardModuleHeader;
+ obj.footer = @pgmatlab.core.standard.StandardModuleFooter;
+ obj.background = -1; % Set to a background class if needed
+ end
+
+ function [data, selState] = readImpl(obj, fid, data, fileInfo, length, identifier, selState)
+ % Read module-specific data from the binary file
+ % This is where you implement the actual data reading logic
+
+ % Example: Read some custom fields
+ data.customField1 = fread(fid, 1, 'int32');
+ data.customField2 = fread(fid, 1, 'double');
+
+ % Additional processing can be done here
+
+ % Return selState (1 = keep, 0 = skip, 2 = stop if sorted)
+ selState = 1;
+ end
+
+ function [data, selState] = readBackgroundImpl(obj, fid, data, fileInfo, length, identifier, selState)
+ % Optional: Implement background data reading if your module has background data
+ % Leave empty if no background data
+ end
+ end
+end
+```
+
+#### Creating Custom Header Classes
+
+If your module requires a custom header format, create a class extending `StandardModuleHeader`:
+
+```matlab
+classdef YourModuleHeader < pgmatlab.core.standard.StandardModuleHeader
+ methods
+ function data = readImpl(obj, fid, data, fileInfo, length, identifier)
+ % Call parent implementation first
+ data = readImpl@pgmatlab.core.standard.StandardModuleHeader(obj, fid, data, fileInfo, length, identifier);
+
+ % Read custom header fields
+ data.customHeaderField = fread(fid, 1, 'int32');
+
+ % Process additional header data as needed
+ end
+ end
+end
+```
+
+#### Creating Custom Footer Classes
+
+Similarly, for custom footers, extend `StandardModuleFooter`:
+
+```matlab
+classdef YourModuleFooter < pgmatlab.core.standard.StandardModuleFooter
+ methods
+ function data = readImpl(obj, fid, data, fileInfo, length, identifier)
+ % Call parent implementation first
+ data = readImpl@pgmatlab.core.standard.StandardModuleFooter(obj, fid, data, fileInfo, length, identifier);
+
+ % Read custom footer fields
+ data.customFooterField = fread(fid, 1, 'int32');
+ end
+ end
+end
+```
+
+#### Creating Custom Background Classes
+
+For modules with background data, extend `StandardBackground`:
+
+```matlab
+classdef YourModuleBackground < pgmatlab.core.standard.StandardBackground
+ properties (Access = public)
+ objectType = 'Your Background Object Type';
+ end
+
+ methods
+ function [data, selState] = readImpl(obj, fid, data, fileInfo, length, identifier, selState)
+ % Read background-specific data
+ data.backgroundField1 = fread(fid, 1, 'double');
+ data.backgroundField2 = fread(fid, [1, 10], 'int16');
+
+ selState = 1;
+ end
+ end
+end
+```
+
+### Registering Your Module
+
+After creating your module class, you need to register it in the main loading function. Add your module to the switch statement in `loadPamguardBinaryFile.m`:
+
+```matlab
+% In the file header case (-1) switch statement:
+case 'Your Module Type'
+ switch fileInfo.fileHeader.streamName
+ case 'Your Stream Name'
+ moduleObj = pgmatlab.core.modules.YourModuleName();
+ % Add additional stream cases if needed
+ end
+```
+
+The module type should match the string used by PAMGuard's module (found in the Java code), and the stream name should match the data stream name used by your PAMGuard module.
+
+### Testing Your Module
+
+1. Create test data using your PAMGuard module
+2. Add test cases to the appropriate test file in the `tests/` folder
+3. Run the tests to ensure your module loads data correctly:
+
+```matlab
+cd tests;
+runtests('YourModuleTest');
+```
+
+### Example: Complete Module Implementation
+
+Here's a complete example of a simple module:
+
+```matlab
+classdef ExampleModule < pgmatlab.core.standard.StandardModule
+ properties (Access = public)
+ objectType = 'Example Detection';
+ end
+
+ methods
+ function obj = ExampleModule()
+ obj.header = @pgmatlab.core.standard.StandardModuleHeader;
+ obj.footer = @pgmatlab.core.standard.StandardModuleFooter;
+ obj.background = -1;
+ end
+
+ function [data, selState] = readImpl(obj, fid, data, fileInfo, length, identifier, selState)
+ % Read example-specific fields
+ data.detectionType = fread(fid, 1, 'int32');
+ data.confidence = fread(fid, 1, 'double');
+ data.frequency = fread(fid, 1, 'double');
+
+ % Validate data
+ if data.confidence < 0 || data.confidence > 1
+ warning('Invalid confidence value: %f', data.confidence);
+ end
+
+ selState = 1;
+ end
+ end
+end
+```
+
+Then register it in `loadPamguardBinaryFile.m`:
+
+```matlab
+case 'Example Detector'
+ switch fileInfo.fileHeader.streamName
+ case 'Example Detections'
+ moduleObj = pgmatlab.core.modules.ExampleModule();
+ end
+```
\ No newline at end of file
diff --git a/README.md b/README.md
index 923e2bb..679d664 100644
--- a/README.md
+++ b/README.md
@@ -2,119 +2,231 @@
[](https://doi.org/10.5281/zenodo.16979862)
-PAMGuard binary files contains detections such as clicks, whistle contours, deep learning detections, noise, long term spectral averages etc. Binary files provide an efficient and very fast data management system but are not human readable. The `PAMGuard-MATLAB` library is a set of functions that allows the importing of PAMGuard binary files directly into MATLAB.
+A MATLAB library for loading PAMGuard binary files containing acoustic detection data including clicks, whistle contours, deep learning detections, noise measurements, and spectral data. PAMGuard binary files provide efficient data storage and fast access, but are not human-readable. This library allows you to import PAMGuard binary data directly into MATLAB.
-### Installation
+## Installation
-`PAMGuard-MATLAB` needs to be downloaded from here (or via a git client e.g. the integrated one in MATLAB) and added to you MATLAB path
-
-### Tutorial
-
-The core function of this library is `loadPamguardBinaryFile`. This loads any PAMGuard binary file, automatically figures out what type of data it contains and then imports the data into a struct with relevant field names. Usage is straightforward, simply point the function to the correct file.
+1. Go to [GitHub Releases](https://github.com/PAMGuard/PAMGuardMatlab/releases)
+2. Download the latest `pgmatlab-{version}.zip` file
+3. Extract the ZIP file to your desired location
+4. Add the extracted `pgmatlab` folder to your MATLAB path:
```matlab
-binaryfile= './Files/SomeBinaryFile.pgdf'
-[binarydata, fileinfo]= loadPamguardBinaryFile(myBinaryFile)
+addpath('path/to/extracted/pgmatlab');
```
-`fileinfo` contains information about the binary file e.g. when it was created, what version of PAMGuard was used to process the data. `binarydata` is a struct with relevant field names. Some of these field names are consistent across different types of detections e.g. millis, date, UID and others are unique to the particular detection.
+## Quick Start
-An example of the fields from a click detection are:
+Load a single binary file:
-**millis:** the start time of the click in milliseconds; this number can be
-converted to a date/time with millisecond accuracy.
+```matlab
+[data, fileInfo] = loadPamguardBinaryFile('path/to/file.pgdf');
+```
-**date:** the start time of the click in MATLAB datenum format. Use datastr(date)
-to show a time string.
+Load multiple files from a folder:
-**UID:** a unique serial number for the
-detection. Within a processed dataset no other detection will have this number.
+```matlab
+data = loadPamguardBinaryFolder('path/to/folder', '*.pgdf');
+```
-**startSample:** The first sample of this click- often used for
-finer scale time delay measurements. Samples refers to the number of samples in
-total the sound card has taken since processing begun.
+Load specific data points across multiple files:
-**channelMap:** The channel map for this click. One number which
-represents which channels this click detection is from: To get the true
-channels use the *getChannels(channelMap)* function.
+```matlab
+fileNames = {'file1.pgdf', 'file2.pgdf'};
+uids = [500001, 500002];
+eventData = loadPamguardMultiFile('path/to/folder', fileNames, uids);
+```
-**triggerMap:** which channel triggered the detection.
+## Core Functions
-**type:** Classification type. Must use database or settings to see what species
-this refers to.
+### `loadPamguardBinaryFile`
-**duration:** Duration of this click detection in samples.
+The primary function for loading individual PAMGuard binary files. Automatically detects the data type and imports it into a structured format.
-**nChan:** Number of channels the
-detection was made on.
+**Syntax:**
+```matlab
+[data, fileInfo, selState] = loadPamguardBinaryFile(filename, ...)
+[data, fileInfo] = loadPamguardBinaryFile(filename, ...)
+data = loadPamguardBinaryFile(filename, ...)
+```
-**wave:** Waveform data for each channel.
+**Parameters:**
+- `filename` - Path to the binary file
+- Optional name-value pairs:
+ - `'timerange', [startTime, endTime]` - Load data within time range
+ - `'uidrange', [startUID, endUID]` - Load data within UID range
+ - `'uidlist', [uid1, uid2, ...]` - Load specific UIDs
+ - `'channel', channelMap` - Load data from specific channels
+ - `'filter', @filterFunction` - Apply custom filter function
+ - `'sorted', true/false` - Optimize for sorted data (default: false)
-There are a few additional options for `loadPamguardBinaryFile`.
+**Examples:**
-Time ranges to load can be defined.
+Load entire file:
+```matlab
+[data, fileInfo] = loadPamguardBinaryFile('detections.pgdf');
+```
+Load specific time range:
```matlab
-timerange = [datenum('2020-03-19 20:00:00', 'yyyy-mm-dd HH:MM:SS'),...
- datenum('2020-03-19 21:00:00', 'yyyy-mm-dd HH:MM:SS')];
-[binarydata, fileinfo]= loadPamguardBinaryFile(myBinaryFile, 'timerange', timerange)
+startTime = datenum(2023,1,15,10,0,0);
+endTime = datenum(2023,1,15,11,0,0);
+[data, fileInfo] = loadPamguardBinaryFile('detections.pgdf', ...
+ 'timerange', [startTime, endTime], 'sorted', true);
```
-UID's are unique serial numbers for each detection. They are sequential and users can define values to load via.
+Load specific UIDs:
+```matlab
+[data, fileInfo] = loadPamguardBinaryFile('detections.pgdf', ...
+ 'uidlist', [500001, 500005, 500010]);
+```
+Apply custom filter:
```matlab
-uids = 3456:8679;
-[binarydata, fileinfo]= loadPamguardBinaryFile(myBinaryFile, 'uidlist', uids)
+function keep = myFilter(detection)
+ keep = detection.amplitude > 0.5; % Keep high amplitude detections
+end
+
+[data, fileInfo] = loadPamguardBinaryFile('detections.pgdf', ...
+ 'filter', @myFilter);
```
-Some files can have multiple channel groups. Each channel group can contain one or more channels of data. To load detections with a specific channel map use.
+### `loadPamguardBinaryFolder`
+
+Load multiple binary files from a folder using file pattern matching.
+**Syntax:**
```matlab
-channel = 3; %channel map
-[binarydata, fileinfo]= loadPamguardBinaryFile(myBinaryFile, 'channel', channel)
+[allData, allBackground, fileInfos] = loadPamguardBinaryFolder(dir, fileMask, verbose, filterfun, ...)
+[allData, allBackground] = loadPamguardBinaryFolder(dir, fileMask, verbose, filterfun, ...)
+allData = loadPamguardBinaryFolder(dir, fileMask, verbose, filterfun, ...)
```
-If you don't know the bitmap then you can create it using a list of channels via
+**Parameters:**
+- `dir` - Directory containing binary files
+- `fileMask` - File pattern (e.g., '*.pgdf', 'WhistlesMoans_*.pgdf')
+- `verbose` - Progress logging interval (0 = no logging)
+- `filterfun` - Filter function or 0 for no filtering
+- Additional name-value pairs as in `loadPamguardBinaryFile`
+
+**Examples:**
+Load all click detections:
```matlab
-function [channelMap] = makeChannelList(channels)
-%MAKECHANNELLIST Make a channel bitmap from list.
-% [CHANNELMAP] = MAKECHANNELLIST(CHANNELS) makes a channel bitmap from a
-% list of channels. Noted channel numbers are from zero, not one.
+clickData = loadPamguardBinaryFolder('./Data', 'Click_*.pgdf', 1, 0);
+```
-channelMap=0;
-for i=1:length(channels)
- channelMap = channelMap + bitsll(1,channels(i));
-end
+Load whistle data with filtering:
+```matlab
+whistleData = loadPamguardBinaryFolder('./Data', 'WhistlesMoans_*.pgdf', ...
+ 0, @myFilter, 'channel', 1);
+```
+
+### `loadPamguardMultiFile`
+
+Load specific data points from multiple files, useful for event-based analysis.
+
+**Syntax:**
+```matlab
+eventData = loadPamguardMultiFile(dir, fileNames, UIDs, verbose)
```
-Finally, there is an option to define a custom filter for data using
+**Parameters:**
+- `dir` - Directory containing the files
+- `fileNames` - Cell array of filenames
+- `UIDs` - Array of UIDs to load (parallel to fileNames)
+- `verbose` - Progress logging (optional, default: 0)
+
+**Example:**
+Load specific detections from multiple files:
```matlab
-myfilter = @myfilterfunction;
+files = {'clicks_20230115_100000.pgdf', 'clicks_20230115_110000.pgdf'};
+uids = [500001, 500123];
+eventData = loadPamguardMultiFile('./Data', files, uids, 1);
+```
+
+## Utility Functions
-[binarydata, fileinfo]= loadPamguardBinaryFile(myBinaryFile, 'filter', myfilter);
+### Channel Map Functions
-function [passed] = myfilterfunction(dataunit)
- passed=false;
- if (length(dataunit.wave)>100)
- passed =true;
+Convert channel lists to bitmaps:
+```matlab
+function channelMap = makeChannelMap(channels)
+ channelMap = 0;
+ for i = 1:length(channels)
+ channelMap = channelMap + bitshift(1, channels(i));
end
end
```
-### Load a folder of data
+Extract channels from bitmap:
+```matlab
+channels = getChannels(channelMap);
+```
-There is a convenience function to load a folder of binary files. Folders contain a mix of data from different detections in PAMGuard and so the load folder function requires a `filemask` input to define which type of data to import. Below shows an example to load a folder of whistle contours.
+### Time Conversion
+Convert milliseconds to MATLAB datenum:
```matlab
-binaryfolder= './Files/SomeBinaryFolder'
-filemask='WhistlesMoans_*.pgdf';
-whistles = loadPAMGuardBinaryFolder(binaryfolder,filemask);
+matlabTime = pgmatlab.utils.millisToDateNum(milliseconds);
```
-To load different types of detections change the `filemask` variable to a filename identifier that is unique to the detection type.
+## Supported Modules
+
+PAMGuardMatlab supports the following PAMGuard modules:
+
+**Detectors:**
+- Click Detector
+- Whistle and Moan Detector
+- GPL Detector
+- Right Whale Edge Detector
+
+**Classifiers:**
+- Deep Learning Classifier
+
+**Processing Modules:**
+- AIS Processing
+- Clip Generator
+- DIFAR Processing
+- Long Term Spectral Average (LTSA)
+- Noise Band Monitor
+- Noise Monitor
-### Compatibility
+**Plugins:**
+- Sperm Whale IPI
+- Gemini Threshold Detector
-PAMGuard-MATLAB should be compatible with Pamguard v2.00.15 and earlier.
+## Performance Tips
+
+1. **Use sorted flag** when loading time/UID ranges from chronologically ordered files
+2. **Specify file masks** when loading folders to avoid processing unnecessary files
+3. **Use filters** to reduce memory usage for large datasets
+4. **Load specific channels** rather than all channels when possible
+
+## Compatibility
+
+- Compatible with PAMGuard v2.00.15 and later
+- Requires MATLAB R2016b or later
+- Supports Windows, macOS, and Linux
+
+## Contributing
+
+Contributions are welcome! See [contributing.md](contributing.md) for development guidelines, including:
+
+- How to set up the development environment
+- Testing procedures
+- How to add support for new PAMGuard modules
+- Pull request guidelines
+
+## License
+
+See [LICENSE](LICENSE) file for details.
+
+## Citation
+
+If you use PAMGuardMatlab in your research, please cite:
+
+```
+PAMGuardMatlab (2024). Zenodo. DOI: 10.5281/zenodo.16979862
+```
\ No newline at end of file
diff --git a/pgmatlab.prj b/pgmatlab.prj
new file mode 100644
index 0000000..6b95f98
--- /dev/null
+++ b/pgmatlab.prj
@@ -0,0 +1,2 @@
+
+
diff --git a/src/+pgmatlab/+core/+annotations/@BeamFormer/BeamFormer.m b/pgmatlab/+pgmatlab/+core/+annotations/@BeamFormer/BeamFormer.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@BeamFormer/BeamFormer.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@BeamFormer/BeamFormer.m
diff --git a/src/+pgmatlab/+core/+annotations/@Bearing/Bearing.m b/pgmatlab/+pgmatlab/+core/+annotations/@Bearing/Bearing.m
similarity index 91%
rename from src/+pgmatlab/+core/+annotations/@Bearing/Bearing.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@Bearing/Bearing.m
index 4f3613f..b7f4470 100644
--- a/src/+pgmatlab/+core/+annotations/@Bearing/Bearing.m
+++ b/pgmatlab/+pgmatlab/+core/+annotations/@Bearing/Bearing.m
@@ -6,7 +6,7 @@
[data, selState] = read@pgmatlab.core.standard.StandardAnnotation(obj, fid, data, fileInfo, anLength, anVersion);
data.algorithmName = pgmatlab.utils.readJavaUTFString(fid);
- data.version = annotationVersion;
+ data.version = anVersion;
data.hydrophones = fread(fid, 1, 'uint32');
data.arrayType = fread(fid, 1, 'int16');
data.localisationContent = fread( fid, 1, 'uint32');
@@ -14,7 +14,7 @@
data.angles = fread(fid, data.nAngles, 'float32');
data.nErrors = fread(fid, 1, 'int16');
data.errors = fread(fid, data.nErrors, 'float32');
- if (annotationVersion >= 2)
+ if (anVersion >= 2)
nAng = fread(fid, 1, 'int16');
data.refAngles = fread(fid, nAng, 'float32')
end
diff --git a/src/+pgmatlab/+core/+annotations/@ClickClsFr/ClickClsFr.m b/pgmatlab/+pgmatlab/+core/+annotations/@ClickClsFr/ClickClsFr.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@ClickClsFr/ClickClsFr.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@ClickClsFr/ClickClsFr.m
diff --git a/src/+pgmatlab/+core/+annotations/@DL/DL.m b/pgmatlab/+pgmatlab/+core/+annotations/@DL/DL.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@DL/DL.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@DL/DL.m
diff --git a/src/+pgmatlab/+core/+annotations/@MatchCls/MatchCls.m b/pgmatlab/+pgmatlab/+core/+annotations/@MatchCls/MatchCls.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@MatchCls/MatchCls.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@MatchCls/MatchCls.m
diff --git a/src/+pgmatlab/+core/+annotations/@RWUDP/RWUDP.m b/pgmatlab/+pgmatlab/+core/+annotations/@RWUDP/RWUDP.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@RWUDP/RWUDP.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@RWUDP/RWUDP.m
diff --git a/src/+pgmatlab/+core/+annotations/@TDBL/TDBL.m b/pgmatlab/+pgmatlab/+core/+annotations/@TDBL/TDBL.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@TDBL/TDBL.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@TDBL/TDBL.m
diff --git a/src/+pgmatlab/+core/+annotations/@TM/TM.m b/pgmatlab/+pgmatlab/+core/+annotations/@TM/TM.m
similarity index 100%
rename from src/+pgmatlab/+core/+annotations/@TM/TM.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@TM/TM.m
diff --git a/src/+pgmatlab/+core/+annotations/@UserForm/UserForm.m b/pgmatlab/+pgmatlab/+core/+annotations/@UserForm/UserForm.m
similarity index 75%
rename from src/+pgmatlab/+core/+annotations/@UserForm/UserForm.m
rename to pgmatlab/+pgmatlab/+core/+annotations/@UserForm/UserForm.m
index 9debea0..c593c55 100644
--- a/src/+pgmatlab/+core/+annotations/@UserForm/UserForm.m
+++ b/pgmatlab/+pgmatlab/+core/+annotations/@UserForm/UserForm.m
@@ -5,9 +5,9 @@
[data, selState] = read@pgmatlab.core.standard.StandardAnnotation(obj, fid, data, fileInfo, anLength, anVersion);
% this is not quite right...
- txtLen = anLength-length(anId)-2-2;
- data = fread(fid, txtLen, 'char')';
- data = char(data);
+ % txtLen = anLength-length(anId)-2-2;
+ % data = fread(fid, txtLen, 'char')';
+ % data = char(data);
end
end
end
diff --git a/src/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierDetections/DeepLearningClassifierDetections.m b/pgmatlab/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierDetections/DeepLearningClassifierDetections.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierDetections/DeepLearningClassifierDetections.m
rename to pgmatlab/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierDetections/DeepLearningClassifierDetections.m
diff --git a/src/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierModels/DeepLearningClassifierModels.m b/pgmatlab/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierModels/DeepLearningClassifierModels.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierModels/DeepLearningClassifierModels.m
rename to pgmatlab/+pgmatlab/+core/+modules/+classifiers/@DeepLearningClassifierModels/DeepLearningClassifierModels.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@Click/Click.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@Click/Click.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@Click/Click.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@Click/Click.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@ClickBackground/ClickBackground.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickBackground/ClickBackground.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@ClickBackground/ClickBackground.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickBackground/ClickBackground.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@ClickFooter/ClickFooter.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickFooter/ClickFooter.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@ClickFooter/ClickFooter.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickFooter/ClickFooter.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@ClickTrigger/ClickTrigger.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickTrigger/ClickTrigger.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@ClickTrigger/ClickTrigger.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickTrigger/ClickTrigger.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@ClickTriggerHeader/ClickTriggerHeader.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickTriggerHeader/ClickTriggerHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@ClickTriggerHeader/ClickTriggerHeader.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@ClickTriggerHeader/ClickTriggerHeader.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@GPL/GPL.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@GPL/GPL.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@GPL/GPL.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@GPL/GPL.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@RWEdge/RWEdge.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@RWEdge/RWEdge.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@RWEdge/RWEdge.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@RWEdge/RWEdge.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@SpectralBackground/SpectralBackground.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@SpectralBackground/SpectralBackground.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@SpectralBackground/SpectralBackground.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@SpectralBackground/SpectralBackground.m
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m
similarity index 93%
rename from src/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m
index e96ef65..8b411d8 100644
--- a/src/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m
+++ b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoan/WhistleAndMoan.m
@@ -22,8 +22,8 @@
if (fileInfo.moduleHeader.version == 1)
data.nDelays = fread(fid, 1, 'int8');
data.delays = fread(fid, data.nDelays, 'int16'); % need to scale this still !!!!
- if ~isempty(moduleHeader)
- data.delays = data.delays / moduleHeader.delayScale;
+ if ~isempty(fileInfo.moduleHeader)
+ data.delays = data.delays / fileInfo.moduleHeader.delayScale;
end
end
diff --git a/src/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoanHeader/WhistleAndMoanHeader.m b/pgmatlab/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoanHeader/WhistleAndMoanHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoanHeader/WhistleAndMoanHeader.m
rename to pgmatlab/+pgmatlab/+core/+modules/+detectors/@WhistleAndMoanHeader/WhistleAndMoanHeader.m
diff --git a/src/+pgmatlab/+core/+modules/+plugins/@GeminiThreshold/GeminiThreshold.m b/pgmatlab/+pgmatlab/+core/+modules/+plugins/@GeminiThreshold/GeminiThreshold.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+plugins/@GeminiThreshold/GeminiThreshold.m
rename to pgmatlab/+pgmatlab/+core/+modules/+plugins/@GeminiThreshold/GeminiThreshold.m
diff --git a/src/+pgmatlab/+core/+modules/+plugins/@GeminiThresholdBackground/GeminiThresholdBackground.m b/pgmatlab/+pgmatlab/+core/+modules/+plugins/@GeminiThresholdBackground/GeminiThresholdBackground.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+plugins/@GeminiThresholdBackground/GeminiThresholdBackground.m
rename to pgmatlab/+pgmatlab/+core/+modules/+plugins/@GeminiThresholdBackground/GeminiThresholdBackground.m
diff --git a/src/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m b/pgmatlab/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m
similarity index 88%
rename from src/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m
rename to pgmatlab/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m
index e6c0939..3a05f0f 100644
--- a/src/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m
+++ b/pgmatlab/+pgmatlab/+core/+modules/+plugins/@SpermWhaleIPI/SpermWhaleIPI.m
@@ -3,9 +3,7 @@
objectType = 0;
end
methods
- function obj = SpermWhaleIPI();
- obj.background = @SpermWhaleIPIBackground;
- end
+ function obj = SpermWhaleIPI(); end
function [data, selState] = readImpl(~, fid, data, fileInfo, length, identifier, selState);
data.parentUID = fread(fid, 1, 'int64'); % 8
diff --git a/src/+pgmatlab/+core/+modules/+processing/@AIS/AIS.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@AIS/AIS.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@AIS/AIS.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@AIS/AIS.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@ClipGenerator/ClipGenerator.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@ClipGenerator/ClipGenerator.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@ClipGenerator/ClipGenerator.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@ClipGenerator/ClipGenerator.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@DbHt/DbHt.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@DbHt/DbHt.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@DbHt/DbHt.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@DbHt/DbHt.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@Difar/Difar.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@Difar/Difar.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@Difar/Difar.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@Difar/Difar.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@IshmaelData/IshmaelData.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@IshmaelData/IshmaelData.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@IshmaelData/IshmaelData.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@IshmaelData/IshmaelData.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@IshmaelDetections/IshmaelDetections.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@IshmaelDetections/IshmaelDetections.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@IshmaelDetections/IshmaelDetections.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@IshmaelDetections/IshmaelDetections.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverage/LongTermSpectralAverage.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverage/LongTermSpectralAverage.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverage/LongTermSpectralAverage.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverage/LongTermSpectralAverage.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverageHeader/LongTermSpectralAverageHeader.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverageHeader/LongTermSpectralAverageHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverageHeader/LongTermSpectralAverageHeader.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@LongTermSpectralAverageHeader/LongTermSpectralAverageHeader.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@NoiseBand/NoiseBand.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseBand/NoiseBand.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@NoiseBand/NoiseBand.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseBand/NoiseBand.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@NoiseMonitor/NoiseMonitor.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseMonitor/NoiseMonitor.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@NoiseMonitor/NoiseMonitor.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseMonitor/NoiseMonitor.m
diff --git a/src/+pgmatlab/+core/+modules/+processing/@NoiseMonitorHeader/NoiseMonitorHeader.m b/pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseMonitorHeader/NoiseMonitorHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+modules/+processing/@NoiseMonitorHeader/NoiseMonitorHeader.m
rename to pgmatlab/+pgmatlab/+core/+modules/+processing/@NoiseMonitorHeader/NoiseMonitorHeader.m
diff --git a/src/+pgmatlab/+core/+standard/@BaseChunk/BaseChunk.m b/pgmatlab/+pgmatlab/+core/+standard/@BaseChunk/BaseChunk.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@BaseChunk/BaseChunk.m
rename to pgmatlab/+pgmatlab/+core/+standard/@BaseChunk/BaseChunk.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardAnnotation/StandardAnnotation.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardAnnotation/StandardAnnotation.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardAnnotation/StandardAnnotation.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardAnnotation/StandardAnnotation.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardBackground/StandardBackground.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardBackground/StandardBackground.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardBackground/StandardBackground.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardBackground/StandardBackground.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardFileFooter/StandardFileFooter.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardFileFooter/StandardFileFooter.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardFileFooter/StandardFileFooter.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardFileFooter/StandardFileFooter.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardFileHeader/StandardFileHeader.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardFileHeader/StandardFileHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardFileHeader/StandardFileHeader.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardFileHeader/StandardFileHeader.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m
similarity index 97%
rename from src/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m
index ea76211..a4f7808 100644
--- a/src/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m
+++ b/pgmatlab/+pgmatlab/+core/+standard/@StandardModule/StandardModule.m
@@ -26,7 +26,7 @@
methods (Access = public, Sealed)
function obj = StandardModule(); end
- function [data, selState] = read(obj, fid, data, fileInfo, length, identifier, timeRange, uidRange, uidList)
+ function [data, selState] = read(obj, fid, data, fileInfo, length, identifier, timeRange, uidRange, uidList, channelMap)
import pgmatlab.*;
isBackground = identifier == -6;
@@ -96,6 +96,11 @@
end
if (fileVersion == 2 || (bitand(data.flagBitmap, flags.CHANNELMAP) ~= 0) )
data.channelMap = fread(fid, 1, 'int32');
+ % Filter by channel
+ if channelMap > 0 && channelMap ~= data.channelMap
+ selState = 0;
+ return;
+ end
end
% what's going on here? == UID?
@@ -215,7 +220,7 @@
case 'ClickClasssifier_1'
anObj = pgmatlab.core.annotations.ClickClsFr();
case 'Matched_Clk_Clsfr'
- anObj = pgmatlab.core.annotations.MarchCls();
+ anObj = pgmatlab.core.annotations.MatchCls();
case 'BCLS'
anObj = pgmatlab.core.annotations.RWUDP();
case {'DLRE', 'Delt'}
diff --git a/src/+pgmatlab/+core/+standard/@StandardModuleFooter/StandardModuleFooter.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardModuleFooter/StandardModuleFooter.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardModuleFooter/StandardModuleFooter.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardModuleFooter/StandardModuleFooter.m
diff --git a/src/+pgmatlab/+core/+standard/@StandardModuleHeader/StandardModuleHeader.m b/pgmatlab/+pgmatlab/+core/+standard/@StandardModuleHeader/StandardModuleHeader.m
similarity index 100%
rename from src/+pgmatlab/+core/+standard/@StandardModuleHeader/StandardModuleHeader.m
rename to pgmatlab/+pgmatlab/+core/+standard/@StandardModuleHeader/StandardModuleHeader.m
diff --git a/resources/v1.0.1code/datenum2dbdate.m b/pgmatlab/+pgmatlab/+db/+Array/datenum2dbdate.m
similarity index 100%
rename from resources/v1.0.1code/datenum2dbdate.m
rename to pgmatlab/+pgmatlab/+db/+Array/datenum2dbdate.m
diff --git a/resources/v1.0.1code/dbdate2datenum.m b/pgmatlab/+pgmatlab/+db/+Array/dbdate2datenum.m
similarity index 100%
rename from resources/v1.0.1code/dbdate2datenum.m
rename to pgmatlab/+pgmatlab/+db/+Array/dbdate2datenum.m
diff --git a/resources/v1.0.1code/Array/threadinglocaliser.m b/pgmatlab/+pgmatlab/+db/+Array/threadinglocaliser.m
similarity index 100%
rename from resources/v1.0.1code/Array/threadinglocaliser.m
rename to pgmatlab/+pgmatlab/+db/+Array/threadinglocaliser.m
diff --git a/resources/v1.0.1code/Array/threadinglocalisertest.m b/pgmatlab/+pgmatlab/+db/+Array/threadinglocalisertest.m
similarity index 100%
rename from resources/v1.0.1code/Array/threadinglocalisertest.m
rename to pgmatlab/+pgmatlab/+db/+Array/threadinglocalisertest.m
diff --git a/resources/v1.0.1code/importloggertable.m b/pgmatlab/+pgmatlab/+db/+logger/importloggertable.m
similarity index 100%
rename from resources/v1.0.1code/importloggertable.m
rename to pgmatlab/+pgmatlab/+db/+logger/importloggertable.m
diff --git a/resources/v1.0.1code/importudftable.m b/pgmatlab/+pgmatlab/+db/+logger/importudftable.m
similarity index 100%
rename from resources/v1.0.1code/importudftable.m
rename to pgmatlab/+pgmatlab/+db/+logger/importudftable.m
diff --git a/resources/v1.0.1code/lookuptableformat.m b/pgmatlab/+pgmatlab/+db/+logger/lookuptableformat.m
similarity index 100%
rename from resources/v1.0.1code/lookuptableformat.m
rename to pgmatlab/+pgmatlab/+db/+logger/lookuptableformat.m
diff --git a/resources/v1.0.1code/udftableformat.m b/pgmatlab/+pgmatlab/+db/+logger/udftableformat.m
similarity index 100%
rename from resources/v1.0.1code/udftableformat.m
rename to pgmatlab/+pgmatlab/+db/+logger/udftableformat.m
diff --git a/src/+pgmatlab/+db/addColumn.m b/pgmatlab/+pgmatlab/+db/addColumn.m
similarity index 73%
rename from src/+pgmatlab/+db/addColumn.m
rename to pgmatlab/+pgmatlab/+db/addColumn.m
index d98878a..c2eb9c2 100644
--- a/src/+pgmatlab/+db/addColumn.m
+++ b/pgmatlab/+pgmatlab/+db/addColumn.m
@@ -1,4 +1,4 @@
function e = addColumn(con, tableName, columnName, format);
cmd = sprintf('ALTER TABLE %s ADD COLUMN %s %s', tableName, columnName, format);
exec(con, cmd);
-e = columnExists(con, tableName, columnName);
\ No newline at end of file
+e = pgmatlab.db.columnExists(con, tableName, columnName);
\ No newline at end of file
diff --git a/src/+pgmatlab/+db/checkColumn.m b/pgmatlab/+pgmatlab/+db/checkColumn.m
similarity index 73%
rename from src/+pgmatlab/+db/checkColumn.m
rename to pgmatlab/+pgmatlab/+db/checkColumn.m
index 219d17c..98dcea2 100644
--- a/src/+pgmatlab/+db/checkColumn.m
+++ b/pgmatlab/+pgmatlab/+db/checkColumn.m
@@ -1,10 +1,10 @@
function e = checkColumn(con, tableName, columnName, format);
% function e = checkColumn(con, tableName, columnName, format)
% checks a database table column, adding it if it doesn't exist.
-e = columnExists(con,tableName, columnName);
+e = pgmatlab.db.columnExists(con,tableName, columnName);
if e
return
end
cmd = sprintf('ALTER TABLE %s ADD COLUMN %s %s', tableName, columnName, format);
ans = exec(con, cmd);
-e = columnExists(con, tableName, columnName);
\ No newline at end of file
+e = pgmatlab.db.columnExists(con, tableName, columnName);
\ No newline at end of file
diff --git a/src/+pgmatlab/+db/checkTable.m b/pgmatlab/+pgmatlab/+db/checkTable.m
similarity index 82%
rename from src/+pgmatlab/+db/checkTable.m
rename to pgmatlab/+pgmatlab/+db/checkTable.m
index cdd9f95..90129c5 100644
--- a/src/+pgmatlab/+db/checkTable.m
+++ b/pgmatlab/+pgmatlab/+db/checkTable.m
@@ -8,12 +8,12 @@
create = false;
end
e = 0;
-if tableExists(con, tableName)
+if pgmatlab.db.tableExists(con, tableName)
e = 1;
return;
end
if create
c = sprintf('CREATE TABLE %s (\"Id\" COUNTER NOT NULL, Primary Key (Id))', tableName);
q = exec(con, c);
- e = tableExists(con, tableName);
+ e = pgmatlab.db.tableExists(con, tableName);
end
\ No newline at end of file
diff --git a/src/+pgmatlab/+db/checksqlitefuncs.m b/pgmatlab/+pgmatlab/+db/checksqlitefuncs.m
similarity index 83%
rename from src/+pgmatlab/+db/checksqlitefuncs.m
rename to pgmatlab/+pgmatlab/+db/checksqlitefuncs.m
index 9cf94a5..bab3017 100644
--- a/src/+pgmatlab/+db/checksqlitefuncs.m
+++ b/pgmatlab/+pgmatlab/+db/checksqlitefuncs.m
@@ -5,7 +5,7 @@
tableName = 'Auto_Seal'
colName = 'UID'
con = sqlite(dbName)
-tableExists(con, tableName)
+pgmatlab.db.tableExists(con, tableName)
% pStr = sprintf('PRAGMA table_Info(''%s'')', tableName);
% con.fetch(pStr)
@@ -13,7 +13,7 @@
sq = sprintf('SELECT * FROM sqlite_master where name=''%s''', tableName);
con.fetch(sq)
-columnExists(con, tableName, colName)
+pgmatlab.db.columnExists(con, tableName, colName)
close(con)
diff --git a/resources/v1.0.1code/clearcolumn.m b/pgmatlab/+pgmatlab/+db/clearcolumn.m
similarity index 100%
rename from resources/v1.0.1code/clearcolumn.m
rename to pgmatlab/+pgmatlab/+db/clearcolumn.m
diff --git a/resources/v1.0.1code/columnExists.m b/pgmatlab/+pgmatlab/+db/columnExists.m
similarity index 100%
rename from resources/v1.0.1code/columnExists.m
rename to pgmatlab/+pgmatlab/+db/columnExists.m
diff --git a/resources/v1.0.1code/getmaxcolvalue.m b/pgmatlab/+pgmatlab/+db/getmaxcolvalue.m
similarity index 100%
rename from resources/v1.0.1code/getmaxcolvalue.m
rename to pgmatlab/+pgmatlab/+db/getmaxcolvalue.m
diff --git a/resources/v1.0.1code/getmaxid.m b/pgmatlab/+pgmatlab/+db/getmaxid.m
similarity index 100%
rename from resources/v1.0.1code/getmaxid.m
rename to pgmatlab/+pgmatlab/+db/getmaxid.m
diff --git a/src/+pgmatlab/+db/sqlite-jdbc-3.45.3.0 copy.jar b/pgmatlab/+pgmatlab/+db/sqlite-jdbc-3.45.3.0 copy.jar
similarity index 100%
rename from src/+pgmatlab/+db/sqlite-jdbc-3.45.3.0 copy.jar
rename to pgmatlab/+pgmatlab/+db/sqlite-jdbc-3.45.3.0 copy.jar
diff --git a/resources/v1.0.1code/sqlite-jdbc-3.45.3.0.jar b/pgmatlab/+pgmatlab/+db/sqlite-jdbc-3.45.3.0.jar
similarity index 100%
rename from resources/v1.0.1code/sqlite-jdbc-3.45.3.0.jar
rename to pgmatlab/+pgmatlab/+db/sqlite-jdbc-3.45.3.0.jar
diff --git a/resources/v1.0.1code/sqlitedatabase.m b/pgmatlab/+pgmatlab/+db/sqlitedatabase.m
similarity index 100%
rename from resources/v1.0.1code/sqlitedatabase.m
rename to pgmatlab/+pgmatlab/+db/sqlitedatabase.m
diff --git a/resources/v1.0.1code/tableExists.m b/pgmatlab/+pgmatlab/+db/tableExists.m
similarity index 100%
rename from resources/v1.0.1code/tableExists.m
rename to pgmatlab/+pgmatlab/+db/tableExists.m
diff --git a/resources/v1.0.1code/unpackLocaliserError.m b/pgmatlab/+pgmatlab/+db/unpackLocaliserError.m
similarity index 100%
rename from resources/v1.0.1code/unpackLocaliserError.m
rename to pgmatlab/+pgmatlab/+db/unpackLocaliserError.m
diff --git a/resources/v1.0.1code/writespecannotationdata.m b/pgmatlab/+pgmatlab/+db/writespecannotationdata.m
similarity index 100%
rename from resources/v1.0.1code/writespecannotationdata.m
rename to pgmatlab/+pgmatlab/+db/writespecannotationdata.m
diff --git a/pgmatlab/+pgmatlab/+utils/charArray.m b/pgmatlab/+pgmatlab/+utils/charArray.m
new file mode 100644
index 0000000..de795e0
--- /dev/null
+++ b/pgmatlab/+pgmatlab/+utils/charArray.m
@@ -0,0 +1,29 @@
+function c = charArray(in)
+ %pgmatlab.utils.CHARARRAY - convert a string to a byte array, or cell
+ % of strings to a cell array of char arrays. Can pass in a mix of
+ % strings and char arrays.
+ %
+ % Example 1:
+ % >>> res = pgmatlab.utils.charArray({"v1", 'v2', {'v3', "v4"}};
+ % This produces {'v1', 'v2', {'v3', 'v4'}}
+ %
+ % Example 2:
+ % >>> res = pgmatlab.utils.charArray([])
+ % This produces {}
+ %
+ % Example 3:
+ % >>> res = pgmatlab.utils.charArray({})
+ % This produces {}
+ %
+
+ if (iscell(in))
+ % Preallocate space for c
+ c{numel(in)} = -1;
+ for i = 1:numel(in)
+ c{i} = pgmatlab.utils.charArray(in{i});
+ end
+ return;
+ end
+ c = char(in);
+ return;
+end
\ No newline at end of file
diff --git a/pgmatlab/+pgmatlab/+utils/checkArrayAllocation.m b/pgmatlab/+pgmatlab/+utils/checkArrayAllocation.m
new file mode 100644
index 0000000..06bd062
--- /dev/null
+++ b/pgmatlab/+pgmatlab/+utils/checkArrayAllocation.m
@@ -0,0 +1,19 @@
+% Check the array allocation. This gets called every time data are read and
+% will extend the array by approximately the sqrt of the arrays own length
+% if required. Preallocation acheived by sticking a sample object at a high
+% data index so that array up to that point gets filled with nulls.
+function array = checkArrayAllocation(array, reqLength, sampleObject)
+if isempty(array)
+ currentLength = 0;
+ clear array;
+else
+ currentLength = numel(array);
+end
+if (currentLength >= reqLength)
+ return;
+end
+allocStep = round(sqrt(reqLength));
+allocStep = max(10, min(allocStep, 10000));
+array(reqLength + allocStep) = sampleObject;
+return;
+end
diff --git a/resources/v1.0.1code/countChannels.m b/pgmatlab/+pgmatlab/+utils/countChannels.m
similarity index 100%
rename from resources/v1.0.1code/countChannels.m
rename to pgmatlab/+pgmatlab/+utils/countChannels.m
diff --git a/resources/v1.0.1code/dateNumToMillis.m b/pgmatlab/+pgmatlab/+utils/dateNumToMillis.m
similarity index 100%
rename from resources/v1.0.1code/dateNumToMillis.m
rename to pgmatlab/+pgmatlab/+utils/dateNumToMillis.m
diff --git a/resources/v1.0.1code/dirsub.m b/pgmatlab/+pgmatlab/+utils/dirsub.m
similarity index 100%
rename from resources/v1.0.1code/dirsub.m
rename to pgmatlab/+pgmatlab/+utils/dirsub.m
diff --git a/src/+pgmatlab/findBinaryFile.m b/pgmatlab/+pgmatlab/+utils/findBinaryFile.m
similarity index 88%
rename from src/+pgmatlab/findBinaryFile.m
rename to pgmatlab/+pgmatlab/+utils/findBinaryFile.m
index 47fc02c..1e0a664 100644
--- a/src/+pgmatlab/findBinaryFile.m
+++ b/pgmatlab/+pgmatlab/+utils/findBinaryFile.m
@@ -1,4 +1,7 @@
function filePath = findBinaryFile(root, mask, file)
+root = pgmatlab.utils.charArray(root);
+mask = pgmatlab.utils.charArray(mask);
+file = pgmatlab.utils.charArray(file);
% find a file in the root, and mask with a given name.
% will make a master list once, then reuse it to find the
% right file.
@@ -6,10 +9,9 @@
persistent masterList namesOnly shortenedNames;
if needFullSearch(lastRoot, lastMask, root, mask)
maxNameLen = 80; % problem in database limiting names to 80 characters
- masterList = dirsub(root, mask);
+ masterList = pgmatlab.utils.dirsub(root, mask);
namesOnly = cell(1,numel(masterList));
shortenedNames = cell(1,numel(masterList));
-
for i = 1:numel(masterList)
fn = masterList(i).name;
fp = masterList(i).folder;
diff --git a/src/+pgmatlab/findBinaryFileForDate.m b/pgmatlab/+pgmatlab/+utils/findBinaryFileForDate.m
similarity index 89%
rename from src/+pgmatlab/findBinaryFileForDate.m
rename to pgmatlab/+pgmatlab/+utils/findBinaryFileForDate.m
index 60c67a9..3a20085 100644
--- a/src/+pgmatlab/findBinaryFileForDate.m
+++ b/pgmatlab/+pgmatlab/+utils/findBinaryFileForDate.m
@@ -1,4 +1,6 @@
function filePath = findBinaryFileForDate(root, mask, dates, verbose)
+root = pgmatlab.utils.charArray(root);
+mask = pgmatlab.utils.charArray(mask);
% find a file in the root that has data in the dates range. if necessary
% dates may be a vector and multiple files may be returned.
if nargin < 4
@@ -8,7 +10,7 @@
filePath = cell(size(dates));
mt = zeros(size(dates));
for i = 1:numel(dates)
- filePath{i} = findBinaryFileForDate(root, mask, dates(i), verbose);
+ filePath{i} = pgmatlab.findBinaryFileForDate(root, mask, dates(i), verbose);
mt(i) = isempty(filePath{i});
end
% remove nulls
@@ -25,7 +27,7 @@
if (verbose)
fprintf('Searching folder %s for files type %s\n', root, mask);
end
- masterList = dirsub(root, mask);
+ masterList = pgmatlab.utils.dirsub(root, mask);
namesOnly = cell(1,numel(masterList));
shortenedNames = cell(1,numel(masterList));
dataStarts = zeros(1,numel(masterList));
@@ -38,7 +40,7 @@
end
end
xFile = strrep(masterList(i).name, '.pgdf', '.pgdx');
- [~, fileInfo] = loadPamguardBinaryFile(xFile);
+ [~, fileInfo] = pgmatlab.loadPamguardBinaryFile(xFile);
try
dataStarts(i) = fileInfo.fileHeader.dataDate;
dataEnds(i) = fileInfo.fileFooter.dataDate;
diff --git a/resources/v1.0.1code/getChannels.m b/pgmatlab/+pgmatlab/+utils/getChannels.m
similarity index 100%
rename from resources/v1.0.1code/getChannels.m
rename to pgmatlab/+pgmatlab/+utils/getChannels.m
diff --git a/resources/v1.0.1code/millisToDateNum.m b/pgmatlab/+pgmatlab/+utils/millisToDateNum.m
similarity index 100%
rename from resources/v1.0.1code/millisToDateNum.m
rename to pgmatlab/+pgmatlab/+utils/millisToDateNum.m
diff --git a/resources/v1.0.1code/passalldata.m b/pgmatlab/+pgmatlab/+utils/passalldata.m
similarity index 100%
rename from resources/v1.0.1code/passalldata.m
rename to pgmatlab/+pgmatlab/+utils/passalldata.m
diff --git a/src/+pgmatlab/+utils/readJavaUTFString.m b/pgmatlab/+pgmatlab/+utils/readJavaUTFString.m
similarity index 100%
rename from src/+pgmatlab/+utils/readJavaUTFString.m
rename to pgmatlab/+pgmatlab/+utils/readJavaUTFString.m
diff --git a/src/+pgmatlab/loadPamguardBinaryFile.m b/pgmatlab/+pgmatlab/loadPamguardBinaryFile.m
similarity index 93%
rename from src/+pgmatlab/loadPamguardBinaryFile.m
rename to pgmatlab/+pgmatlab/loadPamguardBinaryFile.m
index c6def3d..04b0d87 100644
--- a/src/+pgmatlab/loadPamguardBinaryFile.m
+++ b/pgmatlab/+pgmatlab/loadPamguardBinaryFile.m
@@ -1,4 +1,4 @@
-function [dataSet, fileInfo] = loadPamguardBinaryFile(fileName, varargin)
+function [dataSet, fileInfo, selState] = loadPamguardBinaryFile(fileName, varargin)
%PGMATLAB.LOADPAMGUARDBINARYFILE - Load a PAMGuard Binary File into memory.
% Produces a 1x2 vector with structs of the data set and file information.
%
@@ -74,7 +74,7 @@
% >>> end
% >>> [d,f] = pgmatlab.loadPamguardBinaryFile("./data.pgdf", 'filter', @myFilter, 'sorted', 1)
%
-% See also PGMATLAB.LOADPAMGUARDBINARYFOLDER, PGMATLAB.LOADPAMGUARDMULTIFILE
+% See also PGMATLAB.LOADPAMGUARDBINARYFOLDER, PGMATLAB.LOADPAMGUARDMULTIFILE.
%
import pgmatlab.utils.*;
@@ -90,7 +90,7 @@
uidList = [];
iArg = 0;
sorted = 0;
-filterfun = @passalldata;
+filterfun = @pgmatlab.utils.passalldata;
channelmap=-1;
while iArg < numel(varargin)
iArg = iArg + 1;
@@ -308,18 +308,13 @@
dataPoint = struct();
try
- [dataPoint, selState] = moduleObj.read(fid, dataPoint, fileInfo, length, identifier, timeRange, uidRange, uidList);
+ [dataPoint, selState] = moduleObj.read(fid, dataPoint, fileInfo, length, identifier, timeRange, uidRange, uidList, channelmap);
catch mError
disp(['Error reading ' fileInfo.fileHeader.moduleType ' data object. Data read:']);
disp(dataPoint);
disp(getReport(mError));
end
- % Filter by channel
- if channelmap > 0 && channelmap ~= dataPoint.channelMap
- selState = 0;
- end
-
% Allow custom filters to be applied
if selState == 1
selState = filterfun(dataPoint);
@@ -332,6 +327,9 @@
if (selState == 2 && sorted)
break;
elseif (selState ~= 1)
+ if (~sorted)
+ selState = 0;
+ end
fseek(fid, nextPos - ftell(fid), 'cof');
continue;
end
@@ -339,11 +337,11 @@
% add to the data or background variables accordingly
if isBackground
nBackground = nBackground + 1;
- background = checkArrayAllocation(background, nBackground, dataPoint);
+ background = pgmatlab.utils.checkArrayAllocation(background, nBackground, dataPoint);
background(nBackground) = dataPoint;
else
nData = nData + 1;
- dataSet = checkArrayAllocation(dataSet, nData, dataPoint);
+ dataSet = pgmatlab.utils.checkArrayAllocation(dataSet, nData, dataPoint);
dataSet(nData) = dataPoint;
end
@@ -378,24 +376,3 @@
end
return;
end
-
-
-% Check the array allocation. This gets called every time data are read and
-% will extend the array by approximately the sqrt of the arrays own length
-% if required. Preallocation acheived by sticking a sample object at a high
-% data index so that array up to that point gets filled with nulls.
-function array = checkArrayAllocation(array, reqLength, sampleObject)
-if isempty(array)
- currentLength = 0;
- clear array;
-else
- currentLength = numel(array);
-end
-if (currentLength >= reqLength)
- return;
-end
-allocStep = round(sqrt(reqLength));
-allocStep = max(10, min(allocStep, 10000));
-array(reqLength + allocStep) = sampleObject;
-return;
-end
diff --git a/pgmatlab/+pgmatlab/loadPamguardBinaryFolder.m b/pgmatlab/+pgmatlab/loadPamguardBinaryFolder.m
new file mode 100644
index 0000000..b50834b
--- /dev/null
+++ b/pgmatlab/+pgmatlab/loadPamguardBinaryFolder.m
@@ -0,0 +1,159 @@
+function [allData, allBackground, fileInfos] = loadPamguardBinaryFolder(dir, fileMask, verbose, varargin)
+%PGMATLAB.LOADPAMGUARDBINARYFOLDER - Load many PAMGuard Binary Files into memory from a folder (and subfol
+% ders).
+%
+% Produces a 1x3 vector with the datasets, backgrounds, and fileInfos
+% from all of the files in the folder.
+%
+% Syntax:
+% [allData, allBackground, fileInfos] = PGMATLAB.LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, varargin)
+% [allData, allBackground] = PGMATLAB.LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, varargin)
+% allData = PGMATLAB.LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, varargin)
+%
+% - dir (string, required) is the root directory of the binary data files to be read.
+%
+% - fileMask (string, required) is a file mask used to select the files in dir (e.g. "*.pgdf").
+%
+% - verbose (integer, default 0) if a non-zero number n then every n files prints a progress log.
+% To avoid logging set verbose to 0.
+%
+% - varargin (optional) can be one or more of the following options, used to filter data:
+%
+% 'timerange', TIME_RANGE (default ALL): Specify the time range to load data from.
+% TIME_RANGE is a 1x2 vector of the form [START_TIME, END_TIME].
+%
+% 'uidrange', UID_RANGE (default ALL): Specify the UID range to load data from.
+% UID_RANGE is a 1x2 vector of the form [START_UID, END_UID].
+%
+% 'uidlist', UID_LIST (default ALL): Specify a list of UIDs to load data from.
+% UID_LIST is a vector of UIDs.
+%
+% 'channel', CHANNEL_MAP (default ALL): Specify a channel map to apply to the data.
+% CHANNEL_MAP a bitmap of the channels to load.
+%
+% 'filter', FILTER_FUN: Specify a filter function to apply to the data.
+% FILTER_FUN is a function handle that takes the data as input and
+% returns a selection state (0 = skip, 1 = keep, 2 = stop, if data
+% is ordered).
+%
+% 'sorted', SORTED (default 0): Specify whether the data is sorted. SORTED is a
+% logical value (1 true or 0 false). It serves to speed up execution
+% if the data exceeds the upper bound of a range filter. This applies
+% if 'timerange' and/or 'uidrange' are provided. Setting SORTED to 1
+% when using these range filters can cause unexpected behaviour if the
+% data being filtered on is not actually sorted. Defaults to 0 (false).
+% SORTED also requires files to be alphanumerically sorted in the folder
+% bring read.
+%
+% Example 1: load an entire folder of binary files
+% >>> [d,b,f] = pgmatlab.loadPamguardBinaryFolder("./Data");
+%
+% Example 2: load an entire folder of binary files with a filterfun
+% >>> function selState = myFilter(data)
+% % remove all data where type ~= 1
+% if data.type == 1
+% selState = 1; % keep
+% else
+% selState = 0; % skip
+% end
+% >>> end
+% >>> [d,b,f] = pgmatlab.loadPamguardBinaryFolder("./Data", "*.pgdf", 1, @myFilter)
+%
+% Example 3: load an entire folder of binary files within a specific time range (indicating sorted data);
+% >>> startTime = datenum(2017,10,21,0,25,0);
+% >>> endTime = datenum(2017,10,21,0,26,0);
+% >>> [d,b,f] = pgmatlab.loadPamguardBinaryFile("./Data.pgdf", "*.pgdf", 1, @pgmatlab.utils.passalldata, "timerange", [startTime endTime], "sorted", 1)
+%
+% For more examples on how to use varargin to specify filters, check out help PGMATLAB.LOADPAMGUARDBINARYFILE.
+%
+% See also PGMATLAB.LOADPAMGUARDBINARYFILE, PGMATLAB.LOADPAMGUARDBINARYFOLDER.
+%
+
+% Set default verbosity
+if (nargin < 3)
+ verbose = 0;
+end
+
+% Set default varargin variable
+iArg = length(varargin);
+if iArg == 0
+ varargin = {};
+end
+
+% % Manually add filter to the varargin. This is to
+% % support legacy code, and should be discouraged.
+% if nargin < 4 || (nargin >= 4 && ~filterfun)
+% filterfun = @pgmatlab.utils.passalldata;
+% end
+% varargin{iArg + 1} = "filter";
+% varargin{iArg + 2} = filterfun;
+
+allData = [];
+nData = 0;
+allBackground = [];
+nBackground = 0;
+
+allFiles = pgmatlab.utils.dirsub(dir, fileMask);
+fileInfos = [];
+nFileInfos = 0;
+
+for i = 1:numel(allFiles)
+ % Which file is going to be loaded
+ [fDir, fName, fEnd] = fileparts(allFiles(i).name);
+ fileName = [fName fEnd];
+
+ % Print log message based on verbosity
+ if verbose
+ if mod(i, verbose) == 0
+ fprintf('Loading %d/%d (%d) %s%s (%s)\n', i, numel(allFiles), numel(allData), fName, fEnd, fDir);
+ end
+ end
+
+ % Load binary file data
+ [data, fileInfo, selState] = pgmatlab.loadPamguardBinaryFile(allFiles(i).name, varargin{:});
+
+ % Populate allData array is necessary
+ if ~isempty(data)
+ for j = 1:numel(data)
+ data(j).clickNumber = j; % DEPRACATED: use uid instead of clickNumber to track specific nodes
+ data(j).fileName = fileName;
+ end
+ allData = [pgmatlab.utils.checkArrayAllocation(allData, nData + length(data), data(1)) data];
+ nData = nData + length(data);
+ end
+
+ % Populate allBackground array if necessary
+ if isfield(fileInfo, 'background') && nargout >= 2
+ allBackground = [pgmatlab.utils.checkArrayAllocation(allBackground, nBackground + length(fileInfo.background), -1) fileInfo.background];
+ nBackground = nBackground + length(fileInfo.background);
+ end
+
+ % Populate fileInfo array if necessary
+ if nargout >= 3
+ fileInfos = pgmatlab.utils.checkArrayAllocation(fileInfos, numel(allFiles), fileInfo);
+ fileInfos(i) = fileInfo;
+ nFileInfos = nFileInfos + 1;
+ end
+
+ % Selection state of 2 means the data has surpassed the upper
+ % boundary of a particular range (usually time or uid). This
+ % means that we can stop searching files.
+ if selState == 2
+ break;
+ end
+end
+
+% Ensure addData, allBackground and fileInfos are the
+% correct size. Due to preallocation, they are likely
+% to have exceeded the expected length.
+if nData > 0
+ allData = allData(1:nData);
+end
+if nBackground > 0
+ allBackground = allBackground(1:nBackground);
+end
+if nFileInfos >0
+ fileInfos = fileInfos(1:nFileInfos);
+end
\ No newline at end of file
diff --git a/pgmatlab/+pgmatlab/loadPamguardMultiFile.m b/pgmatlab/+pgmatlab/loadPamguardMultiFile.m
new file mode 100644
index 0000000..4712f83
--- /dev/null
+++ b/pgmatlab/+pgmatlab/loadPamguardMultiFile.m
@@ -0,0 +1,107 @@
+function eventData = loadPamguardMultiFile(dir, fileNames, UIDs, verbose)
+%PGMATLAB.LOADPAMGUARDMULTIFILE - Load multiple P
+% AMGuard Binary Files into memory filtering by certain UIDs in certain
+% files.
+%
+% This can be used to get binary file data for data associated with PAMGuard
+% events. In other words, PGMATLAB.LOADPAMGUARDMULTIFILE is a bulk-load
+% function with file-specific UID filters.
+%
+% Produces an array of data points which correspond to the UID filters from
+% multiple binary files.
+%
+% Syntax:
+% eventData = PGMATLAB.LOADPAMGUARDMULTIFILE(dir, fileNames, UIDs, verbose);
+%
+% - dir (string, required): the root directory in which to search for
+% PAMGuard binary files (.pgdf).
+%
+% - fileNames (cell {}) and UIDs (array []): two parallel arrays specifying
+% specific UIDs in each file to load into eventData. See Examples for
+% more information on how these arrays interact with each other. These
+% arrays must have the same number of elements.
+%
+% - verbose (integer, default 0): if a non-zero number n then every n
+% files prints a progress log. To avoid logging set verbose to 0.
+%
+% Example 1: Load sample event
+% fileNames = {'file1.pgdf', 'file2.pgdf'};
+% uids = [500001, 500002];
+% pgmatlab.loadPamguardMultiFile('./path/to/dir', fileNames, uids);
+%
+% Example 2: Load sample event with logging verbosity
+% fileNames = {'file1.pgdf', 'file2.pgdf'};
+% uids = [500001, 500002];
+% pgmatlab.loadPamguardMultiFile('./path/to/dir', fileNames, uids, 1);
+%
+
+dir = pgmatlab.utils.charArray(dir);
+fileNames = pgmatlab.utils.charArray(fileNames);
+if iscell(UIDs)
+ UIDs = cell2mat(UIDs);
+end
+
+eventData = [];
+nEvents = 0;
+if nargin < 4
+ verbose = 0;
+end
+
+if numel(fileNames) ~= numel(UIDs)
+ error('fileNames and UIDs must have the same number of elements.');
+end
+
+% find the files we need using the findBinaryFile function.
+% unique file list
+unFiles = unique(fileNames);
+for i = 1:numel(unFiles)
+ if (verbose)
+ fileName = unFiles{i};
+ if length(dir) < length(fileName)
+ fileName = fileName(length(dir):end);
+ end
+ fprintf('Loading file %s %d of %d\n', fileName, i, numel(unFiles));
+ end
+
+ filePath = pgmatlab.utils.findBinaryFile(dir,'*.pgdf',unFiles{i});
+ % Ensure the file exists
+ if ~exist(filePath, 'file')
+ fprintf(' - Unable to find file %s\n', unFiles{i});
+ continue;
+ end
+
+ % list of clicks in a particular file
+ mask = strcmp(fileNames, unFiles{i});
+ fileUIDs = UIDs(mask);
+
+ fileData = pgmatlab.loadPamguardBinaryFile(filePath, 'uidlist', fileUIDs);
+
+ % Do some validation checks. Warn user if no (or not enough) data is found.
+ if isempty(fileData)
+ fprintf(' - No data found for file "%s" matching UIDs [%s]\n', unFiles{i}, sprintf('%d, ', fileUIDs));
+ continue;
+ end
+ if length(fileData) ~= length(fileUIDs)
+ fprintf(' - Only %d/%d data points found for file "%s" matching UIDs [%s]\n', length(fileData), length(fileUIDs), unFiles{i}, sprintf('%d, ', fileUIDs));
+ end
+
+ % Add the file information to all data loaded.
+ [~,fName,fEnd] = fileparts(filePath);
+ fileName = [fName fEnd];
+ for d = 1:numel(fileData)
+ fileData(d).binaryFile = fileName;
+ end
+
+ % Preallocate eventData (performance)
+ if isempty(eventData)
+ eventData = fileData;
+ else
+ eventData = pgmatlab.utils.checkArrayAllocation(eventData, numel(eventData) + numel(fileData), fileData(1));
+ eventData(end-numel(fileData)+1:end) = fileData;
+ end
+ nEvents = nEvents + numel(fileData);
+end
+% Cut short preallocated eventData to the correct size
+eventData = eventData(1:nEvents);
+end
\ No newline at end of file
diff --git a/pgmatlab/loadPamguardBinaryFile.m b/pgmatlab/loadPamguardBinaryFile.m
new file mode 100644
index 0000000..85f408c
--- /dev/null
+++ b/pgmatlab/loadPamguardBinaryFile.m
@@ -0,0 +1,17 @@
+function [data, fileInfo, selState] = loadPamguardBinaryFile(filename, varargin)
+%LOADPAMGUARDBINARYFILE - Load a PAMGuard Binary File into memory.
+%
+% This is a depracated function for pgmatlab v1. To access the latest
+% code, use the function pgmatlab.loadPamguardBinaryFile.
+%
+% Syntax:
+% [data, fileInfo, selState] = LOADPAMGUARDBINARYFILE(filename, varargin)
+% [data, fileInfo] = LOADPAMGUARDBINARYFILE(filename, varargin)
+% data = LOADPAMGUARDBINARYFILE(filename, varargin)
+%
+% See also PGMATLAB.LOADPAMGUARDBINARYFILE, LOADPAMGUARDBINARYFOLDER, LOADPAMGUARDMULTIFILE.
+
+warning("loadPamguardBinaryFile is deprecated. Use pgmatlab.loadPamguardBinaryFile instead.");
+[data, fileInfo, selState] = pgmatlab.loadPamguardBinaryFile(filename, varargin{:});
+
+end
\ No newline at end of file
diff --git a/pgmatlab/loadPamguardBinaryFolder.m b/pgmatlab/loadPamguardBinaryFolder.m
new file mode 100644
index 0000000..e6c1e5c
--- /dev/null
+++ b/pgmatlab/loadPamguardBinaryFolder.m
@@ -0,0 +1,31 @@
+function [allData, allBackground, fileInfos] = loadPamguardBinaryFolder(dir, fileMask, verbose, filterfun)
+%LOADPAMGUARDBINARYFOLDER - Load many PAMGuard Binary Files into memory from a folder (and subfolders).
+%
+% This is a depracated function for pgmatlab v1. To access the latest
+% code, use the function pgmatlab.loadPamguardBinaryFolder. Read full
+% documentation, as the function signature has changed.
+%
+% Syntax:
+% [allData, allBackground, fileInfos] = LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, filterfun)
+% [allData, allBackground] = LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, filterfun)
+% allData = LOADPAMGUARDBINARYFOLDER(dir, fileMask, verbose, filterfun)
+%
+% See also PGMATLAB.LOADPAMGUARDBINARYFOLDER, PGMATLAB.LOADPAMGUARDBINARYFILE, PGMATLAB.LOADPAMGUARDMULTIFILE.
+
+% Handle optional arguments
+if nargin < 3
+ verbose = 0;
+end
+
+if nargin < 4
+ filterfun = 0;
+end
+
+warning("loadPamguardBinaryFolder is deprecated. Use pgmatlab.loadPamguardBinaryFolder instead. Read full documentation, as the function signature has changed.");
+
+if isa(filterfun, "function_handle")
+ [allData, allBackground, fileInfos] = pgmatlab.loadPamguardBinaryFolder(dir, fileMask, verbose, 'filter', filterfun);
+else
+ [allData, allBackground, fileInfos] = pgmatlab.loadPamguardBinaryFolder(dir, fileMask, verbose);
+end
+end
\ No newline at end of file
diff --git a/pgmatlab/loadPamguardMultiFile.m b/pgmatlab/loadPamguardMultiFile.m
new file mode 100644
index 0000000..0ec65bf
--- /dev/null
+++ b/pgmatlab/loadPamguardMultiFile.m
@@ -0,0 +1,21 @@
+function eventData = loadPamguardMultiFile(dir, fileNames, UIDs, verbose)
+%LOADPAMGUARDMULTIFILE - Load multiple PAMGuard Binary Files into memory filtering by certain UIDs in certain files.
+%
+% This is a depracated function for pgmatlab v1. To access the latest
+% code, use the function pgmatlab.loadPamguardMultiFile.
+%
+% Syntax:
+% eventData = LOADPAMGUARDMULTIFILE(dir, fileNames, UIDs, verbose)
+%
+% See also PGMATLAB.LOADPAMGUARDMULTIFILE, PGMATLAB.LOADPAMGUARDBINARYFILE, PGMATLAB.LOADPAMGUARDBINARYFOLDER.
+
+warning("loadPamguardMultiFile is deprecated. Use pgmatlab.loadPamguardMultiFile instead.");
+
+% Handle optional arguments
+if nargin < 4
+ verbose = 0;
+end
+
+eventData = pgmatlab.loadPamguardMultiFile(dir, fileNames, UIDs, verbose);
+
+end
\ No newline at end of file
diff --git a/resources/pgmatlab-logo.png b/resources/pgmatlab-logo.png
new file mode 100644
index 0000000..22fb8e1
Binary files /dev/null and b/resources/pgmatlab-logo.png differ
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0d.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0p.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/N24do7FmnXUTmI4jiYSdZFNDTo0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ad.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ad.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ad.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ap.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ap.xml
new file mode 100644
index 0000000..0a61f38
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/gXAf8inQdd-TSYMMB6SJ2NvE16Ap.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYd.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYp.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYp.xml
new file mode 100644
index 0000000..951fe1e
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/nNF-wwapMPg8DpawDPT-aOi3fQYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4d.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4p.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4p.xml
new file mode 100644
index 0000000..70a90a7
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/ojmKDYyY550CI1H1CNE8usxuTu4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEd.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEp.xml b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEp.xml
new file mode 100644
index 0000000..e9c2c0a
--- /dev/null
+++ b/resources/project/-i5CiiJthkzqFJL8FHGU2qUdrQ4/rvAXqtX06ibkfpgkO3iGAKOWBiEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUp.xml
new file mode 100644
index 0000000..274de9f
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/2a1Q608c32XZfL4zh3sL7_cWVXUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAp.xml
new file mode 100644
index 0000000..5c24086
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/AT9o4BPb49qYUPSNvx0SM9aoGLAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/d8u7Zre2q3HiK5fcd3h_7wsKJkAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMp.xml
new file mode 100644
index 0000000..d345fbe
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/gc_wD7vps1lFSFvO-e1XRYSxtVMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYp.xml
new file mode 100644
index 0000000..f12fe52
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/ke48wZA2YxIzn3v5vrnf99LqbEYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUp.xml
new file mode 100644
index 0000000..cbee8e2
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/lrPbbhm4s70prEhLj2U5_gpkizUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8d.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8p.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8p.xml
new file mode 100644
index 0000000..bbed8a9
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/oFB9IUOq4iQgOhupbKN0Lu6r_t8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQd.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQp.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQp.xml
new file mode 100644
index 0000000..212f548
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/rPeLkcVimHDUZ2iJkGTP7oBw3XQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4d.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4p.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4p.xml
new file mode 100644
index 0000000..65a114a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/v9VUCXOs3f_1u6SHw1-ICFBpaZ4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4d.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4p.xml b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4p.xml
new file mode 100644
index 0000000..29c16a8
--- /dev/null
+++ b/resources/project/00EIX37DyA_CbKJH9yEDrF6Y8ns/vmjbHl25tTgLvKhScF_qF-MAUv4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4d.xml b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4p.xml b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/0oQx25bskqGkeABJz4-2BAP8UX4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4d.xml b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4p.xml b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4p.xml
new file mode 100644
index 0000000..6a3c6a7
--- /dev/null
+++ b/resources/project/0IJR_-GHKzclpP23ENDUUIttpv8/lN3W99sYqf22IdA4w62sZ5Zzoh4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcd.xml b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcp.xml b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/B-_DQhJr172WelENCKsU0YrySGcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwd.xml b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwp.xml b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwp.xml
new file mode 100644
index 0000000..9ea45d0
--- /dev/null
+++ b/resources/project/0RDbKO51zRE0qdReNfPa2xiRW5A/rMs_0OEPspDNI_MP8jav9N8y4Wwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYd.xml b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYp.xml b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/-C50IBE2cyiQlyxoOZx51UC-ICYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwd.xml b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwp.xml b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwp.xml
new file mode 100644
index 0000000..e920360
--- /dev/null
+++ b/resources/project/2Ic5Mox27lqorEt93pW6icvvNKs/TEuPEowXXAQQT93JhqYBLASYOPwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ed.xml b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ed.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ed.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ep.xml b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ep.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/3RowzgNpK_EqmNf5oS0hRIgy29Ep.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMd.xml b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMp.xml b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMp.xml
new file mode 100644
index 0000000..7a2c3ba
--- /dev/null
+++ b/resources/project/2a1Q608c32XZfL4zh3sL7_cWVXU/r9KDxx0sWwFF3UGsBa3vtfn9SuMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMd.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMp.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/APLmLygCScIj5TkS-5gEWL_xstMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qd.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qp.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qp.xml
new file mode 100644
index 0000000..caec745
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/G-Ms7bCIabqCIO3rKh5wjriBh2Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8d.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8p.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8p.xml
new file mode 100644
index 0000000..95c850a
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/IF6R7H20pyCFNLBDYC2LMgsMty8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUd.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUp.xml b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUp.xml
new file mode 100644
index 0000000..35b0e93
--- /dev/null
+++ b/resources/project/37cTqd5PFS5lxYKCpQ0utnNYQvo/yO6RjIvrV6NcWqoI7nzd6RzMjIUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYd.xml b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYp.xml b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/cZrD0AK22DxJw_tu3AdOcNgwggYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0d.xml b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0p.xml b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0p.xml
new file mode 100644
index 0000000..ee725c9
--- /dev/null
+++ b/resources/project/3X3-yK3xLLR7MTe5Bj8U3qz5Rcg/rnYzp779yr9HjMFbup33koHSnX0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUd.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUp.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUp.xml
new file mode 100644
index 0000000..52e9522
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/1ZddFH1IGYN4BcyzS9LeFPvRnoUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0d.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0p.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0p.xml
new file mode 100644
index 0000000..98cfd21
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/47WKJ4HIMhWTRi0zA7KXfGi1aa0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgd.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgp.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/4thvkR6gbGVMnKzLjYTd-p_Ixvgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Md.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Md.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Md.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Mp.xml b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Mp.xml
new file mode 100644
index 0000000..6b42ab5
--- /dev/null
+++ b/resources/project/3fSHAHL-m_a1SHDhGWxRDehErTQ/zWJd8rdHDIdRsiu1pYBelCR8P6Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-od.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-od.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-od.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-op.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-op.xml
new file mode 100644
index 0000000..5b43828
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/LG_nAkguFDHQ2u9drJNriEiZn-op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4d.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4p.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/gOoSZQ5PP5hZAm5H9oZWktpiWe4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAId.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAIp.xml b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAIp.xml
new file mode 100644
index 0000000..7a7d53c
--- /dev/null
+++ b/resources/project/3xgOUzk84nlPOcXNsk_hlRhCLHw/hd_qS5O7vTy7C3tmkWtfD1GKLAIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMd.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMp.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMp.xml
new file mode 100644
index 0000000..d46a0d8
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/8Tt896l8x6F_MMWRY2-tElKQ0wMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskd.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskp.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskp.xml
new file mode 100644
index 0000000..7f7e80a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/95RXWlEndt2zhDi90AbZKE2FHskp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwd.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwp.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwp.xml
new file mode 100644
index 0000000..f2ac794
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/T-9JWVqs7fi-i7BkOred0fZCUEwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4d.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4p.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4p.xml
new file mode 100644
index 0000000..f5034c4
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgd.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgp.xml b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/47WKJ4HIMhWTRi0zA7KXfGi1aa0/ySw5_C9ddK9g4y93t7W0By196Xgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwd.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwp.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/2EnQhsBfKwogChBnd2SpotJT7lwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsd.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsp.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsp.xml
new file mode 100644
index 0000000..efd0c45
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/CTY64QN2NvydB5sMgwhhYn5yBqsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUd.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUp.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUp.xml
new file mode 100644
index 0000000..7aa8daf
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/Lm6xC5jQ5QtL2GRJSsoobnpOmGUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYd.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYp.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYp.xml
new file mode 100644
index 0000000..aa589ff
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/it4vwvrpi8zFY_NdiYtGS3FtWNYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4d.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4p.xml b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4p.xml
new file mode 100644
index 0000000..17711a7
--- /dev/null
+++ b/resources/project/4ZAeVIpa0-8TcsX3TQdM-RCcESU/n2Ec0SD9tZFPbJ0vo1ZpcDjG1S4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0d.xml b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0p.xml b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/5AFIwGksJrLNwDeg9sDpaPxTPE0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQod.xml b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQop.xml b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQop.xml
new file mode 100644
index 0000000..8269760
--- /dev/null
+++ b/resources/project/5zSBwUXAtZHFG7q1FvobFNJRh8U/VrGDDgn4tgBH_D0a7pvNFFC3lQop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvod.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvop.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvop.xml
new file mode 100644
index 0000000..01a670e
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/37cTqd5PFS5lxYKCpQ0utnNYQvop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwd.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwp.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwp.xml
new file mode 100644
index 0000000..3ac4b47
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/3xgOUzk84nlPOcXNsk_hlRhCLHwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkd.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkp.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/A3mPw1_9XLaLDKZtdcTpT_owZhkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0d.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0p.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0p.xml
new file mode 100644
index 0000000..55dc69d
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/LdcKiXSWe0xJVSwgWb2NavFnjP0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysd.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysp.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysp.xml
new file mode 100644
index 0000000..128e2e6
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/MFoxiQOpWYxfZpjmYgG_oLiF5ysp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgd.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgp.xml b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgp.xml
new file mode 100644
index 0000000..29a25df
--- /dev/null
+++ b/resources/project/8Tt896l8x6F_MMWRY2-tElKQ0wM/jugw78qkaHZO0v8k4o1c1OuCqUgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4d.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4p.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/DuwDo6KeiF30q5y_5ZQXTu3DVT4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8d.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8p.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8p.xml
new file mode 100644
index 0000000..8867c12
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/PhkkUCtNRlLKVzpYW9VbrI0GOJ8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMd.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMp.xml b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMp.xml
new file mode 100644
index 0000000..8cb20df
--- /dev/null
+++ b/resources/project/95RXWlEndt2zhDi90AbZKE2FHsk/VxZqk18iE37xaXSU_Jjq9A6r6dMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0d.xml b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0p.xml b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/Fh_Nz-MG1McrkmJhM3hp6PwTKb0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ed.xml b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ed.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ed.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ep.xml b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ep.xml
new file mode 100644
index 0000000..8898791
--- /dev/null
+++ b/resources/project/9oO9ccxEf7PO6C0VYddrryP1uRs/XB9WrMTHGDKIEzH93clRghv1Z-Ep.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4d.xml b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4p.xml b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4p.xml
new file mode 100644
index 0000000..04256e2
--- /dev/null
+++ b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/9DLzLQ_gDvosEowUc4ayB9Dofp4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsd.xml b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsp.xml b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/AD2VM_T0j23gmUrkXBICsQ0sX2g/cEcXiRV2pbkRxLCCFDw1HRliHSsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4d.xml b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4p.xml b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4p.xml
new file mode 100644
index 0000000..e938953
--- /dev/null
+++ b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/KiyISq02-BoK_Y-Bc4kSMd4jCH4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAd.xml b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAp.xml b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/AT9o4BPb49qYUPSNvx0SM9aoGLA/ih_pfqSjbuKRuM0mVUHG1CoU0TAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0d.xml b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0p.xml b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0p.xml
new file mode 100644
index 0000000..5634747
--- /dev/null
+++ b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/4JDq8i0k-hAMNzlN04pYOxJ5u-0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcd.xml b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcp.xml b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/AZ8Rt8JTW8AQIVbePEaBdS1vixw/5wb0hbRjgXak1O12uBD29aWYlUcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjId.xml b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjIp.xml b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjIp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/fA7SgUKQyX4AElxmH9rY5s90VjIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsd.xml b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsp.xml b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsp.xml
new file mode 100644
index 0000000..1e4acaa
--- /dev/null
+++ b/resources/project/CA31HPaFQ_VK20Knqcw6lPdrkgs/tb76rmflKVFqlmt6LtBwAYd_iFsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMd.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMp.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMp.xml
new file mode 100644
index 0000000..6637625
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Brul1Q8IR-HM88S1EvvMtsHg7rMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMd.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMp.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMp.xml
new file mode 100644
index 0000000..6728e18
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/Fsb3wifxyq6-2U2TzHqfkepulAMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYd.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYp.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYp.xml
new file mode 100644
index 0000000..b708d82
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/XaK253f0RCaBV_HKf-k61Ru5SVYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyod.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyop.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/njV2pqCpg-9Z_8eKAd42GXYGvyop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwd.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwp.xml b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwp.xml
new file mode 100644
index 0000000..9b8f73c
--- /dev/null
+++ b/resources/project/CBYbuW8pCtybaQsFoHkB2i32piM/wdjDf2n-lY8N6M22_Ua1IKoHTJwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ad.xml b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ad.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ad.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ap.xml b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ap.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/KAizWxFLl64KjlXsZKUMX7w8T5Ap.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAd.xml b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAp.xml b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAp.xml
new file mode 100644
index 0000000..faacc40
--- /dev/null
+++ b/resources/project/Ckyq5GYi9wn2PymLIfW1G4S-qqI/dyHTig6AyMag87skpfd__CWZGfAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowd.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowp.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/0A-Gu9EyhDlw29IVVUru-4Kezowp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsd.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsp.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsp.xml
new file mode 100644
index 0000000..daecb48
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/K9ITDlc6GQqYLsAJySUXPFQvXLsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsd.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsp.xml b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsp.xml
new file mode 100644
index 0000000..02d7be4
--- /dev/null
+++ b/resources/project/DFREn9WnWmRszK08d3efoT6HGhw/T0dLmHyNGUL8jxxM9HgiFiV7-Fsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYd.xml b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYp.xml b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/65xTTaqVaUwfRcKEMD5_vWhnzpYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYd.xml b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYp.xml b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYp.xml
new file mode 100644
index 0000000..c9fc715
--- /dev/null
+++ b/resources/project/DwOBECVM6Xm_mgX0pvMMBWjyVpg/Kw5RPtsnLRrYAKvFlrC_OyDQCQYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMd.xml b/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMd.xml
new file mode 100644
index 0000000..09f80af
--- /dev/null
+++ b/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMp.xml b/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMp.xml
new file mode 100644
index 0000000..1d4363b
--- /dev/null
+++ b/resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/5qt7hLNqDQuWIpe3kpgH9ZQG2CMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yd.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yp.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yp.xml
new file mode 100644
index 0000000..7bb4876
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/QnMoC7dVC4zKTP4kO5bP3Mf2p3Yp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgd.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgp.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgp.xml
new file mode 100644
index 0000000..4137335
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/SjDV_IXIW_iH1g_Ad1oUi9rBZkgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAd.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAp.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAp.xml
new file mode 100644
index 0000000..14f90bd
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/Z6xrj9Mq7cQJSGHczXM4YZNJGiAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYd.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYp.xml b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/EI1RkdnKK4ynhXGXuX0TG7KojKE/nR_ytDQX0neQekZVATBugnaoDzYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqId.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqIp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqIp.xml
new file mode 100644
index 0000000..d404a2e
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Ckyq5GYi9wn2PymLIfW1G4S-qqIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swp.xml
new file mode 100644
index 0000000..ce1b90b
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/Vp_9l8lxHuv6voL7PN0fiXXP5Swp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUp.xml
new file mode 100644
index 0000000..36a9f06
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/bdX3WkJVK_GQoeKOCqkVpqxGCUUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigp.xml
new file mode 100644
index 0000000..2dc2834
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/c2PL6LfvwGeB72WMaLzRkg3yMigp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/cvjZr3SlHoitiCMyTIPmPZkAKugp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgp.xml
new file mode 100644
index 0000000..1c88fe9
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/iz_S_c8YQmNBecRS5pq-kzdBckgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMp.xml
new file mode 100644
index 0000000..1cf0067
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/m2RoOdosli_O0_jvTkmYSZmmYAMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcp.xml
new file mode 100644
index 0000000..7d5d375
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/oUCjzIE3VB4Jhv9NJ7ZCuMODDxcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusd.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusp.xml b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusp.xml
new file mode 100644
index 0000000..86c23fb
--- /dev/null
+++ b/resources/project/Fv3tvMqCZDif_FoL5k_vevF2ENM/zGN5zBjunXdKWV7igkdJy6sdQusp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYd.xml b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYp.xml b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYp.xml
new file mode 100644
index 0000000..d8dc5f2
--- /dev/null
+++ b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/3csRnEUO-OCdlALFEewevr45wZYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0d.xml b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0p.xml b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/HAioorIuRIQ55_X75-tXkAws9Ik/sy0u8YWd6m69tx45XAG5p8xWMC0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEd.xml b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEp.xml b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/V76yfcu8kfyIeJKa13j7YbWR_NEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0d.xml b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0p.xml b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0p.xml
new file mode 100644
index 0000000..db2f6df
--- /dev/null
+++ b/resources/project/I-dDyJ1p--Q0ihIJ8NFdLVLQLTU/p2B2kuKn-TR4inf0L2-zoGElvj0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcd.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcp.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcp.xml
new file mode 100644
index 0000000..613c18f
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/DPUNy-9KpRJq5pOsPLOr5NUDwmcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Ud.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Ud.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Ud.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Up.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Up.xml
new file mode 100644
index 0000000..fbc619f
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/Go0dXY5YdV-5OMuSHSIQuZsY61Up.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUd.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUp.xml b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/ISetil6aNbRvZxoESjxpD_vkFc8/l0-_wKTeMnLLPaviTlZXKxnEdvUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xod.xml b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xop.xml b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xop.xml
new file mode 100644
index 0000000..805a5f4
--- /dev/null
+++ b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/emicnDpfceRYBM2cbIXNfECB8xop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAd.xml b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAp.xml b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/JfKb08eTkpSQPg8zn-DxlNc2HGk/mKS3OjSbGrgdwKWwRVoFbA9lbPAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wd.xml b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wp.xml b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wp.xml
new file mode 100644
index 0000000..59d10fd
--- /dev/null
+++ b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/EIzILX2lHv02RanpY8TOEKi196wp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAd.xml b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAp.xml b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Kxn0lTIStZhlHYyuDabV7lEduw8/E_VQRUAR0S7gBtxALYwV9ugmeXAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgd.xml b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgp.xml b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgp.xml
new file mode 100644
index 0000000..49df4d2
--- /dev/null
+++ b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/8bqmx0BUKPooSSbfQtxxZIPhEAgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wd.xml b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wp.xml b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/LQAHKAds470Wwg0BXnX6IE6T2Sk/QXHUVwGyGonnHBxena9z4jF7E5wp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEd.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEp.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEp.xml
new file mode 100644
index 0000000..5453a6e
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/1PdbfBJjEr7mUZK4ZqcYq9LiSQEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcd.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcp.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcp.xml
new file mode 100644
index 0000000..4463baa
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/6B-6O16xawWiocek9cPKIQkwFLcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUd.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUp.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUp.xml
new file mode 100644
index 0000000..280de0b
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/I7eIEzIhMa8bA6gUja5d5m7u6SUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0d.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0p.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0p.xml
new file mode 100644
index 0000000..60d80f0
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/Kw5XluQxPuU98HcIHpb-u_YyPg0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsd.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsp.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsp.xml
new file mode 100644
index 0000000..69e2553
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/dOnnAE14xltn-jnRc69gxrlGwXsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsd.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsp.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/jCZBIj-h9CH1WATErjHz8xxOifsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauod.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauop.xml b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauop.xml
new file mode 100644
index 0000000..6ff60f9
--- /dev/null
+++ b/resources/project/LdcKiXSWe0xJVSwgWb2NavFnjP0/vdZKid6mccVZm52DIg4lAo8rauop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYp.xml
new file mode 100644
index 0000000..19afb41
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/1pm0lCqFKBfr1WFv2JuzUKs1AqYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/2p0wlp0zIBYo0F9n9snNX6gH5Ygp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkp.xml
new file mode 100644
index 0000000..5dfe38d
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/P_Wf6vih58t4xiMzigSlwrD02Vkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwp.xml
new file mode 100644
index 0000000..84af2f3
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/RO3y6OFwls_dI5FAc74jYEVwKqwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQp.xml
new file mode 100644
index 0000000..fc3beb4
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/Tc2n3kZWUYrVIcwqtKL48nPBYXQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsp.xml
new file mode 100644
index 0000000..2a176dd
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/XiAzn-t7To7G-_wJb5E3QQyc9bsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsp.xml
new file mode 100644
index 0000000..dfb7269
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/hz-fIlTwH1xT0zTL8Hf5K-_RIZsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAp.xml
new file mode 100644
index 0000000..7016835
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/kjyd6C1fhEvUJscyQWHLLhL1THAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsd.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsp.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsp.xml
new file mode 100644
index 0000000..18dd74c
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/uqRg2Zz_KQ_rUK9W6Jjo6mGbMBsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0d.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0p.xml b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0p.xml
new file mode 100644
index 0000000..90acae5
--- /dev/null
+++ b/resources/project/MFoxiQOpWYxfZpjmYgG_oLiF5ys/yyHQfbDAC_aXd0qs04qIUNUnrK0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMd.xml b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMp.xml b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/FImtaJaZeXMjFuE9MjwxAyTvHhMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAd.xml b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAp.xml b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAp.xml
new file mode 100644
index 0000000..0dbd23a
--- /dev/null
+++ b/resources/project/NYV4By6o0Yt5croJQagVuE_HzpU/uhJEOygQgPHnNsQ6qIZpGRun0fAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4d.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4d.xml
new file mode 100644
index 0000000..6d1c43c
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4p.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4p.xml
new file mode 100644
index 0000000..e993c77
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/2kj09UetkV_lru3gvSPXnY6-nM4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8d.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8d.xml
new file mode 100644
index 0000000..d47011f
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8p.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8p.xml
new file mode 100644
index 0000000..91b0acc
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/KKyDJtbdIBOlaeHmIZd5VX6vqx8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4d.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4d.xml
new file mode 100644
index 0000000..6c16a34
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4p.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4p.xml
new file mode 100644
index 0000000..76301e1
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/QWNDYJD5mGW1bWYvPx9DtKnxzw4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Id.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Id.xml
new file mode 100644
index 0000000..e228479
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Id.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Ip.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Ip.xml
new file mode 100644
index 0000000..958c22f
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/R1RggVhA72agIvELiuhWPRS8F0Ip.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZod.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZod.xml
new file mode 100644
index 0000000..b5689bd
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZop.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZop.xml
new file mode 100644
index 0000000..ffb1fe8
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/aEHSZBIY-yve10yGis12Zr5DLZop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencd.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencd.xml
new file mode 100644
index 0000000..646977e
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencp.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencp.xml
new file mode 100644
index 0000000..2e052d9
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/j4xwF_j8iFTVayUMfxLgMnTbencp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkd.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkd.xml
new file mode 100644
index 0000000..c67e567
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkp.xml b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkp.xml
new file mode 100644
index 0000000..880a245
--- /dev/null
+++ b/resources/project/NjSPEMsIuLUyIpr2u1Js5bVPsOs/r8LR4nLmg9ai3oHrW1r_-KocQzkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgd.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgp.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgp.xml
new file mode 100644
index 0000000..8fa93cf
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/XOliNI5tAvEpI8n6oO6KfwmJOKgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUd.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUp.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUp.xml
new file mode 100644
index 0000000..627cf0e
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/kufzDhenyCvAnn90gFj3ywyD8tUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54d.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54p.xml b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/PhkkUCtNRlLKVzpYW9VbrI0GOJ8/mtS56I1srJVYboyp7tHyr9sfB54p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Project.xml b/resources/project/Project.xml
new file mode 100644
index 0000000..62d05aa
--- /dev/null
+++ b/resources/project/Project.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4d.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4p.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4p.xml
new file mode 100644
index 0000000..52e7115
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/cd4DU2TP05CbxZxNxSHhRtjOtl4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQd.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQp.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/dZLB6QLhcblTBAgqP4X5QUoGlBQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yd.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yp.xml b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yp.xml
new file mode 100644
index 0000000..f75e1dc
--- /dev/null
+++ b/resources/project/QU_AfOe5PdJWXKbthIOaWxdsqb4/rvBhwmKMKoyIZ_wPjHPM-Gypo5Yp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEd.xml b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEp.xml b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEp.xml
new file mode 100644
index 0000000..fd1391c
--- /dev/null
+++ b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/rzf9a_yWl4pd8ZFuPdgKMUvNVWEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4d.xml b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4p.xml b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/R6m7AxFfSX7StHtVJ9WG44h96GM/vH6_y7kgT4t7f1SDCWtzaJXb8W4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgd.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgp.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/BM9iKpEbphQ5-PhgqXPOedhcDYgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMd.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMp.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMp.xml
new file mode 100644
index 0000000..e2e5b5f
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/CBYbuW8pCtybaQsFoHkB2i32piMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwd.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwp.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwp.xml
new file mode 100644
index 0000000..70dd5cb
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/DFREn9WnWmRszK08d3efoT6HGhwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8d.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8p.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8p.xml
new file mode 100644
index 0000000..b196276
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/ISetil6aNbRvZxoESjxpD_vkFc8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAd.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAp.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAp.xml
new file mode 100644
index 0000000..9a3a341
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/W5RsYqxc_YmUt80PNHIAKaLomyAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nod.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nop.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nop.xml
new file mode 100644
index 0000000..b9594d2
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/Yv3Qq3Et6dT939fJrgomZ73g4Nop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkd.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkp.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkp.xml
new file mode 100644
index 0000000..06b310f
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/dnVXr6XlSsJ7GQ5_kKcf5BetcLkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104d.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104p.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104p.xml
new file mode 100644
index 0000000..47e31f8
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/fO90Pt4RRixSIzaBBjEZrYP6104p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868d.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868p.xml b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868p.xml
new file mode 100644
index 0000000..a69f9c7
--- /dev/null
+++ b/resources/project/T-9JWVqs7fi-i7BkOred0fZCUEw/wj0OvPHWPSOW_9FPTz4LFP-w868p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cd.xml b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cp.xml b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cp.xml
new file mode 100644
index 0000000..582f373
--- /dev/null
+++ b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/Ykdw1PozDo8-ZNDGujFwZ1fXr0cp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYd.xml b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYp.xml b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Vp_9l8lxHuv6voL7PN0fiXXP5Sw/uIvi2aBy1jN83w--nu4-MPf4UKYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMd.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMp.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMp.xml
new file mode 100644
index 0000000..bbeda36
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/-hY0LiIIIeEb5xxNVf-OypNv1LMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534d.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534p.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534p.xml
new file mode 100644
index 0000000..2f420e5
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/U_oHb-K22IaNJNZLJl032KH4534p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAd.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAp.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAp.xml
new file mode 100644
index 0000000..3db1d3c
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/gIZ0XeC_D-4D03vMkweNsEvb3BAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowd.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowp.xml b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/VxZqk18iE37xaXSU_Jjq9A6r6dM/kcLHXcX51wNvgLc2nxReA0KYDowp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAd.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAp.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/fEchmo6EmJcbt6kV4XcGi710tDAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkd.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkp.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkp.xml
new file mode 100644
index 0000000..ca4955f
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/lQMxcScolq-aCh7Z96Wq1i1H1Gkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkd.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkp.xml b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkp.xml
new file mode 100644
index 0000000..d1ed082
--- /dev/null
+++ b/resources/project/W5RsYqxc_YmUt80PNHIAKaLomyA/xYM0BjkTVTjnmwZUPrxaXHJCbTkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4d.xml b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4p.xml b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/56FH3A72XdjhW0wZ-bdGBAPlhA4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsd.xml b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsp.xml b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsp.xml
new file mode 100644
index 0000000..951e02e
--- /dev/null
+++ b/resources/project/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84/5bPnIjOY5eOO8u89nTynLxKTlvsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sd.xml b/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sp.xml b/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/YW9n1vwFNM9_ulRD00tv7Dd-IRw/WTyhMrFSZw_GSCOydw_4_hayi4sp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28d.xml b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28d.xml
new file mode 100644
index 0000000..cc37f91
--- /dev/null
+++ b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28d.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28p.xml b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28p.xml
new file mode 100644
index 0000000..ff14cfe
--- /dev/null
+++ b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/cSvJV8SYECwmpOUT6v1OqSH6G28p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgod.xml b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgop.xml b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/YhuPDDuEWIGe0C07ihHYccefon0/mXCVGRnnD-Nx2c1j7zCLj-Znmgop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgd.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgp.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/JDfekevkK2WIgdz_NnVPpqRFfbgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkd.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkp.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkp.xml
new file mode 100644
index 0000000..66c59a6
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/su6KToy38be8T1dloVNE3ryYkIkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VId.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VIp.xml b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VIp.xml
new file mode 100644
index 0000000..05772bc
--- /dev/null
+++ b/resources/project/Yv3Qq3Et6dT939fJrgomZ73g4No/vwIJ2ViAyCj1Da39N_NODfPc7VIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMd.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMd.xml
new file mode 100644
index 0000000..7688e41
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMp.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMp.xml
new file mode 100644
index 0000000..d9d99d2
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/RkWGXcQjEwtnTuYoUMbMTFBRuOMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAd.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAd.xml
new file mode 100644
index 0000000..79316c3
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAp.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAp.xml
new file mode 100644
index 0000000..03bcc00
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/Uc-Bsp_6rXfSLAzRzpHKLqrW9gAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEd.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEd.xml
new file mode 100644
index 0000000..8f602f1
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEp.xml b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEp.xml
new file mode 100644
index 0000000..f2ca985
--- /dev/null
+++ b/resources/project/a0Bzu3YzDjSg6neijOuBT3hMFlI/aQ9G5zIeFn9NeGdO7uFuyapdtCEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118d.xml b/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118p.xml b/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/amwE3LmoG--0pRWluRol6WgE4ZY/lmBC8LfYX7EpuYL-T1EededA118p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkd.xml b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkp.xml b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/R-7xtJ2vXx6OPOeWjUKubjg2gTkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0d.xml b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0p.xml b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0p.xml
new file mode 100644
index 0000000..c113090
--- /dev/null
+++ b/resources/project/bdX3WkJVK_GQoeKOCqkVpqxGCUU/qFMQim7SkmFzKzdtRd7uY8Kh2G0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Ud.xml b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Ud.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Ud.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Up.xml b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Up.xml
new file mode 100644
index 0000000..8c55f84
--- /dev/null
+++ b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/KLaDtw9Yvd52XQp-H2TzW7JgZ4Up.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wd.xml b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wp.xml b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/c2PL6LfvwGeB72WMaLzRkg3yMig/Y2rl-gjDUnYXYoOsaMB8qD2p89wp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYd.xml b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYp.xml b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYp.xml
new file mode 100644
index 0000000..ea8844b
--- /dev/null
+++ b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/3K-7bZOUwIUmRIbWj7-5pth5oDYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0d.xml b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0p.xml b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/cDbMI9BHPsiw4Y8EKV5FqEFQcxo/ibO06LNBXMs4wyWdrmv07TCYGJ0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkp.xml
new file mode 100644
index 0000000..3cab266
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/1cvbPbjFCSs6nWBBgK9TGpYQnmkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUp.xml
new file mode 100644
index 0000000..f80b1ec
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/2Pje-XnSwJVyu30a86cZjbRGngUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qp.xml
new file mode 100644
index 0000000..589b0e0
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/3EHhAHLyH1VixscR1AsGB7SU09Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8d.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8p.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8p.xml
new file mode 100644
index 0000000..e98911a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/7tzNxMUxrBHihcFAxpmhhVHyZO8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4d.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4p.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/A-LX57BD4ehQtFoE2-L36Xp1GE4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yp.xml
new file mode 100644
index 0000000..3462d4f
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/C7aPy8kWaxgeRK51L-OwU44og0Yp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegp.xml
new file mode 100644
index 0000000..f3f6561
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/LzSQvyZc2EeZsC0ypLmO7oggkegp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAp.xml
new file mode 100644
index 0000000..2872015
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/ZHj7Zw1SIEFZabHSHVddeErCHpAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00d.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00p.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00p.xml
new file mode 100644
index 0000000..d0ae76d
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/c5FRQyWxM244DBMiUa2JOtEFH00p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocp.xml
new file mode 100644
index 0000000..83df090
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cncTLqjhfvWHaMxlF17sK4AtLocp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kp.xml
new file mode 100644
index 0000000..1d1a0eb
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/cymkgOiBCeJN4YnyTeduJ0j2V3kp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQp.xml
new file mode 100644
index 0000000..4897237
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gPRoMVBfM3tOOc4U2jRXB47qgcQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCId.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCIp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCIp.xml
new file mode 100644
index 0000000..6f0d380
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/gt4QH9igpILvlWupxLfdQsYWlCIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48d.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48p.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48p.xml
new file mode 100644
index 0000000..a382379
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xNmH6hCviPuTdFWUPEGNVzgzs48p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYd.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYp.xml b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYp.xml
new file mode 100644
index 0000000..60cce7e
--- /dev/null
+++ b/resources/project/dnVXr6XlSsJ7GQ5_kKcf5BetcLk/xdbfQw3xNYFLPvUelGefIc65siYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qd.xml b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qp.xml b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/k0NY5advrx95KjP5MnudqGWKa2Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQd.xml b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQp.xml b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQp.xml
new file mode 100644
index 0000000..74c6275
--- /dev/null
+++ b/resources/project/dxTRi7r2Tr50UAjMXrqjniFjaeE/lP_Zt-9TOOp6TgubQd9I-CQy_BQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8d.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8p.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8p.xml
new file mode 100644
index 0000000..a2d16d9
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/38jm1QFHcB-Odf4ZKi4KjyLDWU8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMd.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMp.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMp.xml
new file mode 100644
index 0000000..feb3768
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/3lS05rsKxycToX-jpITBufjp8ZMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwd.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwp.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwp.xml
new file mode 100644
index 0000000..aed5506
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/HG2I2pFjgaKHBVOUNm0KzcO3dnwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMd.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMp.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMp.xml
new file mode 100644
index 0000000..5a4f0bd
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/IujflPZQeGDqVi2yIZOpI-tTnOMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYd.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYp.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYp.xml
new file mode 100644
index 0000000..6f37406
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/RuArmvy-lreXiVIU2ByrQLSi0nYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsd.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsp.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsp.xml
new file mode 100644
index 0000000..bbc51c7
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/a-1--pFcc2Td442LzHi630LFmKsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0d.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0p.xml b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/fO90Pt4RRixSIzaBBjEZrYP6104/j-A1W2iPVLnsAWFIRFB3Re6afn0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsd.xml b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsd.xml
new file mode 100644
index 0000000..5de8c3e
--- /dev/null
+++ b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsp.xml b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsp.xml
new file mode 100644
index 0000000..642c7d7
--- /dev/null
+++ b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/NjSPEMsIuLUyIpr2u1Js5bVPsOsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlId.xml b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlId.xml
new file mode 100644
index 0000000..8e4e6fd
--- /dev/null
+++ b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlIp.xml b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlIp.xml
new file mode 100644
index 0000000..2341fdc
--- /dev/null
+++ b/resources/project/fjRQtWiSIy7hIlj-Kmk87M7s21k/a0Bzu3YzDjSg6neijOuBT3hMFlIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcd.xml b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcp.xml b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/1c1e_d0OUntoXbad_m_wnEhrXGcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgod.xml b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgop.xml b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgop.xml
new file mode 100644
index 0000000..cdca79e
--- /dev/null
+++ b/resources/project/flB_MdgyZvmjyvpwXedUxz1gJw0/XPMGNeQS6mJozfVJhtB-OcdkZgop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgd.xml b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgp.xml b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/5yu64Xcwj52ZanDP-AjzadahjCgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830od.xml b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830od.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830od.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830op.xml b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830op.xml
new file mode 100644
index 0000000..8c2544c
--- /dev/null
+++ b/resources/project/fmFWrya5dYvjMG_NA_zOeAY0OX0/Z-Dx9LOvBcepp5wk7z2VFcz830op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAd.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAp.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAp.xml
new file mode 100644
index 0000000..f75e1dc
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/-qJU1CfNiIBOjeUA93ibN7krzXAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgd.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgp.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgp.xml
new file mode 100644
index 0000000..52e7115
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/3ffZJQPS2DYe_Pzhiv5ohxxVYhgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgd.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgp.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgp.xml
new file mode 100644
index 0000000..b229f94
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/Gp_kdpiwz13tWvbMPhittX3xpwgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULId.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULIp.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULIp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/X9Kxtg6pxjDb7XrA80amGpLhULIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAd.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAp.xml b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAp.xml
new file mode 100644
index 0000000..04498a7
--- /dev/null
+++ b/resources/project/foF566W87FSOMoVMX1LTEqCGeFk/o8S1WbqTtNf0oVhGFoQxXn0gdOAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAp.xml
new file mode 100644
index 0000000..27f25aa
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/24JlyTSNbZ2I9yFp6TmERVGcunAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUp.xml
new file mode 100644
index 0000000..a185670
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/4ZAeVIpa0-8TcsX3TQdM-RCcESUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsp.xml
new file mode 100644
index 0000000..bfe0d79
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/5T7A16Z1WDRLDmyECxLdB02Fbzsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysp.xml
new file mode 100644
index 0000000..dcab565
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/9C8xHb4OvQuv1_AidDc_NHAQdysp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogp.xml
new file mode 100644
index 0000000..97cc6d6
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BMIkZD9Ut3lgzLXz_JRWrejajogp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncp.xml
new file mode 100644
index 0000000..6c9be24
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/BS8K9Iq84wGOYFqWvnKAlrTJxncp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yp.xml
new file mode 100644
index 0000000..9ea6cb1
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/HC5B1Uhuf7TAaIuekEwMExCu7_Yp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/ITYe1RrNA_Ztl9G5r2_H6mKZxOgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYp.xml
new file mode 100644
index 0000000..ac4d88b
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/LMTx1XSv-VGEf2ZwIAqNhsxSBpYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiId.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiId.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiId.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiIp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiIp.xml
new file mode 100644
index 0000000..4978f09
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/NScfG1EuccW_XNaFm4yIyJW0IiIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcp.xml
new file mode 100644
index 0000000..9a02200
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/VdkMFYpBpBa3x2I2Y7kLG5jfchcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkp.xml
new file mode 100644
index 0000000..29b50d7
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/foF566W87FSOMoVMX1LTEqCGeFkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0d.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0p.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0p.xml
new file mode 100644
index 0000000..6aba84a
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/l9kJ-gMFk0eMnHvUjPbsazfTRZ0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcp.xml
new file mode 100644
index 0000000..8668703
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/nL08M41SNp3dOtPs0cH3sUyWGvcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkp.xml
new file mode 100644
index 0000000..defb349
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/rnyIKhM5PMDSkW5kBsC7fkRVTMkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsp.xml
new file mode 100644
index 0000000..d0650d8
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/th8U56ecNYFg1ULcfEzpdndLrBsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qd.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qp.xml b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qp.xml
new file mode 100644
index 0000000..1f18b33
--- /dev/null
+++ b/resources/project/g8zVUwNZYjZU7azHmMlQhZIQfQs/yjAjA6UBkFWJW92yCjQXMSP3E7Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Ud.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Ud.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Ud.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Up.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Up.xml
new file mode 100644
index 0000000..b3eae8b
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/5zSBwUXAtZHFG7q1FvobFNJRh8Up.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsd.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsp.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DjS8HTl9e35s4mwxi3YcFnysxxsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgd.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgp.xml b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgp.xml
new file mode 100644
index 0000000..4c20e17
--- /dev/null
+++ b/resources/project/gXAf8inQdd-TSYMMB6SJ2NvE16A/DwOBECVM6Xm_mgX0pvMMBWjyVpgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gd.xml b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gp.xml b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gp.xml
new file mode 100644
index 0000000..511eabb
--- /dev/null
+++ b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/9njbgaTtj1FAV7EMFG0FxOYSP0gp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Id.xml b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Id.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Id.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Ip.xml b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Ip.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/gc_wD7vps1lFSFvO-e1XRYSxtVM/Zm3z_kjcxY3DepDMtmG2nVG960Ip.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkd.xml b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkp.xml b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkp.xml
new file mode 100644
index 0000000..60cf1c9
--- /dev/null
+++ b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/on7VumSQiqsYfjUxRdc3Bb8nBKkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0d.xml b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0p.xml b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/gpEWyHFjps63d-n8bAC0km3YS7o/wonAh7U_KfYEycBsN0w-H9XvHw0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKod.xml b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKop.xml b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/7vxfHPghz-_QcEtCzB9nqEmoaKop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSId.xml b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSIp.xml b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSIp.xml
new file mode 100644
index 0000000..e912cf0
--- /dev/null
+++ b/resources/project/gyCpuf_F7ZQ2rWPnkIeZB6DBfO4/nWrybsFoJrcJBJ3pqgdArLzXJSIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQd.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQp.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/8Qdz0iiiuHlFJjxB6c5reQ4NAkQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEd.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEp.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEp.xml
new file mode 100644
index 0000000..65ea2c0
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/EI1RkdnKK4ynhXGXuX0TG7KojKEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gd.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gp.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gp.xml
new file mode 100644
index 0000000..71b9da3
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/PJgqmQwXAAj2blwCe48pc2nZk4gp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5od.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5od.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5od.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5op.xml b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5op.xml
new file mode 100644
index 0000000..4137335
--- /dev/null
+++ b/resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s/k6BmCy8Cn6LGTRnWRXWsueiFC5op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcd.xml b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcp.xml b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/H-8N-sEMJ1D1EVdmbd5mZj-omDcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAd.xml b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAp.xml b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAp.xml
new file mode 100644
index 0000000..2551ee6
--- /dev/null
+++ b/resources/project/iz_S_c8YQmNBecRS5pq-kzdBckg/fc2U3m-GZWTfviAZKimSsxaIJQAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkd.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkp.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkp.xml
new file mode 100644
index 0000000..ed0fc0d
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/0mhcRENGf4aflf-Zn7KfjfjBbYkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wd.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wp.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wp.xml
new file mode 100644
index 0000000..55eb986
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/34Cych17f2TVDulPIYS6g3Kbl3wp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwd.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwp.xml b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/jugw78qkaHZO0v8k4o1c1OuCqUg/aw7M2H0dQM2iL6fn4oGgA-U39rwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEd.xml b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEp.xml b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEp.xml
new file mode 100644
index 0000000..22f0ee5
--- /dev/null
+++ b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/QJfMrhcRlcEMrTBC0O1rKizOmpEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwd.xml b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwp.xml b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/ke48wZA2YxIzn3v5vrnf99LqbEY/U6pc6Pq3XGO346ig07EqUidS_kwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4d.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4p.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4p.xml
new file mode 100644
index 0000000..85fcb07
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/-i5CiiJthkzqFJL8FHGU2qUdrQ4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsd.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsp.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsp.xml
new file mode 100644
index 0000000..244938a
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/00EIX37DyA_CbKJH9yEDrF6Y8nsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAd.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAp.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/FFOoqevST0gJIqfsm4I9Yl3kRtAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMd.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMp.xml b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMp.xml
new file mode 100644
index 0000000..44856f8
--- /dev/null
+++ b/resources/project/l-gnCbRvDO-i5G8C0LxqkxF1UnI/Fv3tvMqCZDif_FoL5k_vevF2ENMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAd.xml b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAp.xml b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAp.xml
new file mode 100644
index 0000000..2785ead
--- /dev/null
+++ b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/H52SpyA1thgs67dYb6XzVxVUNfAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArod.xml b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArop.xml b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/lnqGKBuusRMNvBkyFz7Vu6knaEA/uToEUD4H5iPi11bvG3o_RopoArop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMd.xml b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMp.xml b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMp.xml
new file mode 100644
index 0000000..f5b5232
--- /dev/null
+++ b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/QJB1lZDf_xunV8jHGay0OZuKEuMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEd.xml b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEp.xml b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/lrPbbhm4s70prEhLj2U5_gpkizU/m6TUhO9KNBkTw_i0qhtGrP4DkaEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQd.xml b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQp.xml b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/JS9MVZLGwN17UL2yZ5HwrT3jBoQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8d.xml b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8p.xml b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8p.xml
new file mode 100644
index 0000000..e114858
--- /dev/null
+++ b/resources/project/m2RoOdosli_O0_jvTkmYSZmmYAM/LIp3FA6Qwz1Dh0c2ws4VjiQUAm8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEd.xml b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEd.xml
new file mode 100644
index 0000000..721cfdc
--- /dev/null
+++ b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEp.xml b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEp.xml
new file mode 100644
index 0000000..f6186a9
--- /dev/null
+++ b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/QDA-hweik1DPiV3dZxXaF1CWWlEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0d.xml b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0p.xml b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/mVuJOLmLpJ2FxQLNlNz3p3gSIWY/tXw9xNycuLrBgipwxmb43VTl9W0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gd.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gp.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gp.xml
new file mode 100644
index 0000000..0e10436
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/AD2VM_T0j23gmUrkXBICsQ0sX2gp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUd.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUp.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUp.xml
new file mode 100644
index 0000000..5247d2c
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/NYV4By6o0Yt5croJQagVuE_HzpUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4d.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4p.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/QPsLWsbFTAe3xpBm4EaBkutaFW4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkd.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkp.xml b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkp.xml
new file mode 100644
index 0000000..d49ff7d
--- /dev/null
+++ b/resources/project/nNF-wwapMPg8DpawDPT-aOi3fQY/qqvP7uoRlkIwcP1Ox1FYb-lGZVkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygd.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygp.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/8oI-TtYAwgFPzxGzoDLAkKPC0Ygp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUd.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUp.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUp.xml
new file mode 100644
index 0000000..68bf245
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/FpAvvdahB0BcVcsPkmrz_8jqkMUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcd.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcp.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcp.xml
new file mode 100644
index 0000000..5998639
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/fRpdZgCS01QJhwmAl03_l0a28qcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10d.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10p.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10p.xml
new file mode 100644
index 0000000..e7c11c6
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/gimR5-ObgCF_ri9IK7Bz_ktur10p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Md.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Md.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Md.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Mp.xml b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Mp.xml
new file mode 100644
index 0000000..555eda7
--- /dev/null
+++ b/resources/project/nWrybsFoJrcJBJ3pqgdArLzXJSI/y75PLDsGQpFB5DsXvZ8MwTJQK7Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwd.xml b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwp.xml b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/1ZhDH2HsPA7Fe0x8nw5Nrgc_BNwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Md.xml b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Md.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Md.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Mp.xml b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Mp.xml
new file mode 100644
index 0000000..1822519
--- /dev/null
+++ b/resources/project/oFB9IUOq4iQgOhupbKN0Lu6r_t8/OlZl92VwQwFx1HaJHeysxEkGq1Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwd.xml b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwp.xml b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/5mMAUpXm69ZqtWxFJf1V0_DHkCwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08d.xml b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08p.xml b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08p.xml
new file mode 100644
index 0000000..8b41057
--- /dev/null
+++ b/resources/project/oUCjzIE3VB4Jhv9NJ7ZCuMODDxc/HNnD2rc4bB5x5xNN5xIWrXZEe08p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ad.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ad.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ad.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ap.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ap.xml
new file mode 100644
index 0000000..de54642
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/0RDbKO51zRE0qdReNfPa2xiRW5Ap.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsp.xml
new file mode 100644
index 0000000..c93b23a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/2Ic5Mox27lqorEt93pW6icvvNKsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgp.xml
new file mode 100644
index 0000000..8d5380f
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/3X3-yK3xLLR7MTe5Bj8U3qz5Rcgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwp.xml
new file mode 100644
index 0000000..2ac15a8
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/AZ8Rt8JTW8AQIVbePEaBdS1vixwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkp.xml
new file mode 100644
index 0000000..3cb62b9
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/JfKb08eTkpSQPg8zn-DxlNc2HGkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8d.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8p.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8p.xml
new file mode 100644
index 0000000..07bc4f0
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Kxn0lTIStZhlHYyuDabV7lEduw8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84d.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84p.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84p.xml
new file mode 100644
index 0000000..a616500
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/Y1mJJKsOT9B4cCnx5Aw3Rz6Ah84p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxod.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxop.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxop.xml
new file mode 100644
index 0000000..708c6d4
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/cDbMI9BHPsiw4Y8EKV5FqEFQcxop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEp.xml
new file mode 100644
index 0000000..79cf158
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/dxTRi7r2Tr50UAjMXrqjniFjaeEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0d.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0p.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0p.xml
new file mode 100644
index 0000000..1712aea
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/flB_MdgyZvmjyvpwXedUxz1gJw0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUd.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUp.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/j2x_tRq7xLGX3-kzTHmbIfSNacUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ad.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ad.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ad.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ap.xml b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ap.xml
new file mode 100644
index 0000000..aa3d6db
--- /dev/null
+++ b/resources/project/ojmKDYyY550CI1H1CNE8usxuTu4/pkl2ux-0RuDX6lwU78qaosBY03Ap.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUd.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUp.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/0kK47cOHwsW7a1GaaqpQDigXMNUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0d.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0p.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0p.xml
new file mode 100644
index 0000000..1e68d79
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/PLvkBoSKFRRmvI2wlyKZ6RmUie0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUd.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUp.xml b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUp.xml
new file mode 100644
index 0000000..4e0ac06
--- /dev/null
+++ b/resources/project/p2B2kuKn-TR4inf0L2-zoGElvj0/jEzlwmUzwFhDwY_2iTe3IY3EWUUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSId.xml b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSIp.xml b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSIp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/2cAJmg_ShA8CeNX4mfd85XMNKSIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yd.xml b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yp.xml b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yp.xml
new file mode 100644
index 0000000..7e617a0
--- /dev/null
+++ b/resources/project/pkl2ux-0RuDX6lwU78qaosBY03A/IKesbgcEFg8CvMnFviuHDKlrM7Yp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQp.xml
new file mode 100644
index 0000000..ad4d99a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/3fSHAHL-m_a1SHDhGWxRDehErTQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUp.xml
new file mode 100644
index 0000000..a9c1803
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/I-dDyJ1p--Q0ihIJ8NFdLVLQLTUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8d.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8p.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8p.xml
new file mode 100644
index 0000000..2123321
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/MDnWniV77enVhZz9_UXTaL0JBX8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUp.xml
new file mode 100644
index 0000000..4137335
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/QMJD9OLFzxcTTbPOoh-ahQ4zTRUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMp.xml
new file mode 100644
index 0000000..b0b0690
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/R6m7AxFfSX7StHtVJ9WG44h96GMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAp.xml
new file mode 100644
index 0000000..77329db
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/TMK4UzWHdRLhy_w-CHt9y11Q8XAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0d.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0p.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0p.xml
new file mode 100644
index 0000000..83ab938
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/YhuPDDuEWIGe0C07ihHYccefon0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0d.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0p.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0p.xml
new file mode 100644
index 0000000..78c34ff
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/bTEJeU_8R4R4qC77t7aJSjzV1F0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sp.xml
new file mode 100644
index 0000000..a6ab1bb
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/hLMKfvmMZYFbdoE4Xco7ryXas6sp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYp.xml
new file mode 100644
index 0000000..ca5f21e
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/mVuJOLmLpJ2FxQLNlNz3p3gSIWYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0d.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0p.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0p.xml
new file mode 100644
index 0000000..2024c50
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/nhOFmJvSVXlgI9w7x6wO9HM8J-0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkd.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkp.xml b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkp.xml
new file mode 100644
index 0000000..603491d
--- /dev/null
+++ b/resources/project/qaw0eS1zuuY1ar9TdPn1GMfrjbQ/qD-kr16wmwlzR-nIg1IG_vvRrWkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBId.xml b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBIp.xml b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBIp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/YJbPEt1_sS1EJ8uGg4O-fSuriBIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcd.xml b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcp.xml b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcp.xml
new file mode 100644
index 0000000..b2734a7
--- /dev/null
+++ b/resources/project/qqvP7uoRlkIwcP1Ox1FYb-lGZVk/xnN8gkIU51F9VuHQwUT1KeEnpqcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQd.xml b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQp.xml b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/7LdNvxYaz8lsA0iie2q_hgGG3vQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4d.xml b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4p.xml b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4p.xml
new file mode 100644
index 0000000..9b012b0
--- /dev/null
+++ b/resources/project/rPeLkcVimHDUZ2iJkGTP7oBw3XQ/ANGGaUNKKHoZAT_G1ll8wEucEf4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/EEtUlUb-dLAdf0KpMVivaUlztwAp.xml b/resources/project/root/EEtUlUb-dLAdf0KpMVivaUlztwAp.xml
new file mode 100644
index 0000000..fee2cd2
--- /dev/null
+++ b/resources/project/root/EEtUlUb-dLAdf0KpMVivaUlztwAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQd.xml b/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQd.xml
new file mode 100644
index 0000000..384d62b
--- /dev/null
+++ b/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQp.xml b/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQp.xml
new file mode 100644
index 0000000..2037c33
--- /dev/null
+++ b/resources/project/root/GiiBklLgTxteCEmomM8RCvWT0nQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwd.xml b/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwd.xml
new file mode 100644
index 0000000..3d5099b
--- /dev/null
+++ b/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwp.xml b/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwp.xml
new file mode 100644
index 0000000..61f9ce0
--- /dev/null
+++ b/resources/project/root/YW9n1vwFNM9_ulRD00tv7Dd-IRwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYd.xml b/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYd.xml
new file mode 100644
index 0000000..1b91b4e
--- /dev/null
+++ b/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYp.xml b/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYp.xml
new file mode 100644
index 0000000..4ad31d1
--- /dev/null
+++ b/resources/project/root/amwE3LmoG--0pRWluRol6WgE4ZYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/fjRQtWiSIy7hIlj-Kmk87M7s21kp.xml b/resources/project/root/fjRQtWiSIy7hIlj-Kmk87M7s21kp.xml
new file mode 100644
index 0000000..a4de013
--- /dev/null
+++ b/resources/project/root/fjRQtWiSIy7hIlj-Kmk87M7s21kp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/root/qaw0eS1zuuY1ar9TdPn1GMfrjbQp.xml b/resources/project/root/qaw0eS1zuuY1ar9TdPn1GMfrjbQp.xml
new file mode 100644
index 0000000..8b0d336
--- /dev/null
+++ b/resources/project/root/qaw0eS1zuuY1ar9TdPn1GMfrjbQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rootp.xml b/resources/project/rootp.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rootp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8d.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8p.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8p.xml
new file mode 100644
index 0000000..b864095
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/0IJR_-GHKzclpP23ENDUUIttpv8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsp.xml
new file mode 100644
index 0000000..354a345
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/9oO9ccxEf7PO6C0VYddrryP1uRsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsp.xml
new file mode 100644
index 0000000..a289150
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/CA31HPaFQ_VK20Knqcw6lPdrkgsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikp.xml
new file mode 100644
index 0000000..d752f06
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/HAioorIuRIQ55_X75-tXkAws9Ikp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skp.xml
new file mode 100644
index 0000000..e97aa3f
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/LQAHKAds470Wwg0BXnX6IE6T2Skp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/bG5ChVmc5jDglL24EXFUrR9nDhwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0d.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0p.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0p.xml
new file mode 100644
index 0000000..3a1cc84
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/fmFWrya5dYvjMG_NA_zOeAY0OX0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7od.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7od.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7od.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7op.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7op.xml
new file mode 100644
index 0000000..9091286
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/gpEWyHFjps63d-n8bAC0km3YS7op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAp.xml
new file mode 100644
index 0000000..89bfed7
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/lnqGKBuusRMNvBkyFz7Vu6knaEAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8d.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8p.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8p.xml
new file mode 100644
index 0000000..0d31221
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/wJFJMqdZAbXFi-zo8jZwwUVIsM8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcd.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcp.xml b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcp.xml
new file mode 100644
index 0000000..5088c3e
--- /dev/null
+++ b/resources/project/rvAXqtX06ibkfpgkO3iGAKOWBiE/zKXG0p_lTbV4IEUmtrzMAXKQ7Gcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/50sXhVULbljlzoJykflP_3nEqugp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0d.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0p.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0p.xml
new file mode 100644
index 0000000..6241696
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/ACTDebwgL8c7Hhwu2XrMES53jP0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYp.xml
new file mode 100644
index 0000000..d14c676
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/HwUDquLKfuf6FhaLxTqFgCHdaNYp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsp.xml
new file mode 100644
index 0000000..769b398
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/g8zVUwNZYjZU7azHmMlQhZIQfQsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgp.xml
new file mode 100644
index 0000000..a55296c
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/kuX8NGy7dZ04CTtTelRh8hVmwxgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnId.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnIp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnIp.xml
new file mode 100644
index 0000000..78df42c
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/l-gnCbRvDO-i5G8C0LxqkxF1UnIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kp.xml
new file mode 100644
index 0000000..6af9c72
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/oU65PyZzilB6UtS8g_jZL_ZY73kp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUp.xml
new file mode 100644
index 0000000..88e43f4
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/tS6AcoRfUuRsgVVxEvTotcsYVDUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAd.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAp.xml b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAp.xml
new file mode 100644
index 0000000..9336b7b
--- /dev/null
+++ b/resources/project/rzf9a_yWl4pd8ZFuPdgKMUvNVWE/yMDyjPYRvBShaP4T3tUiWd5R8CAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAd.xml b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAp.xml b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/5F_CqvAW67ap2sC3-XLvWrQV5xAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4d.xml b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4p.xml b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4p.xml
new file mode 100644
index 0000000..d295c18
--- /dev/null
+++ b/resources/project/v9VUCXOs3f_1u6SHw1-ICFBpaZ4/XnTw9wLEbTLyg7M9Lug_AXsdkX4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0d.xml b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0p.xml b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0p.xml
new file mode 100644
index 0000000..c7ae5f3
--- /dev/null
+++ b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/kxzFXdLfwyT9vjffUsWrZFIA_I0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48d.xml b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48p.xml b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/vmjbHl25tTgLvKhScF_qF-MAUv4/ncHMP2P2xwukIKWkZxfnPZaBt48p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkd.xml b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkp.xml b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkp.xml
new file mode 100644
index 0000000..6a6a25c
--- /dev/null
+++ b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/6Z8EuzsZXfslxRO5B_CPKfjGIkkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vod.xml b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vop.xml b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/wJFJMqdZAbXFi-zo8jZwwUVIsM8/DYar_dmA5WcCNEs2-QGCLEIs_Vop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEd.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEp.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEp.xml
new file mode 100644
index 0000000..732c39c
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/2-PQmjc2eu1Zbi6eh7nAnafq-hEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qd.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qp.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qp.xml
new file mode 100644
index 0000000..0bbbb84
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/6DloKhitRWufmb3-eWV8n9OBk4Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8d.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8p.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8p.xml
new file mode 100644
index 0000000..91608cc
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/9qWGZZwAZFMGoDNCwyE4fxWV4D8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gd.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gp.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gp.xml
new file mode 100644
index 0000000..0190af6
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Jlh5qae77BNQjPG5DIvHcKo_p2gp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4d.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4p.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4p.xml
new file mode 100644
index 0000000..48d2ad6
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/OEirkCMkQSLpLOWqF0FVO7JfaP4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQd.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQp.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQp.xml
new file mode 100644
index 0000000..0836448
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/Te_KRhNVrXln9bfsav2A31sb4IQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhod.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhod.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhod.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhop.xml b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhop.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/wj0OvPHWPSOW_9FPTz4LFP-w868/gbW1iTmxih7qNRjyEKDuQ6Sgxhop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554d.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554p.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554p.xml
new file mode 100644
index 0000000..18c7aaa
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/3qPcgM_2ltoZDIf6Kbp8YQt9554p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4d.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4p.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4p.xml
new file mode 100644
index 0000000..a40e31f
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/C9wAYxhMN895olq2WHeFCYTkft4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4d.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4p.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4p.xml
new file mode 100644
index 0000000..0846b0d
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/K3654B7j9TjuGwSN-t0Um1CyjM4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUd.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUp.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUp.xml
new file mode 100644
index 0000000..b1ceee0
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/SFe2YHn3UgN1s4Gv0g9klr6UMpUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cd.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cp.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/X-L8BS_RCwahHtye8yVT48IpM8cp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Md.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Md.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Md.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Mp.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Mp.xml
new file mode 100644
index 0000000..c83821d
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/adh3LXEifVNW-eRxYEtwwidUn6Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgd.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgp.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgp.xml
new file mode 100644
index 0000000..2aeb1aa
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/fd5AfkN8eH4Ax5FR5xVWU_offFgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8d.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8p.xml b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8p.xml
new file mode 100644
index 0000000..aadf682
--- /dev/null
+++ b/resources/project/yMDyjPYRvBShaP4T3tUiWd5R8CA/n0toyZoNTFgDG8gSAbBVOfnhXC8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEd.xml b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEp.xml b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/gn16-7j7yX8CpXKFPPs4CwThSuEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsd.xml b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsp.xml b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsp.xml
new file mode 100644
index 0000000..50295d8
--- /dev/null
+++ b/resources/project/zGN5zBjunXdKWV7igkdJy6sdQus/stTiFAc7LvFF3gBjpFaQQRs2oUsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMd.xml b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMp.xml b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMp.xml
new file mode 100644
index 0000000..a5cb46a
--- /dev/null
+++ b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/JFaxZ2sIMnNaMVz38qj8w7CbGAMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaId.xml b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaId.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaId.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaIp.xml b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaIp.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/zKXG0p_lTbV4IEUmtrzMAXKQ7Gc/PPgUhSkPb6a38v4MSuCof1uRLaIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gp.xml
new file mode 100644
index 0000000..e33267b
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-BHUrkRTtHiDqpZoKSN0NEjl_6gp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMp.xml
new file mode 100644
index 0000000..47c6074
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/-OihjP7M8I7-12DNfzBMYfrnEPMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Md.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Md.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Md.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Mp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Mp.xml
new file mode 100644
index 0000000..4e4d497
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1S3TvQ4BfM2MoNcgKnjfEYCOx_Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAp.xml
new file mode 100644
index 0000000..7f78797
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/1xzthw6jAQqdbaE3pNPLtv85kiAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJod.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJop.xml
new file mode 100644
index 0000000..17711a7
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/3a4d8kOZuU73ms6wOH6og-CXcJop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwp.xml
new file mode 100644
index 0000000..a55296c
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/66fvFW3n7gOLJC7zXqd4hDiFRjwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUp.xml
new file mode 100644
index 0000000..f497232
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8Fyvsqnv77VkQMfNydyeD5HnpRUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwp.xml
new file mode 100644
index 0000000..c1f7b3d
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/8mz43dKSKr9At6vM-pkJ_99Mrqwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAp.xml
new file mode 100644
index 0000000..cc327ac
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/AGkTorFmOQ7YhvNSRyVigfCchEAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4p.xml
new file mode 100644
index 0000000..5204fd8
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ao9-7LiKejaWwYE7LAycXIsz_r4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0p.xml
new file mode 100644
index 0000000..6241696
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B3dk924cZlZsSsPONMo5DGK7ah0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocp.xml
new file mode 100644
index 0000000..dcab565
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/B6zirw2KoVpGDaJFIzfrkjtVGocp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAp.xml
new file mode 100644
index 0000000..090fd8f
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BYKQbKSFS4lkftkElyVLUrkX0JAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsp.xml
new file mode 100644
index 0000000..a271dda
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BspNsAWerP56fJT6WvOKe4dVzzsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUp.xml
new file mode 100644
index 0000000..18c7aaa
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/BwnGHMQ_tr5_hJ7NUKep0zmsifUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocp.xml
new file mode 100644
index 0000000..5507642
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CFmQxkpsBW7oUbiRYGSkOVR-4Ocp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qp.xml
new file mode 100644
index 0000000..6694301
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/CtiOUxcvcgzOQtJ8OwyRkrasa-Qp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUp.xml
new file mode 100644
index 0000000..6be9e6e
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/D7rWDcQwhboAdPqr987FXstx8XUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8od.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8od.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8od.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8op.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8op.xml
new file mode 100644
index 0000000..b1ceee0
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Dexr_xbXxYk1gwVtSTzyfEWh_8op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkp.xml
new file mode 100644
index 0000000..017db1b
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/EYXWo9l_li6gD8UP10zlrIW--Hkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUp.xml
new file mode 100644
index 0000000..6c9be24
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/G21M9bPqbX9wnOg05E4YWmYKXUUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544p.xml
new file mode 100644
index 0000000..00f6cd6
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GjXfsX9GILyj1ANOb_Qfy_GQ544p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAp.xml
new file mode 100644
index 0000000..efd0c45
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/GlX7rQy6WuRPjYfU1WsPLzTn-lAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwp.xml
new file mode 100644
index 0000000..75ccbb4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HKmw80y99LOEbhdqu4YBiTDWZpwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsp.xml
new file mode 100644
index 0000000..8668703
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/HPhiQOIlMIl4gHKsQYSWWekauxsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0p.xml
new file mode 100644
index 0000000..aadf682
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/IYEKiHRwEa2_rOFM_ffA8neR3z0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFod.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFop.xml
new file mode 100644
index 0000000..2aeb1aa
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Jya3Oro7WCZ7Vy684doE0t8vNFop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwp.xml
new file mode 100644
index 0000000..04498a7
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KE8qNb7xc-R_kPNerdi1b9QcoTwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMp.xml
new file mode 100644
index 0000000..bddf7c4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KH8ioZmQFjETK-Dp0r5CLwK-8uMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMp.xml
new file mode 100644
index 0000000..dc29d2a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/KTeSGs2JCQj8CnvOJXCNSFCvlIMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8p.xml
new file mode 100644
index 0000000..4d98199
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/M-1MHbP30SVK4npnf8SJWbuvVa8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgp.xml
new file mode 100644
index 0000000..06c1476
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NW_h7nj3JE_ZJWyhPyZHjQ6ytjgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAp.xml
new file mode 100644
index 0000000..defb349
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/NcJup-53sY82Dan8O1umfq1QNdAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQp.xml
new file mode 100644
index 0000000..5baf279
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/OPs7oYJnDoeQjbfXx5c4mplw0zQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkp.xml
new file mode 100644
index 0000000..7aa8daf
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Ofy_4ZVQfbFv8nA-OHDaammN7Mkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8p.xml
new file mode 100644
index 0000000..1f0ec10
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/P5QaUahz2G7JV9G6E26NqQhVjg8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwp.xml
new file mode 100644
index 0000000..9327d80
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/PAsRFblEpiE7mDVAuoy9hqtkyxwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_od.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_od.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_od.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_op.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_op.xml
new file mode 100644
index 0000000..97cc6d6
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Pybh4cLLtW5zg23iPZDjLDuiZ_op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4p.xml
new file mode 100644
index 0000000..29b50d7
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/QU_AfOe5PdJWXKbthIOaWxdsqb4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcp.xml
new file mode 100644
index 0000000..10e8a76
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/SEhUGwJlL0vTA-yR7GPFgrtnchcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcp.xml
new file mode 100644
index 0000000..cd9f064
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/TbDurWyLkJehZ1UrarxtdQZ7ECcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bId.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bId.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bId.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bIp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bIp.xml
new file mode 100644
index 0000000..d0650d8
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/UKu4AVI8-2w7pRiuhRvRfKge_bIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Ud.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Ud.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Ud.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Up.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Up.xml
new file mode 100644
index 0000000..7ab5999
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Wi1T6jJvom6rpndsmdADy3wm35Up.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwp.xml
new file mode 100644
index 0000000..89af44f
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/Xh2-1Y-6OiAaxBN_MNwM1Ur16Wwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMp.xml
new file mode 100644
index 0000000..a40e31f
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YB7WT3jGtAKH3FN5Rf49WdxQRdMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4p.xml
new file mode 100644
index 0000000..7c49802
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/YXdCDU8n_ueNf6z6A2AOR_T6Hp4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEp.xml
new file mode 100644
index 0000000..9d18087
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_67Z7_mdWFNvekRS7X01WDmZOXEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHod.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHop.xml
new file mode 100644
index 0000000..6aba84a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/_BGab28SGDStgAIA4UKYktpyrHop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3od.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3od.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3od.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3op.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3op.xml
new file mode 100644
index 0000000..ccb8056
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/alKEB1r2OEKyq3A4j6SNr5IHw3op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMp.xml
new file mode 100644
index 0000000..380f575
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/d2BJ0V_5QdhGFJt7cwYSuOHIIDMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHod.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHop.xml
new file mode 100644
index 0000000..27f25aa
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dbgmd4tZP3gEPbtqiy8lzLiUOHop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4p.xml
new file mode 100644
index 0000000..242cc42
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/dcDjS5bmQvbeE-gHlB1tl7-Fmh4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQp.xml
new file mode 100644
index 0000000..9a02200
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/eKYf5wJ5wMVC3h7s-7M8sb6NUgQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMp.xml
new file mode 100644
index 0000000..c188107
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/erBK0kQSvwTa6AuWMlGD8vAXqcMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgp.xml
new file mode 100644
index 0000000..b229f94
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/fW13j72EpuZ4nTLxWp-c4F8kASgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgp.xml
new file mode 100644
index 0000000..8654b80
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/gw_9QfG08DWBbU_TqqP2Ot9TCmgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0p.xml
new file mode 100644
index 0000000..f89cfa8
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j2GMAfUWHPB-g_VFCFwu2_pslD0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEp.xml
new file mode 100644
index 0000000..a8513ba
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/j6yuww__nM29pRDExxQruEZE3pEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUd.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUd.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUp.xml
new file mode 100644
index 0000000..bfe0d79
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jXVESeOII9MjDmoEVK8HwfDAsgUp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0p.xml
new file mode 100644
index 0000000..a0027b1
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/jrjXU-8JuBaG-5Zch7SaibuNax0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMp.xml
new file mode 100644
index 0000000..8aa6133
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/k3rfcL0Ekfx-UgbcOJ2ovj1xdKMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0p.xml
new file mode 100644
index 0000000..6af9c72
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/ksA_LYyyYM6osORegXjhHoQncq0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgp.xml
new file mode 100644
index 0000000..fe6d6c1
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lIrCrec5QRZhjBIUia9iGgjlfmgp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcp.xml
new file mode 100644
index 0000000..fa8b2e1
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/lWeD0XbHsxA0UBfkMVCMUMoZIhcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyId.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyId.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyId.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyIp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyIp.xml
new file mode 100644
index 0000000..97bb9b5
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/m0kOsKnIPcGuptTwhPzWiRnGxyIp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQp.xml
new file mode 100644
index 0000000..ac4d88b
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/mPWa44OyKZ8VnN0xYYJl71MBKCQp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcp.xml
new file mode 100644
index 0000000..1f18b33
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nJ_U3UtN4RhElgNnYzMuf0RfQCcp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Id.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Id.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Id.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Ip.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Ip.xml
new file mode 100644
index 0000000..15f57b2
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/nq7EU0_ETspMFSrKEMBcTjaL80Ip.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsood.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsood.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsood.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsoop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsoop.xml
new file mode 100644
index 0000000..4978f09
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/pcjg6MKuK5nOsu9zlyRAXuiIsoop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMp.xml
new file mode 100644
index 0000000..9fdb785
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/peJjUpawInN5ugJG-_679HoQ4WMp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0p.xml
new file mode 100644
index 0000000..eabf1d2
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qADr3R8eghWvQjbDINKqAuQQLp0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsp.xml
new file mode 100644
index 0000000..2c47466
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qBb5j7fOZnG_m6CMUgEb5hXq5Qsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0d.xml
new file mode 100644
index 0000000..4356a6a
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0d.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0p.xml
new file mode 100644
index 0000000..01cb34e
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/qODwT7eOW50X7yLLVAO-0qnQos0p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsp.xml
new file mode 100644
index 0000000..0846b0d
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/r8EgIJwBvuerVJvjrEqs5TMZcWsp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Md.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Md.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Md.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Mp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Mp.xml
new file mode 100644
index 0000000..88e43f4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/reUIEy-CUBeOtF34wNXbWlc3d5Mp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAp.xml
new file mode 100644
index 0000000..6a9c457
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/rfJ9wCZASwZg3jAPZRw19TjYPsAp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7od.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7od.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7od.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7op.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7op.xml
new file mode 100644
index 0000000..579cd96
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/sYFUaWihCEJga8xDI8k4Qj_nd7op.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkp.xml
new file mode 100644
index 0000000..d14c676
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/skGG58OBeOCxjgCrjTT6TX3cfPkp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4p.xml
new file mode 100644
index 0000000..aa589ff
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/tbnCnv_41EP8SIWcmPIUzWIXjW4p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEp.xml
new file mode 100644
index 0000000..7da7a80
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/uN4YLcoeFxuIlFGIPk9Op2nWHYEp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWod.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWod.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWod.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWop.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWop.xml
new file mode 100644
index 0000000..b365ee4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/vB_5ZvYT2UGf4UBvXCyGAcpCMWop.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8d.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8d.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8d.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8p.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8p.xml
new file mode 100644
index 0000000..1ac6ab0
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/x-p6N4jQ48SzNYH4wHyclmJviC8p.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwd.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwd.xml
new file mode 100644
index 0000000..99772b4
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwd.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwp.xml b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwp.xml
new file mode 100644
index 0000000..c83821d
--- /dev/null
+++ b/resources/project/zWJd8rdHDIdRsiu1pYBelCR8P6M/yn6QQe_pSicadIYUEPxoIqrSRrwp.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/+pgmatlab/loadPamguardBinaryFolder.m b/src/+pgmatlab/loadPamguardBinaryFolder.m
deleted file mode 100644
index a4b2bb4..0000000
--- a/src/+pgmatlab/loadPamguardBinaryFolder.m
+++ /dev/null
@@ -1,50 +0,0 @@
-function [data background fileInfos] = loadPamguardBinaryFolder(dir, fileMask, verbose, filterfun)
-% load all data from a folder and it's sub folders
-% data = loadPamguardBinaryFolder(dir, fileMask, verbose) loads all data from
-% the folder dir where files satisfy the fileMask. All files must
-% contain data of the same format so mask must specify a particular type
-% of data file, e.g. clicks*.pgdf. If verbose is a non-zero number 'n' then
-% every n files a progress message will be printed on the temrinal.
-%
-% e.g. allclicks = loadPAMFolder('C:/Mydata', 'Click_Detector_*.pgdf', 5);
-%
-if (nargin < 3)
- verbose = 0;
-end
-if nargin < 4
- filterfun = @passalldata;
-end
-data = [];
-background = [];
-d = dirsub(dir, fileMask);
-for i = 1:numel(d)
- if verbose
- if mod(i, verbose) == 0
- fprintf('Loading %d/%d (%d) %s\n', i, numel(d), numel(data), d(i).name);
- end
- end
- [fRoot, fName, fEnd] = fileparts(d(i).name);
- fileNameOnly = [fName fEnd];
- [dat fInf] = loadPamguardBinaryFile(d(i).name, 'filter', filterfun);
- if ~isempty(dat)
- % need to add bookkeeping data to dat so that we know which file
- % each click comes from and also know which click it is within the
- % file.
- for iDat = 1:numel(dat)
- dat(iDat).clickNumber = iDat;
- dat(iDat).fileName = fileNameOnly;
- end
- disp(dat);
- data = [data dat];
- end
- if isfield(fInf, 'background')
- background = [background fInf.background];
- end
- if nargout >= 3
- if i == 1
- fileInfos(numel(d)) = fInf; % allocate entire array
- end
- fileInfos(i) = fInf;
- end
-end
-
\ No newline at end of file
diff --git a/src/+pgmatlab/loadPamguardMultiFile.m b/src/+pgmatlab/loadPamguardMultiFile.m
deleted file mode 100644
index 1d92a03..0000000
--- a/src/+pgmatlab/loadPamguardMultiFile.m
+++ /dev/null
@@ -1,53 +0,0 @@
-function eventData = loadPamguardMultiFile(dataDir, fileNames, itemUID, verbose)
-% function to load all data from an event even if spread over multiple
-% files. This can be used to get binary file data for data associated with
-% PAMGuard 'events' marked out using the click detector or the 'Detection
-% Grouper'. From the database query, for each event make a list of the
-% fileNames and the UID's of individual datas, then this function will call
-% loadPamguardBinaryFile(...) for each of one or more files associated with
-% the event and merge all the data into one array of structure.
-%
-% inputs are root data folder, cell array of binary file names and click
-% numbers
-%
-% eventData = loadPamguardMultiFile(dataDir, fileNames, itemUID)
-% 'dataDir': root folder for binary data
-% 'fileNames': list of file names for each item of interest (generally read from database)
-% 'itemUID': list of UID's of wanted data. Shoule be same length as array of file names
-%
-% returns binary data from multiple files.
-
-eventData = [];
-if nargin < 4
- verbose = 0;
-end
-
-% find the files we need using the findBinaryFile function.
-% unique file list
-unFiles = unique(fileNames);
-for i = 1:numel(unFiles) % loop over the different files
-
- if (verbose)
- fileName = unFiles{i};
- if length(dataDir) < length(fileName)
- fileName = fileName(length(dataDir):end);
- end
- fprintf('Loading file %s %d of %d\n', fileName, i, numel(unFiles));
- end
-
- filePath = findBinaryFile(dataDir,'*.pgdf',unFiles{i});
-
- % list of clicks in a particular file
- fileUIDs = itemUID(find(strcmp(fileNames, unFiles{i})));
-
- fileData = loadPamguardBinaryFile(filePath, 'uidlist', fileUIDs);
- % add the file information to all data loaded.
- [~,fName,fEnd] = fileparts(filePath);
- fileName = [fName fEnd];
- for d = 1:numel(fileData)
- fileData(d).binaryFile = fileName;
- end
-
- eventData = [eventData fileData];
-end
-
diff --git a/resources/THESE RESOURCES ARE FOR TESTING b/testing-resources/THESE RESOURCES ARE FOR TESTING
similarity index 100%
rename from resources/THESE RESOURCES ARE FOR TESTING
rename to testing-resources/THESE RESOURCES ARE FOR TESTING
diff --git a/resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdf b/testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdf
similarity index 100%
rename from resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdf
rename to testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdf
diff --git a/resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdx b/testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdx
similarity index 100%
rename from resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdx
rename to testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_detections.pgdx
diff --git a/resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdf b/testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdf
similarity index 100%
rename from resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdf
rename to testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdf
diff --git a/resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdx b/testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdx
similarity index 100%
rename from resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdx
rename to testing-resources/data/classifiers/deeplearningclassifier/deeplearningclassifier_v2_test1_models.pgdx
diff --git a/resources/data/detectors/click/click_v4_test1.pgdf b/testing-resources/data/detectors/click/click_v4_test1.pgdf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test1.pgdf
rename to testing-resources/data/detectors/click/click_v4_test1.pgdf
diff --git a/resources/data/detectors/click/click_v4_test1.pgdx b/testing-resources/data/detectors/click/click_v4_test1.pgdx
similarity index 100%
rename from resources/data/detectors/click/click_v4_test1.pgdx
rename to testing-resources/data/detectors/click/click_v4_test1.pgdx
diff --git a/resources/data/detectors/click/click_v4_test1.pgnf b/testing-resources/data/detectors/click/click_v4_test1.pgnf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test1.pgnf
rename to testing-resources/data/detectors/click/click_v4_test1.pgnf
diff --git a/resources/data/detectors/click/click_v4_test2.pgdf b/testing-resources/data/detectors/click/click_v4_test2.pgdf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test2.pgdf
rename to testing-resources/data/detectors/click/click_v4_test2.pgdf
diff --git a/resources/data/detectors/click/click_v4_test2.pgdx b/testing-resources/data/detectors/click/click_v4_test2.pgdx
similarity index 100%
rename from resources/data/detectors/click/click_v4_test2.pgdx
rename to testing-resources/data/detectors/click/click_v4_test2.pgdx
diff --git a/resources/data/detectors/click/click_v4_test2.pgnf b/testing-resources/data/detectors/click/click_v4_test2.pgnf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test2.pgnf
rename to testing-resources/data/detectors/click/click_v4_test2.pgnf
diff --git a/resources/data/detectors/click/click_v4_test3.pgdf b/testing-resources/data/detectors/click/click_v4_test3.pgdf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test3.pgdf
rename to testing-resources/data/detectors/click/click_v4_test3.pgdf
diff --git a/resources/data/detectors/click/click_v4_test3.pgdx b/testing-resources/data/detectors/click/click_v4_test3.pgdx
similarity index 100%
rename from resources/data/detectors/click/click_v4_test3.pgdx
rename to testing-resources/data/detectors/click/click_v4_test3.pgdx
diff --git a/resources/data/detectors/click/click_v4_test3.pgnf b/testing-resources/data/detectors/click/click_v4_test3.pgnf
similarity index 100%
rename from resources/data/detectors/click/click_v4_test3.pgnf
rename to testing-resources/data/detectors/click/click_v4_test3.pgnf
diff --git a/resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdf b/testing-resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdf
similarity index 100%
rename from resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdf
rename to testing-resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdf
diff --git a/resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdx b/testing-resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdx
similarity index 100%
rename from resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdx
rename to testing-resources/data/detectors/clicktriggerbackground/clicktriggerbackground_v0_test1.pgdx
diff --git a/resources/data/detectors/gpl/gpl_v2_test1.pgdf b/testing-resources/data/detectors/gpl/gpl_v2_test1.pgdf
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test1.pgdf
rename to testing-resources/data/detectors/gpl/gpl_v2_test1.pgdf
diff --git a/resources/data/detectors/gpl/gpl_v2_test1.pgdx b/testing-resources/data/detectors/gpl/gpl_v2_test1.pgdx
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test1.pgdx
rename to testing-resources/data/detectors/gpl/gpl_v2_test1.pgdx
diff --git a/resources/data/detectors/gpl/gpl_v2_test1.pgnf b/testing-resources/data/detectors/gpl/gpl_v2_test1.pgnf
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test1.pgnf
rename to testing-resources/data/detectors/gpl/gpl_v2_test1.pgnf
diff --git a/resources/data/detectors/gpl/gpl_v2_test2.pgdf b/testing-resources/data/detectors/gpl/gpl_v2_test2.pgdf
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test2.pgdf
rename to testing-resources/data/detectors/gpl/gpl_v2_test2.pgdf
diff --git a/resources/data/detectors/gpl/gpl_v2_test2.pgdx b/testing-resources/data/detectors/gpl/gpl_v2_test2.pgdx
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test2.pgdx
rename to testing-resources/data/detectors/gpl/gpl_v2_test2.pgdx
diff --git a/resources/data/detectors/gpl/gpl_v2_test2.pgnf b/testing-resources/data/detectors/gpl/gpl_v2_test2.pgnf
similarity index 100%
rename from resources/data/detectors/gpl/gpl_v2_test2.pgnf
rename to testing-resources/data/detectors/gpl/gpl_v2_test2.pgnf
diff --git a/resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf b/testing-resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf
similarity index 100%
rename from resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf
rename to testing-resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf
diff --git a/resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx b/testing-resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx
similarity index 100%
rename from resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx
rename to testing-resources/data/detectors/rwedge/RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx
diff --git a/resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdf b/testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdf
similarity index 100%
rename from resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdf
rename to testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdf
diff --git a/resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdx b/testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdx
similarity index 100%
rename from resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdx
rename to testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgdx
diff --git a/resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgnf b/testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgnf
similarity index 100%
rename from resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgnf
rename to testing-resources/data/detectors/whistleandmoan/whistleandmoan_v2_test1.pgnf
diff --git a/resources/data/plugins/geminithreshold/geminithreshold_test1.pgdf b/testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgdf
similarity index 100%
rename from resources/data/plugins/geminithreshold/geminithreshold_test1.pgdf
rename to testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgdf
diff --git a/resources/data/plugins/geminithreshold/geminithreshold_test1.pgdx b/testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgdx
similarity index 100%
rename from resources/data/plugins/geminithreshold/geminithreshold_test1.pgdx
rename to testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgdx
diff --git a/resources/data/plugins/geminithreshold/geminithreshold_test1.pgnf b/testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgnf
similarity index 100%
rename from resources/data/plugins/geminithreshold/geminithreshold_test1.pgnf
rename to testing-resources/data/plugins/geminithreshold/geminithreshold_test1.pgnf
diff --git a/resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdf b/testing-resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdf
similarity index 100%
rename from resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdf
rename to testing-resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdf
diff --git a/resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdx b/testing-resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdx
similarity index 100%
rename from resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdx
rename to testing-resources/data/plugins/spermwhaleipi/spermwhaleipi_v1_test1.pgdx
diff --git a/resources/data/processing/ais/ais_v1_test1.pgdf b/testing-resources/data/processing/ais/ais_v1_test1.pgdf
similarity index 100%
rename from resources/data/processing/ais/ais_v1_test1.pgdf
rename to testing-resources/data/processing/ais/ais_v1_test1.pgdf
diff --git a/resources/data/processing/ais/ais_v1_test1.pgdx b/testing-resources/data/processing/ais/ais_v1_test1.pgdx
similarity index 100%
rename from resources/data/processing/ais/ais_v1_test1.pgdx
rename to testing-resources/data/processing/ais/ais_v1_test1.pgdx
diff --git a/resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdf b/testing-resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdf
similarity index 100%
rename from resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdf
rename to testing-resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdf
diff --git a/resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdx b/testing-resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdx
similarity index 100%
rename from resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdx
rename to testing-resources/data/processing/clipgenerator/clipgenerator_v3_test1.pgdx
diff --git a/resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdf b/testing-resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdf
similarity index 100%
rename from resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdf
rename to testing-resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdf
diff --git a/resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdx b/testing-resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdx
similarity index 100%
rename from resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdx
rename to testing-resources/data/processing/clipgenerator/clipgenerator_v3_test2.pgdx
diff --git a/resources/data/processing/dbht/dbht_v2_test1.pgdf b/testing-resources/data/processing/dbht/dbht_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/dbht/dbht_v2_test1.pgdf
rename to testing-resources/data/processing/dbht/dbht_v2_test1.pgdf
diff --git a/resources/data/processing/dbht/dbht_v2_test1.pgdx b/testing-resources/data/processing/dbht/dbht_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/dbht/dbht_v2_test1.pgdx
rename to testing-resources/data/processing/dbht/dbht_v2_test1.pgdx
diff --git a/resources/data/processing/difar/difar_v2_test1.pgdf b/testing-resources/data/processing/difar/difar_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test1.pgdf
rename to testing-resources/data/processing/difar/difar_v2_test1.pgdf
diff --git a/resources/data/processing/difar/difar_v2_test1.pgdx b/testing-resources/data/processing/difar/difar_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test1.pgdx
rename to testing-resources/data/processing/difar/difar_v2_test1.pgdx
diff --git a/resources/data/processing/difar/difar_v2_test2.pgdf b/testing-resources/data/processing/difar/difar_v2_test2.pgdf
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test2.pgdf
rename to testing-resources/data/processing/difar/difar_v2_test2.pgdf
diff --git a/resources/data/processing/difar/difar_v2_test2.pgdx b/testing-resources/data/processing/difar/difar_v2_test2.pgdx
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test2.pgdx
rename to testing-resources/data/processing/difar/difar_v2_test2.pgdx
diff --git a/resources/data/processing/difar/difar_v2_test3.pgdf b/testing-resources/data/processing/difar/difar_v2_test3.pgdf
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test3.pgdf
rename to testing-resources/data/processing/difar/difar_v2_test3.pgdf
diff --git a/resources/data/processing/difar/difar_v2_test3.pgdx b/testing-resources/data/processing/difar/difar_v2_test3.pgdx
similarity index 100%
rename from resources/data/processing/difar/difar_v2_test3.pgdx
rename to testing-resources/data/processing/difar/difar_v2_test3.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test1.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test2.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_energysum_v2_test3.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test1.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_matchedfilter_v2_test2.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx
diff --git a/resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf b/testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf
rename to testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf
diff --git a/resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx b/testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx
similarity index 100%
rename from resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx
rename to testing-resources/data/processing/ishmael/ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx
diff --git a/resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdf b/testing-resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdf
rename to testing-resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdf
diff --git a/resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdx b/testing-resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdx
rename to testing-resources/data/processing/longtermspectralaverage/longtermspectralaverage_v2_test1.pgdx
diff --git a/resources/data/processing/noiseband/noiseband_v3_test1.pgdf b/testing-resources/data/processing/noiseband/noiseband_v3_test1.pgdf
similarity index 100%
rename from resources/data/processing/noiseband/noiseband_v3_test1.pgdf
rename to testing-resources/data/processing/noiseband/noiseband_v3_test1.pgdf
diff --git a/resources/data/processing/noiseband/noiseband_v3_test1.pgdx b/testing-resources/data/processing/noiseband/noiseband_v3_test1.pgdx
similarity index 100%
rename from resources/data/processing/noiseband/noiseband_v3_test1.pgdx
rename to testing-resources/data/processing/noiseband/noiseband_v3_test1.pgdx
diff --git a/resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdf b/testing-resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdf
similarity index 100%
rename from resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdf
rename to testing-resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdf
diff --git a/resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdx b/testing-resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdx
similarity index 100%
rename from resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdx
rename to testing-resources/data/processing/noiseband/noisebandnoise_v3_test1.pgdx
diff --git a/resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdf b/testing-resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdf
similarity index 100%
rename from resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdf
rename to testing-resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdf
diff --git a/resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdx b/testing-resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdx
similarity index 100%
rename from resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdx
rename to testing-resources/data/processing/noiseband/noisebandpulses_v3_test1.pgdx
diff --git a/resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdf b/testing-resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdf
similarity index 100%
rename from resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdf
rename to testing-resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdf
diff --git a/resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdx b/testing-resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdx
similarity index 100%
rename from resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdx
rename to testing-resources/data/processing/noisemonitor/noisemonitor_v2_test1.pgdx
diff --git a/src/+pgmatlab/+db/Array/threadinglocaliser.m b/testing-resources/v1.0.1code/Array/threadinglocaliser.m
similarity index 100%
rename from src/+pgmatlab/+db/Array/threadinglocaliser.m
rename to testing-resources/v1.0.1code/Array/threadinglocaliser.m
diff --git a/src/+pgmatlab/+db/Array/threadinglocalisertest.m b/testing-resources/v1.0.1code/Array/threadinglocalisertest.m
similarity index 100%
rename from src/+pgmatlab/+db/Array/threadinglocalisertest.m
rename to testing-resources/v1.0.1code/Array/threadinglocalisertest.m
diff --git a/resources/v1.0.1code/addColumn.m b/testing-resources/v1.0.1code/addColumn.m
similarity index 100%
rename from resources/v1.0.1code/addColumn.m
rename to testing-resources/v1.0.1code/addColumn.m
diff --git a/resources/v1.0.1code/checkColumn.m b/testing-resources/v1.0.1code/checkColumn.m
similarity index 100%
rename from resources/v1.0.1code/checkColumn.m
rename to testing-resources/v1.0.1code/checkColumn.m
diff --git a/resources/v1.0.1code/checkTable.m b/testing-resources/v1.0.1code/checkTable.m
similarity index 100%
rename from resources/v1.0.1code/checkTable.m
rename to testing-resources/v1.0.1code/checkTable.m
diff --git a/resources/v1.0.1code/checksqlitefuncs.m b/testing-resources/v1.0.1code/checksqlitefuncs.m
similarity index 100%
rename from resources/v1.0.1code/checksqlitefuncs.m
rename to testing-resources/v1.0.1code/checksqlitefuncs.m
diff --git a/src/+pgmatlab/+db/clearcolumn.m b/testing-resources/v1.0.1code/clearcolumn.m
similarity index 100%
rename from src/+pgmatlab/+db/clearcolumn.m
rename to testing-resources/v1.0.1code/clearcolumn.m
diff --git a/src/+pgmatlab/+db/columnExists.m b/testing-resources/v1.0.1code/columnExists.m
similarity index 100%
rename from src/+pgmatlab/+db/columnExists.m
rename to testing-resources/v1.0.1code/columnExists.m
diff --git a/src/+pgmatlab/+utils/countChannels.m b/testing-resources/v1.0.1code/countChannels.m
similarity index 100%
rename from src/+pgmatlab/+utils/countChannels.m
rename to testing-resources/v1.0.1code/countChannels.m
diff --git a/src/+pgmatlab/+utils/dateNumToMillis.m b/testing-resources/v1.0.1code/dateNumToMillis.m
similarity index 100%
rename from src/+pgmatlab/+utils/dateNumToMillis.m
rename to testing-resources/v1.0.1code/dateNumToMillis.m
diff --git a/src/+pgmatlab/+db/Array/datenum2dbdate.m b/testing-resources/v1.0.1code/datenum2dbdate.m
similarity index 100%
rename from src/+pgmatlab/+db/Array/datenum2dbdate.m
rename to testing-resources/v1.0.1code/datenum2dbdate.m
diff --git a/src/+pgmatlab/+db/Array/dbdate2datenum.m b/testing-resources/v1.0.1code/dbdate2datenum.m
similarity index 100%
rename from src/+pgmatlab/+db/Array/dbdate2datenum.m
rename to testing-resources/v1.0.1code/dbdate2datenum.m
diff --git a/src/+pgmatlab/+utils/dirsub.m b/testing-resources/v1.0.1code/dirsub.m
similarity index 100%
rename from src/+pgmatlab/+utils/dirsub.m
rename to testing-resources/v1.0.1code/dirsub.m
diff --git a/resources/v1.0.1code/findBinaryFile.m b/testing-resources/v1.0.1code/findBinaryFile.m
similarity index 100%
rename from resources/v1.0.1code/findBinaryFile.m
rename to testing-resources/v1.0.1code/findBinaryFile.m
diff --git a/resources/v1.0.1code/findBinaryFileForDate.m b/testing-resources/v1.0.1code/findBinaryFileForDate.m
similarity index 100%
rename from resources/v1.0.1code/findBinaryFileForDate.m
rename to testing-resources/v1.0.1code/findBinaryFileForDate.m
diff --git a/src/+pgmatlab/+utils/getChannels.m b/testing-resources/v1.0.1code/getChannels.m
similarity index 100%
rename from src/+pgmatlab/+utils/getChannels.m
rename to testing-resources/v1.0.1code/getChannels.m
diff --git a/src/+pgmatlab/+db/getmaxcolvalue.m b/testing-resources/v1.0.1code/getmaxcolvalue.m
similarity index 100%
rename from src/+pgmatlab/+db/getmaxcolvalue.m
rename to testing-resources/v1.0.1code/getmaxcolvalue.m
diff --git a/src/+pgmatlab/+db/getmaxid.m b/testing-resources/v1.0.1code/getmaxid.m
similarity index 100%
rename from src/+pgmatlab/+db/getmaxid.m
rename to testing-resources/v1.0.1code/getmaxid.m
diff --git a/src/+pgmatlab/+db/logger/importloggertable.m b/testing-resources/v1.0.1code/importloggertable.m
similarity index 100%
rename from src/+pgmatlab/+db/logger/importloggertable.m
rename to testing-resources/v1.0.1code/importloggertable.m
diff --git a/src/+pgmatlab/+db/logger/importudftable.m b/testing-resources/v1.0.1code/importudftable.m
similarity index 100%
rename from src/+pgmatlab/+db/logger/importudftable.m
rename to testing-resources/v1.0.1code/importudftable.m
diff --git a/resources/v1.0.1code/loadAllWhistles.m b/testing-resources/v1.0.1code/loadAllWhistles.m
similarity index 100%
rename from resources/v1.0.1code/loadAllWhistles.m
rename to testing-resources/v1.0.1code/loadAllWhistles.m
diff --git a/resources/v1.0.1code/loadClickFile.m b/testing-resources/v1.0.1code/loadClickFile.m
similarity index 100%
rename from resources/v1.0.1code/loadClickFile.m
rename to testing-resources/v1.0.1code/loadClickFile.m
diff --git a/resources/v1.0.1code/loadClickFolder.m b/testing-resources/v1.0.1code/loadClickFolder.m
similarity index 100%
rename from resources/v1.0.1code/loadClickFolder.m
rename to testing-resources/v1.0.1code/loadClickFolder.m
diff --git a/resources/v1.0.1code/loadEventClicks.m b/testing-resources/v1.0.1code/loadEventClicks.m
similarity index 100%
rename from resources/v1.0.1code/loadEventClicks.m
rename to testing-resources/v1.0.1code/loadEventClicks.m
diff --git a/resources/v1.0.1code/loadFolder.m b/testing-resources/v1.0.1code/loadFolder.m
similarity index 100%
rename from resources/v1.0.1code/loadFolder.m
rename to testing-resources/v1.0.1code/loadFolder.m
diff --git a/resources/v1.0.1code/loadPAMFolder.m b/testing-resources/v1.0.1code/loadPAMFolder.m
similarity index 100%
rename from resources/v1.0.1code/loadPAMFolder.m
rename to testing-resources/v1.0.1code/loadPAMFolder.m
diff --git a/resources/v1.0.1code/loadPamguardBinaryFile.m b/testing-resources/v1.0.1code/loadPamguardBinaryFile.m
similarity index 100%
rename from resources/v1.0.1code/loadPamguardBinaryFile.m
rename to testing-resources/v1.0.1code/loadPamguardBinaryFile.m
diff --git a/resources/v1.0.1code/loadPamguardBinaryFolder.m b/testing-resources/v1.0.1code/loadPamguardBinaryFolder.m
similarity index 100%
rename from resources/v1.0.1code/loadPamguardBinaryFolder.m
rename to testing-resources/v1.0.1code/loadPamguardBinaryFolder.m
diff --git a/resources/v1.0.1code/loadPamguardMultiFile.m b/testing-resources/v1.0.1code/loadPamguardMultiFile.m
similarity index 100%
rename from resources/v1.0.1code/loadPamguardMultiFile.m
rename to testing-resources/v1.0.1code/loadPamguardMultiFile.m
diff --git a/resources/v1.0.1code/loadWhistleFile.m b/testing-resources/v1.0.1code/loadWhistleFile.m
similarity index 100%
rename from resources/v1.0.1code/loadWhistleFile.m
rename to testing-resources/v1.0.1code/loadWhistleFile.m
diff --git a/src/+pgmatlab/+db/logger/lookuptableformat.m b/testing-resources/v1.0.1code/lookuptableformat.m
similarity index 100%
rename from src/+pgmatlab/+db/logger/lookuptableformat.m
rename to testing-resources/v1.0.1code/lookuptableformat.m
diff --git a/src/+pgmatlab/+utils/millisToDateNum.m b/testing-resources/v1.0.1code/millisToDateNum.m
similarity index 100%
rename from src/+pgmatlab/+utils/millisToDateNum.m
rename to testing-resources/v1.0.1code/millisToDateNum.m
diff --git a/src/+pgmatlab/+utils/passalldata.m b/testing-resources/v1.0.1code/passalldata.m
similarity index 100%
rename from src/+pgmatlab/+utils/passalldata.m
rename to testing-resources/v1.0.1code/passalldata.m
diff --git a/resources/v1.0.1code/readAISData.m b/testing-resources/v1.0.1code/readAISData.m
similarity index 100%
rename from resources/v1.0.1code/readAISData.m
rename to testing-resources/v1.0.1code/readAISData.m
diff --git a/resources/v1.0.1code/readBeamFormerAnnotation.m b/testing-resources/v1.0.1code/readBeamFormerAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readBeamFormerAnnotation.m
rename to testing-resources/v1.0.1code/readBeamFormerAnnotation.m
diff --git a/resources/v1.0.1code/readBearingAnnotation.m b/testing-resources/v1.0.1code/readBearingAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readBearingAnnotation.m
rename to testing-resources/v1.0.1code/readBearingAnnotation.m
diff --git a/resources/v1.0.1code/readClickBackground.m b/testing-resources/v1.0.1code/readClickBackground.m
similarity index 100%
rename from resources/v1.0.1code/readClickBackground.m
rename to testing-resources/v1.0.1code/readClickBackground.m
diff --git a/resources/v1.0.1code/readClickClsfrAnotation.m b/testing-resources/v1.0.1code/readClickClsfrAnotation.m
similarity index 100%
rename from resources/v1.0.1code/readClickClsfrAnotation.m
rename to testing-resources/v1.0.1code/readClickClsfrAnotation.m
diff --git a/resources/v1.0.1code/readClickData.m b/testing-resources/v1.0.1code/readClickData.m
similarity index 100%
rename from resources/v1.0.1code/readClickData.m
rename to testing-resources/v1.0.1code/readClickData.m
diff --git a/resources/v1.0.1code/readClickFooter.m b/testing-resources/v1.0.1code/readClickFooter.m
similarity index 100%
rename from resources/v1.0.1code/readClickFooter.m
rename to testing-resources/v1.0.1code/readClickFooter.m
diff --git a/resources/v1.0.1code/readClickTriggerData.m b/testing-resources/v1.0.1code/readClickTriggerData.m
similarity index 100%
rename from resources/v1.0.1code/readClickTriggerData.m
rename to testing-resources/v1.0.1code/readClickTriggerData.m
diff --git a/resources/v1.0.1code/readClickTriggerHeader.m b/testing-resources/v1.0.1code/readClickTriggerHeader.m
similarity index 100%
rename from resources/v1.0.1code/readClickTriggerHeader.m
rename to testing-resources/v1.0.1code/readClickTriggerHeader.m
diff --git a/resources/v1.0.1code/readClipData.m b/testing-resources/v1.0.1code/readClipData.m
similarity index 100%
rename from resources/v1.0.1code/readClipData.m
rename to testing-resources/v1.0.1code/readClipData.m
diff --git a/resources/v1.0.1code/readDLAnnotation.m b/testing-resources/v1.0.1code/readDLAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readDLAnnotation.m
rename to testing-resources/v1.0.1code/readDLAnnotation.m
diff --git a/resources/v1.0.1code/readDLDetData.m b/testing-resources/v1.0.1code/readDLDetData.m
similarity index 100%
rename from resources/v1.0.1code/readDLDetData.m
rename to testing-resources/v1.0.1code/readDLDetData.m
diff --git a/resources/v1.0.1code/readDLModelData.m b/testing-resources/v1.0.1code/readDLModelData.m
similarity index 100%
rename from resources/v1.0.1code/readDLModelData.m
rename to testing-resources/v1.0.1code/readDLModelData.m
diff --git a/resources/v1.0.1code/readDbHtData.m b/testing-resources/v1.0.1code/readDbHtData.m
similarity index 100%
rename from resources/v1.0.1code/readDbHtData.m
rename to testing-resources/v1.0.1code/readDbHtData.m
diff --git a/resources/v1.0.1code/readDifarData.m b/testing-resources/v1.0.1code/readDifarData.m
similarity index 100%
rename from resources/v1.0.1code/readDifarData.m
rename to testing-resources/v1.0.1code/readDifarData.m
diff --git a/resources/v1.0.1code/readFileFooterInfo.m b/testing-resources/v1.0.1code/readFileFooterInfo.m
similarity index 100%
rename from resources/v1.0.1code/readFileFooterInfo.m
rename to testing-resources/v1.0.1code/readFileFooterInfo.m
diff --git a/resources/v1.0.1code/readFileHeader.m b/testing-resources/v1.0.1code/readFileHeader.m
similarity index 100%
rename from resources/v1.0.1code/readFileHeader.m
rename to testing-resources/v1.0.1code/readFileHeader.m
diff --git a/resources/v1.0.1code/readGPLDetections.m b/testing-resources/v1.0.1code/readGPLDetections.m
similarity index 100%
rename from resources/v1.0.1code/readGPLDetections.m
rename to testing-resources/v1.0.1code/readGPLDetections.m
diff --git a/resources/v1.0.1code/readIpiData.m b/testing-resources/v1.0.1code/readIpiData.m
similarity index 100%
rename from resources/v1.0.1code/readIpiData.m
rename to testing-resources/v1.0.1code/readIpiData.m
diff --git a/resources/v1.0.1code/readIshmaelData.m b/testing-resources/v1.0.1code/readIshmaelData.m
similarity index 100%
rename from resources/v1.0.1code/readIshmaelData.m
rename to testing-resources/v1.0.1code/readIshmaelData.m
diff --git a/resources/v1.0.1code/readIshmaelDetection.m b/testing-resources/v1.0.1code/readIshmaelDetection.m
similarity index 100%
rename from resources/v1.0.1code/readIshmaelDetection.m
rename to testing-resources/v1.0.1code/readIshmaelDetection.m
diff --git a/resources/v1.0.1code/readJavaUTFString.m b/testing-resources/v1.0.1code/readJavaUTFString.m
similarity index 100%
rename from resources/v1.0.1code/readJavaUTFString.m
rename to testing-resources/v1.0.1code/readJavaUTFString.m
diff --git a/resources/v1.0.1code/readLTSAData.m b/testing-resources/v1.0.1code/readLTSAData.m
similarity index 100%
rename from resources/v1.0.1code/readLTSAData.m
rename to testing-resources/v1.0.1code/readLTSAData.m
diff --git a/resources/v1.0.1code/readLTSAHeader.m b/testing-resources/v1.0.1code/readLTSAHeader.m
similarity index 100%
rename from resources/v1.0.1code/readLTSAHeader.m
rename to testing-resources/v1.0.1code/readLTSAHeader.m
diff --git a/resources/v1.0.1code/readMatchClsfrAnnotation.m b/testing-resources/v1.0.1code/readMatchClsfrAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readMatchClsfrAnnotation.m
rename to testing-resources/v1.0.1code/readMatchClsfrAnnotation.m
diff --git a/resources/v1.0.1code/readNoiseBandData.m b/testing-resources/v1.0.1code/readNoiseBandData.m
similarity index 100%
rename from resources/v1.0.1code/readNoiseBandData.m
rename to testing-resources/v1.0.1code/readNoiseBandData.m
diff --git a/resources/v1.0.1code/readNoiseMonData.m b/testing-resources/v1.0.1code/readNoiseMonData.m
similarity index 100%
rename from resources/v1.0.1code/readNoiseMonData.m
rename to testing-resources/v1.0.1code/readNoiseMonData.m
diff --git a/resources/v1.0.1code/readNoiseMonHeader.m b/testing-resources/v1.0.1code/readNoiseMonHeader.m
similarity index 100%
rename from resources/v1.0.1code/readNoiseMonHeader.m
rename to testing-resources/v1.0.1code/readNoiseMonHeader.m
diff --git a/resources/v1.0.1code/readPamData.m b/testing-resources/v1.0.1code/readPamData.m
similarity index 100%
rename from resources/v1.0.1code/readPamData.m
rename to testing-resources/v1.0.1code/readPamData.m
diff --git a/resources/v1.0.1code/readRWEDetectorData.m b/testing-resources/v1.0.1code/readRWEDetectorData.m
similarity index 100%
rename from resources/v1.0.1code/readRWEDetectorData.m
rename to testing-resources/v1.0.1code/readRWEDetectorData.m
diff --git a/resources/v1.0.1code/readRWUDPAnnotation.m b/testing-resources/v1.0.1code/readRWUDPAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readRWUDPAnnotation.m
rename to testing-resources/v1.0.1code/readRWUDPAnnotation.m
diff --git a/resources/v1.0.1code/readSpectralBackground.m b/testing-resources/v1.0.1code/readSpectralBackground.m
similarity index 100%
rename from resources/v1.0.1code/readSpectralBackground.m
rename to testing-resources/v1.0.1code/readSpectralBackground.m
diff --git a/resources/v1.0.1code/readStdModuleFooter.m b/testing-resources/v1.0.1code/readStdModuleFooter.m
similarity index 100%
rename from resources/v1.0.1code/readStdModuleFooter.m
rename to testing-resources/v1.0.1code/readStdModuleFooter.m
diff --git a/resources/v1.0.1code/readStdModuleHeader.m b/testing-resources/v1.0.1code/readStdModuleHeader.m
similarity index 100%
rename from resources/v1.0.1code/readStdModuleHeader.m
rename to testing-resources/v1.0.1code/readStdModuleHeader.m
diff --git a/resources/v1.0.1code/readTDBLAnnotation.m b/testing-resources/v1.0.1code/readTDBLAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readTDBLAnnotation.m
rename to testing-resources/v1.0.1code/readTDBLAnnotation.m
diff --git a/resources/v1.0.1code/readTMAnnotation.m b/testing-resources/v1.0.1code/readTMAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readTMAnnotation.m
rename to testing-resources/v1.0.1code/readTMAnnotation.m
diff --git a/resources/v1.0.1code/readTritechBackground.m b/testing-resources/v1.0.1code/readTritechBackground.m
similarity index 100%
rename from resources/v1.0.1code/readTritechBackground.m
rename to testing-resources/v1.0.1code/readTritechBackground.m
diff --git a/resources/v1.0.1code/readTritechGLFRecord.m b/testing-resources/v1.0.1code/readTritechGLFRecord.m
similarity index 100%
rename from resources/v1.0.1code/readTritechGLFRecord.m
rename to testing-resources/v1.0.1code/readTritechGLFRecord.m
diff --git a/resources/v1.0.1code/readTritechHeader.m b/testing-resources/v1.0.1code/readTritechHeader.m
similarity index 100%
rename from resources/v1.0.1code/readTritechHeader.m
rename to testing-resources/v1.0.1code/readTritechHeader.m
diff --git a/resources/v1.0.1code/readTritechTrack.m b/testing-resources/v1.0.1code/readTritechTrack.m
similarity index 100%
rename from resources/v1.0.1code/readTritechTrack.m
rename to testing-resources/v1.0.1code/readTritechTrack.m
diff --git a/resources/v1.0.1code/readUserFormAnnotation.m b/testing-resources/v1.0.1code/readUserFormAnnotation.m
similarity index 100%
rename from resources/v1.0.1code/readUserFormAnnotation.m
rename to testing-resources/v1.0.1code/readUserFormAnnotation.m
diff --git a/resources/v1.0.1code/readWMDData.m b/testing-resources/v1.0.1code/readWMDData.m
similarity index 100%
rename from resources/v1.0.1code/readWMDData.m
rename to testing-resources/v1.0.1code/readWMDData.m
diff --git a/resources/v1.0.1code/readWMDHeader.m b/testing-resources/v1.0.1code/readWMDHeader.m
similarity index 100%
rename from resources/v1.0.1code/readWMDHeader.m
rename to testing-resources/v1.0.1code/readWMDHeader.m
diff --git a/resources/v1.0.1code/sqlite-jdbc-3.36.0.jar b/testing-resources/v1.0.1code/sqlite-jdbc-3.36.0.jar
similarity index 100%
rename from resources/v1.0.1code/sqlite-jdbc-3.36.0.jar
rename to testing-resources/v1.0.1code/sqlite-jdbc-3.36.0.jar
diff --git a/src/+pgmatlab/+db/sqlite-jdbc-3.45.3.0.jar b/testing-resources/v1.0.1code/sqlite-jdbc-3.45.3.0.jar
similarity index 100%
rename from src/+pgmatlab/+db/sqlite-jdbc-3.45.3.0.jar
rename to testing-resources/v1.0.1code/sqlite-jdbc-3.45.3.0.jar
diff --git a/src/+pgmatlab/+db/sqlitedatabase.m b/testing-resources/v1.0.1code/sqlitedatabase.m
similarity index 100%
rename from src/+pgmatlab/+db/sqlitedatabase.m
rename to testing-resources/v1.0.1code/sqlitedatabase.m
diff --git a/src/+pgmatlab/+db/tableExists.m b/testing-resources/v1.0.1code/tableExists.m
similarity index 100%
rename from src/+pgmatlab/+db/tableExists.m
rename to testing-resources/v1.0.1code/tableExists.m
diff --git a/src/+pgmatlab/+db/logger/udftableformat.m b/testing-resources/v1.0.1code/udftableformat.m
similarity index 100%
rename from src/+pgmatlab/+db/logger/udftableformat.m
rename to testing-resources/v1.0.1code/udftableformat.m
diff --git a/src/+pgmatlab/+db/unpackLocaliserError.m b/testing-resources/v1.0.1code/unpackLocaliserError.m
similarity index 100%
rename from src/+pgmatlab/+db/unpackLocaliserError.m
rename to testing-resources/v1.0.1code/unpackLocaliserError.m
diff --git a/src/+pgmatlab/+db/writespecannotationdata.m b/testing-resources/v1.0.1code/writespecannotationdata.m
similarity index 100%
rename from src/+pgmatlab/+db/writespecannotationdata.m
rename to testing-resources/v1.0.1code/writespecannotationdata.m
diff --git a/tests/LegacyTests.m b/tests/LegacyTests.m
index 2ca4198..4371d5f 100644
--- a/tests/LegacyTests.m
+++ b/tests/LegacyTests.m
@@ -4,7 +4,7 @@
classdef LegacyTests < matlab.unittest.TestCase
properties
testsFolder = 'tests'; % inside root
- resourcesFolder = 'resources'; % inside root
+ resourcesFolder = 'testing-resources'; % inside root
dataFolder = 'data'; % inside resources
legacyFolder = 'v1.0.1code'; % inside resources
codeFolder = 'src'; % inside root
diff --git a/tests/results.csv b/tests/results.csv
deleted file mode 100644
index de3e91a..0000000
--- a/tests/results.csv
+++ /dev/null
@@ -1,3392 +0,0 @@
-File Path,Filters,File Size (bytes),New Time (s),Old Time (s)
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.004865,0.011241
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,3797,0.000694,0.001202
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,3797,0.002469,0.005161
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 500006 - sorted - 0,3797,0.003312,0.004772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3797,0.003310,0.004953
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3797,0.002793,0.004020
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 4,3797,0.004041,0.004925
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 1,3797,0.003922,0.004783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001,3797,0.002496,0.003617
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,3797,0.003258,0.004005
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.004064,0.005777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 10 - sorted - 1,51468,0.000946,0.001168
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 5000001 5000009 - sorted - 1,51468,0.001247,0.001915
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 500006 - sorted - 0,51468,0.004558,0.004160
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,51468,0.001316,0.002008
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,51468,0.001583,0.001912
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 4,51468,0.003259,0.003701
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 1,51468,0.004385,0.004301
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001,51468,0.001143,0.001963
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 100000,51468,0.001276,0.002149
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.366543,0.477719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 1 10 - sorted - 1,283479,0.000770,0.000894
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 5000001 5000009 - sorted - 1,283479,0.000485,0.000893
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 1 500006 - sorted - 0,283479,0.140054,0.281092
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,283479,0.146919,0.286793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,283479,0.138948,0.284464
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,channel - 4,283479,0.373515,0.407220
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,channel - 1,283479,0.374424,0.431350
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001,283479,0.134453,0.282210
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 100000,283479,0.128568,0.287815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.009729,0.012705
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 1 10 - sorted - 1,3536,0.001693,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,3536,0.000511,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 1 500006 - sorted - 0,3536,0.002850,0.003031
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3536,0.004594,0.002908
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3536,0.002653,0.003430
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,channel - 4,3536,0.003565,0.003555
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,channel - 1,3536,0.005443,0.003591
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001,3536,0.001554,0.002821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,3536,0.001760,0.002760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.086256,0.092169
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 1 10 - sorted - 1,348642,0.000643,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,348642,0.021826,0.042491
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 1 500006 - sorted - 0,348642,0.024279,0.044231
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,348642,0.019818,0.074002
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,348642,0.026173,0.047759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,channel - 4,348642,0.071055,0.075339
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,channel - 1,348642,0.069530,0.077603
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001,348642,0.019699,0.045723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,348642,0.019549,0.047361
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.009028,0.009581
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 1 10 - sorted - 1,1736,0.002213,0.000918
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1736,0.005726,0.002926
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 1 500006 - sorted - 0,1736,0.002067,0.002932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1736,0.007110,0.003412
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1736,0.002277,0.002941
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,channel - 4,1736,0.003858,0.004020
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,channel - 1,1736,0.003558,0.004074
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001,1736,0.002141,0.003006
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1736,0.002141,0.002912
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.073157,2.109321
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,2433973,0.001365,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,2433973,0.105544,0.232803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,2433973,0.097692,0.246536
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2433973,0.105946,0.234405
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2433973,0.113560,0.238482
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,channel - 4,2433973,2.073964,2.089373
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,channel - 1,2433973,2.098221,2.117261
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001,2433973,0.101089,0.240215
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,2433973,0.106119,0.240618
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.262015,0.258578
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,291725,0.000647,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,291725,0.016391,0.041322
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,291725,0.016103,0.038571
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,291725,0.019290,0.042850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,291725,0.017302,0.038386
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,channel - 4,291725,0.268012,0.267490
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,channel - 1,291725,0.270108,0.267267
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001,291725,0.016235,0.043028
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,291725,0.017162,0.039838
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.020428,0.018011
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 1 10 - sorted - 1,11114,0.002890,0.001058
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 5000001 5000009 - sorted - 1,11114,0.000654,0.000906
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 1 500006 - sorted - 0,11114,0.005287,0.004256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,11114,0.008519,0.004801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,11114,0.002802,0.004398
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,channel - 4,11114,0.013355,0.014829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,channel - 1,11114,0.019503,0.013643
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001,11114,0.002683,0.004148
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 100000,11114,0.002623,0.005031
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.578307,0.583440
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,594749,0.002165,0.000897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,594749,0.030198,0.066617
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,594749,0.029506,0.072998
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,594749,0.032035,0.076136
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,594749,0.033640,0.073978
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,channel - 4,594749,0.523174,0.547364
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,channel - 1,594749,0.531689,0.539611
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001,594749,0.025831,0.068740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,594749,0.025857,0.072158
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.064111,0.072405
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 1 10 - sorted - 1,143315,0.001500,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,143315,0.000585,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 1 500006 - sorted - 0,143315,0.008549,0.010056
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,143315,0.009991,0.018816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,143315,0.008250,0.010566
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,channel - 4,143315,0.056856,0.060686
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,channel - 1,143315,0.057519,0.058170
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001,143315,0.006541,0.010046
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,143315,0.006720,0.010327
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.007825,0.005952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,7238,0.002187,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,7238,0.004596,0.001577
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 1 500006 - sorted - 0,7238,0.001201,0.001602
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,7238,0.006272,0.001688
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,7238,0.001713,0.001721
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,channel - 4,7238,0.002200,0.002008
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,channel - 1,7238,0.005171,0.002095
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001,7238,0.001173,0.001673
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,7238,0.001107,0.001650
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.009094,0.003886
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,16954,0.002098,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,16954,0.004618,0.002076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,16954,0.001355,0.001964
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,16954,0.006953,0.002736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,16954,0.001541,0.002327
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,channel - 4,16954,0.002581,0.002599
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,channel - 1,16954,0.019387,0.002798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001,16954,0.001263,0.001933
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,16954,0.001259,0.001956
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002432,0.001670
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 1 10 - sorted - 1,199,0.002196,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,199,0.000572,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 1 500006 - sorted - 0,199,0.000596,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.002256,0.000872
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000571,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,channel - 4,199,0.000531,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,channel - 1,199,0.000600,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001,199,0.000624,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,199,0.000539,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.017997,0.017009
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,8602,0.002117,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,8602,0.009075,0.011078
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,8602,0.006827,0.012701
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,8602,0.012074,0.011545
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,8602,0.006368,0.010894
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,channel - 4,8602,0.011342,0.012277
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,channel - 1,8602,0.018570,0.013111
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001,8602,0.007064,0.011182
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,8602,0.006159,0.010935
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.013312,0.008381
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,817352,0.005088,0.004130
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,817352,0.004891,0.002727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,817352,0.007352,0.006265
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,817352,0.006814,0.002551
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,817352,0.001910,0.002459
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,channel - 4,817352,0.006739,0.005947
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,channel - 1,817352,0.008183,0.006077
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001,817352,0.001525,0.002461
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,817352,0.001681,0.002610
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.049737,0.053907
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,8538524,0.001547,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,8538524,0.006737,0.012877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,8538524,0.047687,0.048313
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,8538524,0.006837,0.013409
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,8538524,0.007064,0.011714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,channel - 4,8538524,0.047511,0.044082
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,channel - 1,8538524,0.042777,0.046692
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001,8538524,0.006950,0.011563
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,8538524,0.006070,0.012155
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.010518,0.010394
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 1 10 - sorted - 1,1373962,0.000531,0.000936
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,1373962,0.002119,0.003921
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 1 500006 - sorted - 0,1373962,0.009592,0.010488
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1373962,0.002257,0.003667
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1373962,0.002303,0.003448
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,channel - 4,1373962,0.009840,0.009779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,channel - 1,1373962,0.008994,0.009977
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001,1373962,0.002394,0.004012
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,1373962,0.002298,0.003521
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.009317,0.004986
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,360,0.002693,0.000873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,360,0.003382,0.001029
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,360,0.000919,0.001001
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,360,0.006621,0.001045
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,360,0.000994,0.001184
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,channel - 4,360,0.001176,0.001123
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,channel - 1,360,0.003500,0.001369
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001,360,0.000836,0.000998
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,360,0.000780,0.000982
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.007021,0.007449
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,4701,0.000818,0.000877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,4701,0.003248,0.005703
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,4701,0.003290,0.005444
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4701,0.003149,0.005689
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4701,0.003262,0.005121
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,channel - 4,4701,0.004956,0.006279
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,channel - 1,4701,0.007039,0.007140
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001,4701,0.003134,0.005646
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,4701,0.003376,0.005555
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.004846,0.005369
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 1 10 - sorted - 1,3371,0.000639,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,3371,0.002683,0.003925
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 1 500006 - sorted - 0,3371,0.002308,0.003897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3371,0.002458,0.004038
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3371,0.002341,0.003957
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,channel - 4,3371,0.004039,0.004323
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,channel - 1,3371,0.004569,0.005201
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001,3371,0.002454,0.004162
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,3371,0.002314,0.004540
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.002056,0.002913
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1282,0.000543,0.000969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1282,0.001244,0.001928
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1282,0.001178,0.002622
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1282,0.001289,0.001917
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1282,0.001190,0.001924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,channel - 4,1282,0.001950,0.002058
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,channel - 1,1282,0.002001,0.002372
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001,1282,0.001517,0.002169
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1282,0.001303,0.002128
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.002487,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,232,0.002323,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,232,0.000593,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,232,0.000602,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.002273,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000563,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,channel - 4,232,0.000584,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,channel - 1,232,0.000577,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001,232,0.000651,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,232,0.000587,0.000908
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.002769,0.003148
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1787,0.000600,0.000928
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1787,0.001553,0.002417
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1787,0.001505,0.002575
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1787,0.001635,0.002415
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1787,0.001708,0.002594
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,channel - 4,1787,0.002362,0.002555
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,channel - 1,1787,0.002733,0.002887
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001,1787,0.001579,0.002478
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1787,0.001595,0.002560
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.002558,0.002705
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,1647,0.000471,0.000832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,1647,0.001544,0.002234
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,1647,0.001350,0.002210
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1647,0.001291,0.002301
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1647,0.001372,0.003322
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,channel - 4,1647,0.001990,0.002252
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,channel - 1,1647,0.002408,0.002929
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001,1647,0.001551,0.002665
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,1647,0.001332,0.002264
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.008003,0.005082
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1359,0.002279,0.000882
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1359,0.003431,0.001068
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1359,0.000988,0.001028
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1359,0.006454,0.001079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1359,0.000958,0.000975
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,channel - 4,1359,0.001241,0.001087
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,channel - 1,1359,0.003431,0.001394
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001,1359,0.000806,0.000996
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1359,0.000825,0.000983
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.008251,0.002349
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,541,0.002151,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,541,0.003741,0.001333
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,541,0.001021,0.001249
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,541,0.006981,0.001384
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,541,0.001153,0.001259
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,channel - 4,541,0.001548,0.001406
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,channel - 1,541,0.003820,0.001636
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001,541,0.000883,0.001233
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,541,0.000862,0.002191
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.015160,0.015443
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,9278,0.000545,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,9278,0.006252,0.010851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,9278,0.006484,0.012323
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,9278,0.008009,0.012041
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,9278,0.007573,0.011751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,channel - 4,9278,0.013308,0.013617
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,channel - 1,9278,0.016095,0.017228
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001,9278,0.006994,0.010939
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,9278,0.006289,0.012392
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.001061,0.001241
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,431,0.000494,0.000948
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,431,0.000797,0.001159
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,431,0.000783,0.001107
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,431,0.000759,0.001097
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,431,0.000787,0.001118
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,channel - 4,431,0.001011,0.001214
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,channel - 1,431,0.001115,0.001778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001,431,0.000820,0.001120
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,431,0.000965,0.001137
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.008045,0.003410
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,587,0.002004,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,587,0.003927,0.001185
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,587,0.001088,0.001293
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,587,0.006924,0.001655
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,587,0.001166,0.001209
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,channel - 4,587,0.001508,0.001488
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,channel - 1,587,0.003856,0.001385
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001,587,0.000957,0.001212
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,587,0.000955,0.001263
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.004073,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 1 10 - sorted - 1,207,0.003042,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,207,0.000640,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 1 500006 - sorted - 0,207,0.000607,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,207,0.002981,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,207,0.000623,0.000924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,channel - 4,207,0.000691,0.000936
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,channel - 1,207,0.001332,0.000911
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001,207,0.000562,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,207,0.000600,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.003045,0.000956
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 1 10 - sorted - 1,130270,0.003155,0.000898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 5000001 5000009 - sorted - 1,130270,0.000567,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 1 500006 - sorted - 0,130270,0.000581,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,130270,0.002711,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,130270,0.000545,0.000843
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,channel - 4,130270,0.000576,0.000869
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,channel - 1,130270,0.000581,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001,130270,0.000555,0.000833
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 100000,130270,0.000507,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.003097,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 1 10 - sorted - 1,1751,0.002602,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 5000001 5000009 - sorted - 1,1751,0.000557,0.001321
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 1 500006 - sorted - 0,1751,0.000852,0.000882
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1751,0.002805,0.000866
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1751,0.000532,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,channel - 4,1751,0.000546,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,channel - 1,1751,0.000601,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001,1751,0.000516,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 100000,1751,0.000577,0.000891
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.003349,0.001174
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 1 10 - sorted - 1,2289,0.002995,0.000875
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,2289,0.000660,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 1 500006 - sorted - 0,2289,0.000608,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2289,0.002958,0.000874
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2289,0.000589,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,channel - 4,2289,0.000805,0.000885
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,channel - 1,2289,0.000595,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001,2289,0.000639,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,2289,0.000626,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.000652,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 1 10 - sorted - 1,2289,0.000654,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,2289,0.000633,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 1 500006 - sorted - 0,2289,0.000683,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2289,0.001015,0.000899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2289,0.000698,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,channel - 4,2289,0.000770,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,channel - 1,2289,0.000610,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001,2289,0.000644,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,2289,0.000650,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.002446,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 1 10 - sorted - 1,202,0.001886,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,202,0.000652,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 1 500006 - sorted - 0,202,0.000611,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,202,0.001909,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,202,0.000735,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,channel - 4,202,0.000714,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,channel - 1,202,0.000616,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001,202,0.000560,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,202,0.000755,0.000843
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.003322,0.000884
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 1 10 - sorted - 1,224,0.002866,0.000903
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,224,0.000817,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 1 500006 - sorted - 0,224,0.000639,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,224,0.002916,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,224,0.000669,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,channel - 4,224,0.000658,0.000812
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,channel - 1,224,0.000688,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001,224,0.001152,0.001045
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,224,0.000695,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.002814,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,194,0.002711,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,194,0.000590,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,194,0.000838,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,194,0.002795,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,194,0.000609,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,channel - 4,194,0.000574,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,channel - 1,194,0.000552,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001,194,0.000620,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,194,0.000663,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000810,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,194,0.000648,0.000966
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,194,0.000625,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,194,0.000545,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,194,0.000590,0.000968
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,194,0.000660,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,channel - 4,194,0.000605,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,channel - 1,194,0.000587,0.000728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001,194,0.000587,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,194,0.000649,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.003019,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 1 10 - sorted - 1,4304,0.002617,0.000810
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 5000001 5000009 - sorted - 1,4304,0.000554,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 1 500006 - sorted - 0,4304,0.000680,0.000863
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4304,0.002535,0.000938
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4304,0.000639,0.000845
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,channel - 4,4304,0.000613,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,channel - 1,4304,0.000731,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001,4304,0.000598,0.000833
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 100000,4304,0.000551,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.002929,0.000850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,17907,0.002632,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,17907,0.000703,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,17907,0.000566,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,17907,0.002406,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,17907,0.000598,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,channel - 4,17907,0.000585,0.000719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,channel - 1,17907,0.000678,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001,17907,0.000656,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,17907,0.000549,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.003053,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 1 10 - sorted - 1,229,0.002704,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,229,0.000547,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 1 500006 - sorted - 0,229,0.000682,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,229,0.002783,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,229,0.000563,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,channel - 4,229,0.000609,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,channel - 1,229,0.000558,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001,229,0.000550,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,229,0.000583,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.003049,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 1 10 - sorted - 1,206,0.003103,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,206,0.000582,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 1 500006 - sorted - 0,206,0.000652,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,206,0.002878,0.000867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,206,0.000639,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,channel - 4,206,0.000664,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,channel - 1,206,0.000617,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001,206,0.000797,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,206,0.000607,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.002845,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,199,0.002769,0.000956
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,199,0.000588,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,199,0.000568,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.003180,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000580,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,channel - 4,199,0.000527,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,channel - 1,199,0.000571,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001,199,0.000574,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,199,0.000605,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000634,0.000962
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 1 10 - sorted - 1,199,0.000535,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,199,0.000543,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 1 500006 - sorted - 0,199,0.000523,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.000581,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000614,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,channel - 4,199,0.000643,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,channel - 1,199,0.000623,0.001256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001,199,0.000642,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,199,0.000544,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.003982,0.000902
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,230,0.002931,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,230,0.000591,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,230,0.000606,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,230,0.003038,0.000931
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,230,0.000600,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,channel - 4,230,0.000541,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,channel - 1,230,0.000589,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001,230,0.000542,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,230,0.000624,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.003904,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,218,0.002949,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000681,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000586,0.000716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.003273,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000605,0.000820
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,channel - 4,218,0.000576,0.000859
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,channel - 1,218,0.000585,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001,218,0.000580,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000545,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.000639,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,218,0.000617,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000571,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000594,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.000522,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000592,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,channel - 4,218,0.000520,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,channel - 1,218,0.000560,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001,218,0.000553,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000600,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000615,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 1 10 - sorted - 1,218,0.000592,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000587,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000582,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.000522,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000539,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,channel - 4,218,0.000769,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,channel - 1,218,0.000633,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001,218,0.000558,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000592,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.002158,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,220,0.002269,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,220,0.000593,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,220,0.001077,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,220,0.002186,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,220,0.000608,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,channel - 4,220,0.000606,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,channel - 1,220,0.000643,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001,220,0.000899,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,220,0.000647,0.000987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000637,0.000826
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,221,0.000552,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,221,0.000801,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,221,0.000604,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,221,0.000562,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,221,0.000606,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,channel - 4,221,0.000605,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,channel - 1,221,0.000679,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001,221,0.000679,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,221,0.000631,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000580,0.001086
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 1 10 - sorted - 1,221,0.000570,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,221,0.000630,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 1 500006 - sorted - 0,221,0.000602,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,221,0.000615,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,221,0.000563,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,channel - 4,221,0.000591,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,channel - 1,221,0.000611,0.000891
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001,221,0.000581,0.001010
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,221,0.000565,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000556,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,232,0.000576,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,232,0.000653,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,232,0.000605,0.000845
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.000578,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000587,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,channel - 4,232,0.000587,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,channel - 1,232,0.000635,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001,232,0.000650,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,232,0.000577,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000603,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,232,0.000596,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,232,0.000579,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,232,0.000556,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.000648,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000635,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,channel - 4,232,0.000615,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,channel - 1,232,0.000623,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001,232,0.000603,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,232,0.000631,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000625,0.000863
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,247,0.000630,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000627,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000617,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.000604,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000634,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,channel - 4,247,0.000589,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,channel - 1,247,0.000551,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001,247,0.000546,0.000861
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000595,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000602,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,247,0.000655,0.000890
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000618,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000607,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.000592,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000571,0.000924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,channel - 4,247,0.000546,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,channel - 1,247,0.000598,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001,247,0.000579,0.000873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000586,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.002658,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,211,0.002527,0.000899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,211,0.000657,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,211,0.000610,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,211,0.002677,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,211,0.000900,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,channel - 4,211,0.000646,0.000965
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,channel - 1,211,0.000651,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001,211,0.000617,0.000916
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,211,0.000571,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.002535,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,205,0.002764,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,205,0.000599,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,205,0.000570,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,205,0.002721,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,205,0.000558,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,channel - 4,205,0.000596,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,channel - 1,205,0.000512,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001,205,0.000624,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,205,0.000679,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.002238,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,258,0.002210,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,258,0.000573,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,258,0.000559,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,258,0.002247,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,258,0.000578,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,channel - 4,258,0.000541,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,channel - 1,258,0.000558,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001,258,0.000566,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,258,0.000556,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000641,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,259,0.000626,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,259,0.000712,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,259,0.000652,0.000833
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,259,0.000686,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,259,0.000634,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,channel - 4,259,0.000592,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,channel - 1,259,0.000640,0.000893
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001,259,0.000599,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,259,0.000590,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.002859,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,247,0.002779,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000618,0.000896
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000628,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.002899,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000570,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,channel - 4,247,0.000645,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,channel - 1,247,0.000596,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001,247,0.000609,0.000787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000634,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.002031,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 1 10 - sorted - 1,187,0.001963,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,187,0.000594,0.000714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 1 500006 - sorted - 0,187,0.000581,0.000709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,187,0.001695,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,187,0.000606,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,channel - 4,187,0.000512,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,channel - 1,187,0.000645,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001,187,0.000519,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,187,0.000543,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000714,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 1 10 - sorted - 1,187,0.000536,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 5000001 5000009 - sorted - 1,187,0.000527,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 1 500006 - sorted - 0,187,0.000511,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,187,0.000620,0.000820
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,187,0.000596,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,channel - 4,187,0.000664,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,channel - 1,187,0.000532,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001,187,0.000532,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 100000,187,0.000580,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.119795,0.127666
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 1 10 - sorted - 1,78948,0.002478,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 5000001 5000009 - sorted - 1,78948,0.068731,0.101627
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 1 500006 - sorted - 0,78948,0.115464,0.131885
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,78948,0.069979,0.127775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,78948,0.058237,0.132302
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,channel - 4,78948,0.116177,0.118518
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,channel - 1,78948,0.117471,0.118789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001,78948,0.063176,0.119427
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 100000,78948,0.063048,0.122067
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.013747,0.009153
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 1 10 - sorted - 1,26314,0.002607,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,26314,0.007068,0.006674
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 1 500006 - sorted - 0,26314,0.010120,0.008170
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,26314,0.008162,0.008097
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,26314,0.004568,0.008610
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,channel - 4,26314,0.009293,0.008517
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,channel - 1,26314,0.010589,0.008346
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001,26314,0.003973,0.007997
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,26314,0.003929,0.007857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.001820,0.002182
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 1 10 - sorted - 1,4074,0.000584,0.000787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 5000001 5000009 - sorted - 1,4074,0.001117,0.001719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 1 500006 - sorted - 0,4074,0.001752,0.001955
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4074,0.001109,0.001934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4074,0.001161,0.002071
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,channel - 4,4074,0.002093,0.002045
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,channel - 1,4074,0.002133,0.002093
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001,4074,0.001128,0.002107
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 100000,4074,0.001123,0.001976
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.012191,0.008609
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 1 10 - sorted - 1,109081,0.004177,0.002076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,109081,0.006776,0.007365
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 1 500006 - sorted - 0,109081,0.010000,0.009130
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,109081,0.009507,0.008792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,109081,0.007150,0.009458
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,channel - 4,109081,0.008868,0.008816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,channel - 1,109081,0.008557,0.008897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001,109081,0.004652,0.009360
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,109081,0.004813,0.009397
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,0.038807,0.050244
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 1 10 - sorted - 1,1304905,0.002584,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,1304905,0.003455,0.001223
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 1 500006 - sorted - 0,1304905,0.039579,0.035601
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1304905,0.004985,0.035143
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1304905,0.001408,0.034829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,channel - 4,1304905,0.039547,0.033903
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,channel - 1,1304905,0.036024,0.035802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001,1304905,0.001024,0.035627
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,1304905,0.000889,0.034704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.094866,0.038492
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,3797,0.436193,0.004856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,3797,0.018824,0.009601
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.029055,0.018617
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,3797,0.173560,0.002607
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,3797,0.011974,0.005542
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 500006 - sorted - 0,3797,0.164434,0.008349
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3797,0.026849,0.010517
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3797,0.008704,0.007058
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 4,3797,0.009096,0.007181
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 1,3797,0.004046,0.005850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001,3797,0.003947,0.003672
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,3797,0.004151,0.004459
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.040577,0.021715
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 10 - sorted - 1,51468,0.006160,0.001944
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 5000001 5000009 - sorted - 1,51468,0.002299,0.002115
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 500006 - sorted - 0,51468,0.007377,0.005475
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,51468,0.008812,0.004039
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,51468,0.003328,0.004363
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 4,51468,0.003882,0.004153
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 1,51468,0.003483,0.004422
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001,51468,0.001275,0.002034
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 100000,51468,0.001491,0.001990
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.017031,0.015246
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,3797,0.006306,0.002346
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,3797,0.009394,0.004966
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidrange - 1 500006 - sorted - 0,3797,0.014092,0.005170
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3797,0.010442,0.007370
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3797,0.005071,0.004981
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 4,3797,0.005449,0.005652
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,channel - 1,3797,0.004198,0.004529
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001,3797,0.002419,0.003723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,3797,0.003736,0.004474
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.009021,0.008048
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 10 - sorted - 1,51468,0.002189,0.001545
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 5000001 5000009 - sorted - 1,51468,0.003122,0.001934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidrange - 1 500006 - sorted - 0,51468,0.005865,0.004146
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,51468,0.003426,0.002342
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,51468,0.001305,0.001890
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 4,51468,0.003708,0.003776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,channel - 1,51468,0.003869,0.004502
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001,51468,0.001089,0.001889
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,uidlist - 500001 - uidrange - 1 100000,51468,0.001227,0.001910
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.384896,0.447222
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 1 10 - sorted - 1,283479,0.002283,0.000952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 5000001 5000009 - sorted - 1,283479,0.001246,0.000910
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidrange - 1 500006 - sorted - 0,283479,0.133937,0.308205
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,283479,0.159087,0.290932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,283479,0.134299,0.284097
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,channel - 4,283479,0.362959,0.404738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,channel - 1,283479,0.373378,0.429369
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001,283479,0.129843,0.288558
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,uidlist - 500001 - uidrange - 1 100000,283479,0.133938,0.279197
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.010305,0.017630
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 1 10 - sorted - 1,3536,0.002927,0.000944
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,3536,0.002219,0.000924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidrange - 1 500006 - sorted - 0,3536,0.004212,0.003213
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3536,0.007484,0.004025
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3536,0.002063,0.003185
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,channel - 4,3536,0.004233,0.004491
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,channel - 1,3536,0.004941,0.003845
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001,3536,0.001901,0.002777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,3536,0.001746,0.002776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.079423,0.093660
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 1 10 - sorted - 1,348642,0.000495,0.001137
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,348642,0.020551,0.043805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidrange - 1 500006 - sorted - 0,348642,0.020950,0.046747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,348642,0.020074,0.044699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,348642,0.020887,0.056024
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,channel - 4,348642,0.074970,0.085953
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,channel - 1,348642,0.072139,0.071920
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001,348642,0.019691,0.049109
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,348642,0.019246,0.043150
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.030082,0.011243
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 1 10 - sorted - 1,1736,0.002607,0.001077
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1736,0.004461,0.004199
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidrange - 1 500006 - sorted - 0,1736,0.003289,0.002976
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1736,0.009769,0.004002
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1736,0.002266,0.002809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,channel - 4,1736,0.004144,0.004067
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,channel - 1,1736,0.003559,0.003932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001,1736,0.002873,0.003054
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1736,0.001905,0.002807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.162955,2.187148
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,2433973,0.002744,0.000862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,2433973,0.106310,0.236361
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,2433973,0.097472,0.231802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2433973,0.118658,0.236637
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2433973,0.106883,0.233507
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,channel - 4,2433973,2.123658,2.184207
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,channel - 1,2433973,2.159980,2.485321
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001,2433973,0.108053,0.239199
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,2433973,0.100502,0.258670
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.272172,0.275338
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,291725,0.000746,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,291725,0.017700,0.038125
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,291725,0.016297,0.038282
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,291725,0.016493,0.040407
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,291725,0.017796,0.037839
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,channel - 4,291725,0.247266,0.251688
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,channel - 1,291725,0.240059,0.250320
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001,291725,0.014743,0.035345
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,291725,0.014861,0.043039
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.032441,0.021003
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 1 10 - sorted - 1,11114,0.002727,0.001063
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 5000001 5000009 - sorted - 1,11114,0.001288,0.000963
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidrange - 1 500006 - sorted - 0,11114,0.005344,0.005095
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,11114,0.009121,0.004757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,11114,0.002535,0.004154
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,channel - 4,11114,0.013697,0.018952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,channel - 1,11114,0.015168,0.012824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001,11114,0.002713,0.004052
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,uidlist - 500001 - uidrange - 1 100000,11114,0.002597,0.004270
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.622575,0.601340
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,594749,0.003246,0.001346
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,594749,0.033963,0.076953
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,594749,0.030216,0.075726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,594749,0.034825,0.080104
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,594749,0.029207,0.070704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,channel - 4,594749,0.650758,0.627279
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,channel - 1,594749,0.632134,0.553226
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001,594749,0.027571,0.072454
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,594749,0.029660,0.107848
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.111428,0.092188
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 1 10 - sorted - 1,143315,0.004291,0.001726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,143315,0.001439,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidrange - 1 500006 - sorted - 0,143315,0.009554,0.010745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,143315,0.015108,0.011257
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,143315,0.007693,0.011421
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,channel - 4,143315,0.059330,0.064388
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,channel - 1,143315,0.065297,0.084984
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001,143315,0.007255,0.010572
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,143315,0.008405,0.020106
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.019981,0.008849
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 1 10 - sorted - 1,7238,0.003073,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,7238,0.004444,0.001761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidrange - 1 500006 - sorted - 0,7238,0.002188,0.001702
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,7238,0.014800,0.002457
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,7238,0.001414,0.001801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,channel - 4,7238,0.001976,0.002719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,channel - 1,7238,0.006808,0.002170
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001,7238,0.001562,0.001702
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,7238,0.001172,0.001698
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.024633,0.009243
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,16954,0.002938,0.000882
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,16954,0.006096,0.002099
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,16954,0.003314,0.003715
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,16954,0.009469,0.002293
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,16954,0.002444,0.001983
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,channel - 4,16954,0.002745,0.002772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,channel - 1,16954,0.004894,0.002602
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001,16954,0.001621,0.002107
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,16954,0.001326,0.002299
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002319,0.001555
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 1 10 - sorted - 1,199,0.001955,0.001783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,199,0.000632,0.000979
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidrange - 1 500006 - sorted - 0,199,0.000583,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.002578,0.001516
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000594,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,channel - 4,199,0.000621,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,channel - 1,199,0.000548,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001,199,0.000588,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,199,0.000525,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.027149,0.019048
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,8602,0.003065,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,8602,0.010001,0.013527
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,8602,0.007791,0.012176
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,8602,0.015607,0.011837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,8602,0.007112,0.011514
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,channel - 4,8602,0.011444,0.015722
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,channel - 1,8602,0.015879,0.013004
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001,8602,0.006712,0.011405
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,8602,0.007254,0.010800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.024081,0.020926
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,817352,0.007448,0.004216
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,817352,0.005205,0.002514
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,817352,0.008595,0.006873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,817352,0.012793,0.003083
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,817352,0.001781,0.002446
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,channel - 4,817352,0.006387,0.006343
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,channel - 1,817352,0.008175,0.006395
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001,817352,0.001478,0.002412
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,817352,0.001712,0.002446
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.073025,0.069831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,8538524,0.001340,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,8538524,0.006138,0.012376
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,8538524,0.061282,0.059378
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,8538524,0.005934,0.012136
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,8538524,0.006007,0.011404
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,channel - 4,8538524,0.045953,0.051809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,channel - 1,8538524,0.046560,0.044908
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001,8538524,0.007154,0.011609
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,8538524,0.006212,0.011523
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.014213,0.012121
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 1 10 - sorted - 1,1373962,0.000601,0.001081
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,1373962,0.002371,0.003609
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidrange - 1 500006 - sorted - 0,1373962,0.008758,0.013680
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1373962,0.002006,0.004175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1373962,0.002478,0.003317
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,channel - 4,1373962,0.008969,0.009665
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,channel - 1,1373962,0.009251,0.009451
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001,1373962,0.001928,0.003527
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,1373962,0.002135,0.003335
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.014899,0.004191
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,360,0.003742,0.001130
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,360,0.003941,0.001141
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,360,0.001517,0.001055
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,360,0.008101,0.001558
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,360,0.001079,0.001022
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,channel - 4,360,0.001322,0.001435
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,channel - 1,360,0.003979,0.001638
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001,360,0.001077,0.000975
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,360,0.000674,0.001163
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.009755,0.008465
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,4701,0.000852,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,4701,0.002905,0.005076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,4701,0.002866,0.004922
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4701,0.002630,0.005150
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4701,0.002800,0.005791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,channel - 4,4701,0.005194,0.005883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,channel - 1,4701,0.007951,0.006992
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001,4701,0.002871,0.005328
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,4701,0.002915,0.005223
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.009006,0.005456
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 1 10 - sorted - 1,3371,0.000572,0.000996
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 5000001 5000009 - sorted - 1,3371,0.002487,0.003877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidrange - 1 500006 - sorted - 0,3371,0.003426,0.003782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,3371,0.002153,0.003964
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,3371,0.002158,0.003890
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,channel - 4,3371,0.004327,0.004010
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,channel - 1,3371,0.004825,0.004806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001,3371,0.002267,0.004598
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,uidlist - 500001 - uidrange - 1 100000,3371,0.002192,0.004178
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.004771,0.002338
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1282,0.000595,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1282,0.001616,0.002157
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1282,0.001156,0.001984
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1282,0.001306,0.002015
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1282,0.001228,0.002474
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,channel - 4,1282,0.001886,0.001904
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,channel - 1,1282,0.002011,0.002325
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001,1282,0.001209,0.001877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1282,0.001116,0.001877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.001981,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,232,0.002053,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,232,0.000575,0.000972
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,232,0.000551,0.000850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.001981,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000642,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,channel - 4,232,0.000562,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,channel - 1,232,0.000574,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001,232,0.000590,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,232,0.000669,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.003474,0.003200
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1787,0.000601,0.001032
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1787,0.001381,0.002490
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1787,0.001457,0.002389
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1787,0.001970,0.002628
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1787,0.001402,0.002474
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,channel - 4,1787,0.002500,0.002615
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,channel - 1,1787,0.002702,0.002836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001,1787,0.001447,0.002465
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1787,0.001395,0.002324
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.004191,0.002629
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 1 10 - sorted - 1,1647,0.000511,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 5000001 5000009 - sorted - 1,1647,0.001362,0.002432
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidrange - 1 500006 - sorted - 0,1647,0.001425,0.002280
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1647,0.001323,0.002183
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1647,0.001357,0.002253
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,channel - 4,1647,0.001844,0.002073
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,channel - 1,1647,0.002325,0.002564
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001,1647,0.001333,0.002251
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,uidlist - 500001 - uidrange - 1 100000,1647,0.001468,0.002229
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.042582,0.008141
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,1359,0.003260,0.001265
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,1359,0.004383,0.001211
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,1359,0.001953,0.001133
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1359,0.008858,0.002053
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1359,0.000996,0.000979
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,channel - 4,1359,0.002101,0.001755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,channel - 1,1359,0.005491,0.003014
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001,1359,0.001107,0.001040
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,1359,0.001026,0.000924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.015172,0.007223
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,541,0.002957,0.001047
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,541,0.004161,0.001249
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,541,0.001585,0.001387
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,541,0.008669,0.001545
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,541,0.001002,0.001176
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,channel - 4,541,0.001451,0.001381
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,channel - 1,541,0.004412,0.001988
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001,541,0.001225,0.001261
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,541,0.000991,0.001282
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.014645,0.013751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,9278,0.000493,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,9278,0.006159,0.010787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,9278,0.006164,0.012565
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,9278,0.007896,0.012552
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,9278,0.007219,0.011147
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,channel - 4,9278,0.013076,0.014305
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,channel - 1,9278,0.017004,0.013987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001,9278,0.006509,0.010563
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,9278,0.006194,0.012486
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.001252,0.001415
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 1 10 - sorted - 1,431,0.000753,0.000850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,431,0.001386,0.001174
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidrange - 1 500006 - sorted - 0,431,0.001213,0.001178
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,431,0.000739,0.001013
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,431,0.000853,0.001184
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,channel - 4,431,0.000928,0.001154
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,channel - 1,431,0.000995,0.001144
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001,431,0.000701,0.001054
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,431,0.000714,0.001032
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.026620,0.008969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 1 10 - sorted - 1,587,0.003641,0.001185
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 5000001 5000009 - sorted - 1,587,0.004387,0.001328
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidrange - 1 500006 - sorted - 0,587,0.001840,0.001541
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,587,0.009952,0.003134
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,587,0.001175,0.001224
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,channel - 4,587,0.001629,0.001689
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,channel - 1,587,0.003946,0.001387
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001,587,0.001276,0.001153
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,uidlist - 500001 - uidrange - 1 100000,587,0.000836,0.001162
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.003956,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 1 10 - sorted - 1,207,0.002604,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,207,0.000568,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidrange - 1 500006 - sorted - 0,207,0.000578,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,207,0.002651,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,207,0.000561,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,channel - 4,207,0.000572,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,channel - 1,207,0.000570,0.000840
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001,207,0.000558,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,207,0.000582,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.004515,0.001078
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 1 10 - sorted - 1,130270,0.002530,0.000883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 5000001 5000009 - sorted - 1,130270,0.000599,0.000865
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidrange - 1 500006 - sorted - 0,130270,0.000576,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,130270,0.003158,0.001198
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,130270,0.000755,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,channel - 4,130270,0.000713,0.000904
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,channel - 1,130270,0.000511,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001,130270,0.000542,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,uidlist - 500001 - uidrange - 1 100000,130270,0.000654,0.000823
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.008819,0.000968
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 1 10 - sorted - 1,1751,0.002568,0.000881
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 5000001 5000009 - sorted - 1,1751,0.000553,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidrange - 1 500006 - sorted - 0,1751,0.000534,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1751,0.002462,0.000867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1751,0.000574,0.000840
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,channel - 4,1751,0.000526,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,channel - 1,1751,0.000670,0.000841
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001,1751,0.000574,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,uidlist - 500001 - uidrange - 1 100000,1751,0.000558,0.000867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.006772,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 1 10 - sorted - 1,2289,0.002969,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,2289,0.001056,0.001405
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidrange - 1 500006 - sorted - 0,2289,0.000630,0.000870
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2289,0.003207,0.000883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2289,0.000627,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,channel - 4,2289,0.000702,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,channel - 1,2289,0.000626,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001,2289,0.000626,0.000963
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,2289,0.000591,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.002451,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 1 10 - sorted - 1,2289,0.000640,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,2289,0.000628,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidrange - 1 500006 - sorted - 0,2289,0.000635,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,2289,0.000656,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,2289,0.000686,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,channel - 4,2289,0.000646,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,channel - 1,2289,0.000621,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001,2289,0.000680,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,2289,0.000613,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.002032,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 1 10 - sorted - 1,202,0.001938,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,202,0.000651,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidrange - 1 500006 - sorted - 0,202,0.000662,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,202,0.001956,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,202,0.000629,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,channel - 4,202,0.000605,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,channel - 1,202,0.000587,0.000728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001,202,0.000659,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,202,0.000546,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.004333,0.001051
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 1 10 - sorted - 1,224,0.002604,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,224,0.000672,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidrange - 1 500006 - sorted - 0,224,0.000628,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,224,0.002743,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,224,0.000669,0.000891
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,channel - 4,224,0.000692,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,channel - 1,224,0.000661,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001,224,0.000631,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,224,0.000626,0.001011
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.003615,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,194,0.002581,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,194,0.000605,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,194,0.000609,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,194,0.002595,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,194,0.000629,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,channel - 4,194,0.000729,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,channel - 1,194,0.000585,0.000719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001,194,0.000602,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,194,0.000585,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000685,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,194,0.000603,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,194,0.000600,0.000735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,194,0.000619,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,194,0.000561,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,194,0.000594,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,channel - 4,194,0.000577,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,channel - 1,194,0.000589,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001,194,0.000580,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,194,0.000578,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.003529,0.000991
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 1 10 - sorted - 1,4304,0.002684,0.001008
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 5000001 5000009 - sorted - 1,4304,0.000678,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidrange - 1 500006 - sorted - 0,4304,0.000613,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4304,0.002624,0.000862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4304,0.000679,0.001041
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,channel - 4,4304,0.000624,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,channel - 1,4304,0.000619,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001,4304,0.000629,0.001041
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,uidlist - 500001 - uidrange - 1 100000,4304,0.000859,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.004659,0.001142
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,17907,0.002461,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,17907,0.000603,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,17907,0.000568,0.000699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,17907,0.002455,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,17907,0.000624,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,channel - 4,17907,0.000577,0.000711
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,channel - 1,17907,0.000643,0.000714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001,17907,0.000560,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,17907,0.000569,0.000681
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.003278,0.000874
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 1 10 - sorted - 1,229,0.002854,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,229,0.000607,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidrange - 1 500006 - sorted - 0,229,0.000579,0.000706
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,229,0.002687,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,229,0.000609,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,channel - 4,229,0.000567,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,channel - 1,229,0.000591,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001,229,0.000589,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,229,0.000652,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.003130,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 1 10 - sorted - 1,206,0.002712,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,206,0.000643,0.000699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidrange - 1 500006 - sorted - 0,206,0.000578,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,206,0.002697,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,206,0.000636,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,channel - 4,206,0.000585,0.000699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,channel - 1,206,0.000596,0.000685
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001,206,0.000578,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,206,0.000599,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.003309,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,199,0.002518,0.000925
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,199,0.000560,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,199,0.000567,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.002526,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000598,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,channel - 4,199,0.000565,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,channel - 1,199,0.000626,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001,199,0.000576,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,199,0.000557,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000653,0.000703
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 1 10 - sorted - 1,199,0.000610,0.000707
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,199,0.000594,0.000743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidrange - 1 500006 - sorted - 0,199,0.000599,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,199,0.000678,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,199,0.000581,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,channel - 4,199,0.000602,0.000721
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,channel - 1,199,0.000560,0.000728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001,199,0.000562,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,199,0.000591,0.001144
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.003249,0.000832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,230,0.003015,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,230,0.000572,0.000714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,230,0.000624,0.000975
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,230,0.003283,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,230,0.000584,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,channel - 4,230,0.000574,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,channel - 1,230,0.000600,0.000743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001,230,0.000611,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,230,0.000650,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.002792,0.000690
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,218,0.002758,0.000708
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000555,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000919,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.003108,0.000721
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000580,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,channel - 4,218,0.000581,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,channel - 1,218,0.000550,0.000712
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001,218,0.000517,0.000719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000578,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.000748,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,218,0.000543,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000583,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000566,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.000563,0.000717
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000561,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,channel - 4,218,0.000580,0.001141
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,channel - 1,218,0.000633,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001,218,0.000558,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000562,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000624,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 1 10 - sorted - 1,218,0.000568,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,218,0.000548,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidrange - 1 500006 - sorted - 0,218,0.000591,0.000877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,218,0.000611,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,218,0.000571,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,channel - 4,218,0.000598,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,channel - 1,218,0.000574,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001,218,0.000589,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,218,0.000575,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.002168,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,220,0.002217,0.000832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,220,0.000559,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,220,0.000549,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,220,0.002165,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,220,0.000605,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,channel - 4,220,0.000630,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,channel - 1,220,0.000566,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001,220,0.000621,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,220,0.000587,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000646,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,221,0.000574,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,221,0.000620,0.001337
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,221,0.000593,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,221,0.000570,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,221,0.000560,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,channel - 4,221,0.000592,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,channel - 1,221,0.000597,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001,221,0.000579,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,221,0.000570,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000830,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 1 10 - sorted - 1,221,0.000557,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 5000001 5000009 - sorted - 1,221,0.000565,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidrange - 1 500006 - sorted - 0,221,0.000586,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,221,0.000565,0.000929
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,221,0.000574,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,channel - 4,221,0.000594,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,channel - 1,221,0.000647,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001,221,0.000583,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,uidlist - 500001 - uidrange - 1 100000,221,0.000572,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000688,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,232,0.000581,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,232,0.000592,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,232,0.000605,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.000584,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000558,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,channel - 4,232,0.000529,0.000901
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,channel - 1,232,0.000739,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001,232,0.000632,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,232,0.000641,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000644,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,232,0.000561,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,232,0.000560,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,232,0.000559,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,232,0.000598,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,232,0.000579,0.000720
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,channel - 4,232,0.000590,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,channel - 1,232,0.000592,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001,232,0.000572,0.000714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,232,0.000571,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000605,0.000709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,247,0.000854,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000568,0.000716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000600,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.000680,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000589,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,channel - 4,247,0.000608,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,channel - 1,247,0.000562,0.000941
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001,247,0.000553,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000556,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000641,0.000717
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 1 10 - sorted - 1,247,0.000539,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000584,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000576,0.000716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.000541,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000714,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,channel - 4,247,0.000590,0.001011
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,channel - 1,247,0.000579,0.000810
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001,247,0.000608,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000598,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.002780,0.000955
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,211,0.003049,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,211,0.000615,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,211,0.000698,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,211,0.002545,0.001007
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,211,0.000650,0.000962
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,channel - 4,211,0.000580,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,channel - 1,211,0.000620,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001,211,0.000626,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,211,0.000782,0.000897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.002718,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,205,0.002689,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,205,0.000759,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,205,0.000558,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,205,0.002958,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,205,0.000582,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,channel - 4,205,0.000811,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,channel - 1,205,0.000540,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001,205,0.000580,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,205,0.000578,0.000894
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.002305,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,258,0.002569,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,258,0.000608,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,258,0.000645,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,258,0.002724,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,258,0.000619,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,channel - 4,258,0.000586,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,channel - 1,258,0.000686,0.000820
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001,258,0.000616,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,258,0.000611,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000638,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 1 10 - sorted - 1,259,0.000785,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,259,0.000609,0.000853
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidrange - 1 500006 - sorted - 0,259,0.000579,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,259,0.000582,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,259,0.000578,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,channel - 4,259,0.000599,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,channel - 1,259,0.000591,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001,259,0.000592,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,259,0.000584,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.002781,0.001050
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 1 10 - sorted - 1,247,0.002749,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 5000001 5000009 - sorted - 1,247,0.000631,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidrange - 1 500006 - sorted - 0,247,0.000587,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,247,0.002660,0.000867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,247,0.000643,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,channel - 4,247,0.000634,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,channel - 1,247,0.000657,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001,247,0.000980,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,uidlist - 500001 - uidrange - 1 100000,247,0.000647,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.001979,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 1 10 - sorted - 1,187,0.001724,0.000679
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,187,0.000577,0.000905
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidrange - 1 500006 - sorted - 0,187,0.000626,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,187,0.001853,0.000735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,187,0.000559,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,channel - 4,187,0.000530,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,channel - 1,187,0.000529,0.000712
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001,187,0.000820,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,187,0.000543,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000629,0.000988
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 1 10 - sorted - 1,187,0.000557,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 5000001 5000009 - sorted - 1,187,0.000543,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidrange - 1 500006 - sorted - 0,187,0.000544,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,187,0.000615,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,187,0.000548,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,channel - 4,187,0.000626,0.000709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,channel - 1,187,0.000526,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001,187,0.000531,0.000909
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,uidlist - 500001 - uidrange - 1 100000,187,0.000551,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.163033,0.134743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 1 10 - sorted - 1,78948,0.002754,0.001213
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 5000001 5000009 - sorted - 1,78948,0.068529,0.105873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidrange - 1 500006 - sorted - 0,78948,0.118361,0.118278
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,78948,0.070962,0.135920
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,78948,0.065494,0.120133
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,channel - 4,78948,0.117935,0.123933
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,channel - 1,78948,0.109855,0.119274
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001,78948,0.059695,0.120080
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,uidlist - 500001 - uidrange - 1 100000,78948,0.059767,0.120723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.021617,0.011204
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 1 10 - sorted - 1,26314,0.001847,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,26314,0.007078,0.006811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidrange - 1 500006 - sorted - 0,26314,0.009816,0.007860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,26314,0.007554,0.008188
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,26314,0.004158,0.008862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,channel - 4,26314,0.007908,0.007961
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,channel - 1,26314,0.010437,0.009275
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001,26314,0.004273,0.008185
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,26314,0.003946,0.008554
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.002606,0.002263
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 1 10 - sorted - 1,4074,0.000539,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 5000001 5000009 - sorted - 1,4074,0.001130,0.001604
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidrange - 1 500006 - sorted - 0,4074,0.001906,0.002056
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,4074,0.001047,0.001924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,4074,0.001040,0.001963
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,channel - 4,4074,0.001694,0.001898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,channel - 1,4074,0.002210,0.001913
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001,4074,0.001109,0.002016
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,uidlist - 500001 - uidrange - 1 100000,4074,0.001069,0.001956
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.016208,0.008602
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 1 10 - sorted - 1,109081,0.004441,0.002093
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,109081,0.006449,0.007320
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidrange - 1 500006 - sorted - 0,109081,0.009443,0.008794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,109081,0.007624,0.008530
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,109081,0.004580,0.008538
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,channel - 4,109081,0.008514,0.008563
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,channel - 1,109081,0.008836,0.009094
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001,109081,0.004306,0.008506
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,109081,0.004904,0.010764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,1.868172,0.058976
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 1 10 - sorted - 1,1304905,0.002107,0.000735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 5000001 5000009 - sorted - 1,1304905,0.007132,0.001118
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidrange - 1 500006 - sorted - 0,1304905,0.046190,0.035919
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - sorted - 0,1304905,0.006960,0.041404
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 500006 - channel - 1 - sorted - 0,1304905,0.001523,0.037888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,channel - 4,1304905,0.041912,0.045621
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,channel - 1,1304905,0.060400,0.037053
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001,1304905,0.000910,0.036771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,uidlist - 500001 - uidrange - 1 100000,1304905,0.000860,0.038293
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.023501,0.016539
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.020219,0.008191
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.407221,0.434831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.008717,0.008808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.076407,0.085349
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.012100,0.007416
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.146288,2.275098
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.269391,0.254543
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.019603,0.016828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.590584,0.611502
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.066255,0.063261
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.007843,0.003424
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.011816,0.006128
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002169,0.001245
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.023584,0.015028
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.013409,0.010070
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.062140,0.060663
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.014396,0.011923
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.006507,0.003055
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.006518,0.007724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.005507,0.005697
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.002253,0.002593
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.002019,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.002833,0.003230
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.005091,0.003011
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.009829,0.004863
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.006703,0.002726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.012322,0.014577
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.001476,0.001272
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.006322,0.003582
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.002340,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.002594,0.000867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.002323,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.002343,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.001096,0.000832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.001878,0.000898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.002610,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.002204,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000635,0.000743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.003884,0.000943
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.002649,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.002491,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.002576,0.000952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.000701,0.001054
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000694,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.002449,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.002482,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.001204,0.000820
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000673,0.000697
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.000953,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000631,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000657,0.000865
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000609,0.000710
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000667,0.000787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000606,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000646,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.002196,0.000970
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.001937,0.000934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.002225,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000847,0.000826
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.001831,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.000867,0.000960
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000596,0.000700
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.132171,0.124777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.011245,0.008689
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.002805,0.002087
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.010824,0.008918
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,0.040831,0.039098
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.006494,0.010995
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.007911,0.006598
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.374944,0.417939
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.005018,0.006607
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.020855,0.016935
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.190788,0.165862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.012346,0.007141
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.162177,0.168057
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 1 10 sorted 1,3797,0.022975,0.011221
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 1 10 sorted 1,51468,0.002879,0.001773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 1 10 sorted 1,283479,0.002936,0.002716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 1 10 sorted 1,3536,0.009971,0.003987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 1 10 sorted 1,348642,0.001806,0.001377
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 1 10 sorted 1,1736,0.006565,0.008421
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 1 10 sorted 1,2433973,0.007134,0.002272
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 1 10 sorted 1,291725,0.000850,0.001568
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 1 10 sorted 1,11114,0.009281,0.002753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 1 10 sorted 1,594749,0.006595,0.003503
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 1 10 sorted 1,143315,0.005820,0.002912
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 1 10 sorted 1,7238,0.006870,0.002373
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 1 10 sorted 1,16954,0.006538,0.002715
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 1 10 sorted 1,199,0.004208,0.003999
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 1 10 sorted 1,8602,0.007153,0.002367
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 1 10 sorted 1,817352,0.020629,0.011943
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 1 10 sorted 1,8538524,0.001866,0.001194
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 1 10 sorted 1,1373962,0.001189,0.002675
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 1 10 sorted 1,360,0.010020,0.002111
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 1 10 sorted 1,4701,0.000856,0.001604
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 1 10 sorted 1,3371,0.000850,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 1 10 sorted 1,1282,0.000544,0.001243
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 1 10 sorted 1,232,0.004223,0.001588
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 1 10 sorted 1,1787,0.000838,0.001731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 1 10 sorted 1,1647,0.001154,0.001753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 1 10 sorted 1,1359,0.006762,0.003969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 1 10 sorted 1,541,0.007746,0.001243
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 1 10 sorted 1,9278,0.000869,0.001741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 1 10 sorted 1,431,0.000867,0.001549
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 1 10 sorted 1,587,0.007291,0.003949
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 1 10 sorted 1,207,0.003533,0.001506
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 1 10 sorted 1,130270,0.003574,0.001498
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 1 10 sorted 1,1751,0.003069,0.001239
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 1 10 sorted 1,2289,0.005103,0.002748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 1 10 sorted 1,2289,0.001294,0.001542
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 1 10 sorted 1,202,0.003059,0.001583
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 1 10 sorted 1,224,0.002947,0.000998
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 1 10 sorted 1,194,0.004074,0.001680
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 1 10 sorted 1,194,0.001262,0.001570
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 1 10 sorted 1,4304,0.004269,0.001705
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 1 10 sorted 1,17907,0.003968,0.001564
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 1 10 sorted 1,229,0.003476,0.001563
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 1 10 sorted 1,206,0.004618,0.001396
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 1 10 sorted 1,199,0.001032,0.002659
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 1 10 sorted 1,199,0.001099,0.001652
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 1 10 sorted 1,230,0.005224,0.003256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 1 10 sorted 1,218,0.003823,0.001987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 1 10 sorted 1,218,0.001656,0.001142
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 1 10 sorted 1,218,0.000964,0.001585
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 1 10 sorted 1,220,0.001001,0.001746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 1 10 sorted 1,221,0.001104,0.001156
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 1 10 sorted 1,221,0.000904,0.001241
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 1 10 sorted 1,232,0.000700,0.001172
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 1 10 sorted 1,232,0.000934,0.001251
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.000631,0.000888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 1 10 sorted 1,247,0.000930,0.001187
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 1 10 sorted 1,211,0.004174,0.001409
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 1 10 sorted 1,205,0.004813,0.001681
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 1 10 sorted 1,258,0.004788,0.001728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 1 10 sorted 1,259,0.001103,0.001744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.004040,0.001769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 1 10 sorted 1,187,0.000851,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 1 10 sorted 1,187,0.001303,0.001831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 1 10 sorted 1,78948,0.001631,0.001607
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 1 10 sorted 1,26314,0.000966,0.001516
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 1 10 sorted 1,4074,0.001135,0.001542
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 1 10 sorted 1,109081,0.009159,0.007952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 1 10 sorted 1,1304905,0.001422,0.001640
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.005454,0.011607
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.007179,0.006268
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.373263,0.417733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.010030,0.005970
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.070931,0.081224
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.007942,0.006289
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.098332,2.180707
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.276508,0.273763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.022074,0.014771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.571119,0.570398
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.062138,0.062404
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.005526,0.002888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.007275,0.004213
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002837,0.001307
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.015874,0.015141
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.010595,0.008439
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.050613,0.078860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.012558,0.010928
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.006086,0.002357
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.006057,0.006785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.004428,0.005857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.002092,0.002458
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.002703,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.002684,0.003096
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.002840,0.003998
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.007064,0.003435
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.005644,0.002444
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.014208,0.014932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.002383,0.001400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.005352,0.002900
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.002752,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.002290,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.002292,0.000880
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.002448,0.000910
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.001031,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.001788,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.002505,0.001465
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.004040,0.000810
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000663,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.002242,0.000862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.002463,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.002474,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.002259,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.000864,0.001088
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000602,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.003103,0.001023
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.002699,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.000612,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000625,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.000837,0.001066
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000642,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000606,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000634,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000604,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000594,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000574,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.003156,0.000860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.002736,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.002458,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000653,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.002358,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.000754,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000586,0.000743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.138348,0.134176
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.010999,0.009003
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.002934,0.002268
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.011239,0.008875
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,0.040906,0.041357
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.173299,0.178384
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.178377,0.161463
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, filter customFunc,283479,0.156720,0.161451
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, filter customFunc,3536,0.164708,0.187669
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, filter customFunc,348642,0.171330,0.149291
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, filter customFunc,1736,0.162731,0.169130
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, filter customFunc,2433973,0.170407,0.163173
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, filter customFunc,291725,0.156449,0.156340
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, filter customFunc,11114,0.166665,0.157544
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, filter customFunc,594749,0.162712,0.171131
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, filter customFunc,143315,0.129663,0.162346
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, filter customFunc,7238,0.168715,0.119403
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, filter customFunc,16954,0.151699,0.122549
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, filter customFunc,199,0.002700,0.002988
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, filter customFunc,8602,0.124829,0.111310
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, filter customFunc,817352,0.162854,0.159660
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, filter customFunc,8538524,0.167400,0.161895
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, filter customFunc,1373962,0.127943,0.118210
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.427582,0.240378
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.177102,0.165165
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, filter customFunc,283479,0.183843,0.186752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, filter customFunc,3536,0.123848,0.188194
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, filter customFunc,348642,0.179985,0.111972
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, filter customFunc,1736,0.159937,0.149006
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, filter customFunc,2433973,0.130016,0.117760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, filter customFunc,291725,0.159501,0.172813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, filter customFunc,11114,0.159604,0.162451
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, filter customFunc,594749,0.121849,0.115896
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.066645,0.056217
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.020501,0.016387
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, filter customFunc,283479,1.875877,0.917076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, filter customFunc,3536,0.021871,0.024269
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, filter customFunc,348642,0.333691,0.146434
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, filter customFunc,1736,0.016342,0.011187
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, filter customFunc,2433973,3.055408,2.308485
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, filter customFunc,291725,0.358031,0.282936
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, filter customFunc,11114,0.031427,0.015359
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, filter customFunc,594749,0.821463,0.557310
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, filter customFunc,143315,0.152097,0.165480
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, filter customFunc,7238,0.021563,0.005475
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, filter customFunc,16954,0.023409,0.012906
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, filter customFunc,199,0.004462,0.003289
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, filter customFunc,8602,0.091013,0.046618
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, filter customFunc,817352,0.040798,0.020169
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, filter customFunc,8538524,0.200295,0.153451
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, filter customFunc,1373962,0.052316,0.034418
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, filter customFunc,360,0.015398,0.004641
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, filter customFunc,4701,0.031025,0.012717
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, filter customFunc,3371,0.027278,0.016504
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, filter customFunc,1282,0.011196,0.004535
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, filter customFunc,232,0.006034,0.001277
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, filter customFunc,1787,0.012096,0.009329
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, filter customFunc,1647,0.006874,0.006973
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, filter customFunc,1359,0.019490,0.007029
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, filter customFunc,541,0.018905,0.005908
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, filter customFunc,9278,0.092650,0.042523
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, filter customFunc,431,0.006408,0.003344
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, filter customFunc,587,0.019835,0.007198
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, filter customFunc,207,0.007268,0.001521
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, filter customFunc,130270,0.005111,0.002183
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, filter customFunc,1751,0.005656,0.001461
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, filter customFunc,2289,0.006780,0.000918
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, filter customFunc,2289,0.001589,0.001858
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, filter customFunc,202,0.003707,0.001620
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, filter customFunc,224,0.006367,0.001586
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, filter customFunc,194,0.006327,0.001774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, filter customFunc,194,0.001572,0.001654
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, filter customFunc,4304,0.004870,0.001571
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, filter customFunc,17907,0.003834,0.001922
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, filter customFunc,229,0.002932,0.001712
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, filter customFunc,206,0.005329,0.001355
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, filter customFunc,199,0.002853,0.001921
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, filter customFunc,199,0.003048,0.001589
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, filter customFunc,230,0.005572,0.001859
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, filter customFunc,218,0.005174,0.001507
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, filter customFunc,218,0.003243,0.001545
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, filter customFunc,218,0.001250,0.001643
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, filter customFunc,220,0.001540,0.001788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, filter customFunc,221,0.002479,0.001608
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, filter customFunc,221,0.001485,0.001605
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, filter customFunc,232,0.001397,0.001450
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, filter customFunc,232,0.001079,0.001549
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, filter customFunc,247,0.001516,0.002165
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, filter customFunc,247,0.001387,0.001403
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, filter customFunc,211,0.004634,0.001346
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, filter customFunc,205,0.005497,0.001400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, filter customFunc,258,0.007875,0.002514
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, filter customFunc,259,0.001703,0.001484
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, filter customFunc,247,0.005988,0.001446
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, filter customFunc,187,0.002551,0.001593
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, filter customFunc,187,0.001906,0.001771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, filter customFunc,78948,0.504889,0.152338
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, filter customFunc,26314,0.023996,0.009482
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, filter customFunc,4074,0.004067,0.002197
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, filter customFunc,109081,0.025005,0.009704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, filter customFunc,1304905,0.047621,0.044070
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.022318,0.013393
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 1 10 sorted 1,3797,0.004655,0.003260
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 5000001 5000009 sorted 1,3797,0.013228,0.006083
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 1 500006 sorted 0,3797,0.009116,0.005906
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3797,0.015519,0.008747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3797,0.007787,0.005713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, channel 4,3797,0.006719,0.005665
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, channel 1,3797,0.004460,0.005456
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001,3797,0.002974,0.003836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 100000,3797,0.003411,0.004709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.008563,0.006400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3797,0.009402,0.009290
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.009648,0.005539
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 1 10 sorted 1,51468,0.003050,0.001498
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 5000001 5000009 sorted 1,51468,0.004046,0.002100
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 1 500006 sorted 0,51468,0.005880,0.004370
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,51468,0.007606,0.002428
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,51468,0.002101,0.002000
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, channel 4,51468,0.004747,0.003735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, channel 1,51468,0.003600,0.004681
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001,51468,0.001157,0.001961
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 100000,51468,0.001199,0.002253
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.006928,0.003930
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,51468,0.006227,0.003273
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.410216,0.461777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 1 10 sorted 1,283479,0.002357,0.001134
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 5000001 5000009 sorted 1,283479,0.001231,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 1 500006 sorted 0,283479,0.142464,0.303866
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,283479,0.147304,0.300866
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,283479,0.142045,0.282177
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, channel 4,283479,0.359758,0.406738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, channel 1,283479,0.359862,0.455124
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001,283479,0.138510,0.296313
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 100000,283479,0.126517,0.287942
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, filter customFunc,283479,0.369742,0.409861
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,283479,0.136108,0.307615
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.009659,0.005944
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 1 10 sorted 1,3536,0.002404,0.001052
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 5000001 5000009 sorted 1,3536,0.001498,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 1 500006 sorted 0,3536,0.004608,0.002926
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3536,0.008117,0.003382
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3536,0.001927,0.002897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, channel 4,3536,0.003615,0.004040
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, channel 1,3536,0.007027,0.004151
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001,3536,0.001710,0.002821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 100000,3536,0.001640,0.002799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, filter customFunc,3536,0.006604,0.004400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3536,0.006927,0.003247
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.074709,0.085296
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 1 10 sorted 1,348642,0.000524,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 5000001 5000009 sorted 1,348642,0.022592,0.043676
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 1 500006 sorted 0,348642,0.020883,0.042338
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,348642,0.020802,0.043542
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,348642,0.021191,0.044870
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, channel 4,348642,0.070517,0.079668
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, channel 1,348642,0.073779,0.074984
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001,348642,0.021292,0.041882
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 100000,348642,0.021247,0.042690
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, filter customFunc,348642,0.076358,0.072662
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,348642,0.022512,0.047749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.010312,0.005881
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 1 10 sorted 1,1736,0.002561,0.000976
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 5000001 5000009 sorted 1,1736,0.004861,0.003113
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 1 500006 sorted 0,1736,0.002933,0.002946
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1736,0.008216,0.003559
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1736,0.002194,0.003100
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, channel 4,1736,0.004288,0.004220
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, channel 1,1736,0.003407,0.003938
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001,1736,0.002184,0.002892
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 100000,1736,0.001913,0.002855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, filter customFunc,1736,0.006938,0.004112
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1736,0.007953,0.003077
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.078019,2.097530
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 1 10 sorted 1,2433973,0.002534,0.001282
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,2433973,0.118014,0.235568
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 1 500006 sorted 0,2433973,0.094162,0.238822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,2433973,0.128776,0.263204
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2433973,0.109519,0.244007
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, channel 4,2433973,2.126044,2.132079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, channel 1,2433973,2.118353,2.150308
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001,2433973,0.109179,0.232848
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,2433973,0.101757,0.248251
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, filter customFunc,2433973,2.145973,2.250613
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2433973,0.136286,0.260981
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.262089,0.286265
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 1 10 sorted 1,291725,0.000888,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,291725,0.019384,0.043181
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 1 500006 sorted 0,291725,0.024202,0.041318
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,291725,0.016304,0.042524
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,291725,0.017984,0.038376
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, channel 4,291725,0.256266,0.280385
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, channel 1,291725,0.282393,0.261399
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001,291725,0.016268,0.039493
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,291725,0.016087,0.039672
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, filter customFunc,291725,0.270433,0.260480
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,291725,0.017186,0.039846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.021952,0.021813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 1 10 sorted 1,11114,0.002887,0.001147
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 5000001 5000009 sorted 1,11114,0.001419,0.000932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 1 500006 sorted 0,11114,0.006110,0.004169
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,11114,0.009851,0.005006
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,11114,0.005576,0.004183
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, channel 4,11114,0.013035,0.013175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, channel 1,11114,0.015152,0.013408
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001,11114,0.002815,0.005617
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 100000,11114,0.002386,0.004185
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, filter customFunc,11114,0.016348,0.013374
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,11114,0.009620,0.004780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.576082,0.549783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 1 10 sorted 1,594749,0.002961,0.001049
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,594749,0.030040,0.068123
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 1 500006 sorted 0,594749,0.029303,0.068561
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,594749,0.033931,0.073774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,594749,0.027976,0.070405
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, channel 4,594749,0.539282,0.551555
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, channel 1,594749,0.510806,0.538939
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001,594749,0.030079,0.071374
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,594749,0.027833,0.073565
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, filter customFunc,594749,0.563470,0.569536
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,594749,0.036679,0.076762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.066796,0.074174
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 1 10 sorted 1,143315,0.002914,0.000950
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 5000001 5000009 sorted 1,143315,0.001298,0.000848
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 1 500006 sorted 0,143315,0.018200,0.009832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,143315,0.012579,0.010259
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,143315,0.006757,0.010180
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, channel 4,143315,0.052722,0.059260
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, channel 1,143315,0.054554,0.062219
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001,143315,0.006870,0.009553
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 100000,143315,0.005969,0.009739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, filter customFunc,143315,0.062668,0.057570
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,143315,0.013713,0.011867
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.009759,0.002920
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 1 10 sorted 1,7238,0.003299,0.000941
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 5000001 5000009 sorted 1,7238,0.004683,0.001616
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 1 500006 sorted 0,7238,0.001898,0.002155
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,7238,0.007868,0.001764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,7238,0.001494,0.001740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, channel 4,7238,0.002300,0.002111
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, channel 1,7238,0.005796,0.002016
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001,7238,0.001223,0.001781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 100000,7238,0.001089,0.001611
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, filter customFunc,7238,0.005462,0.002037
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,7238,0.007883,0.002347
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.010174,0.003774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 1 10 sorted 1,16954,0.003352,0.001026
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,16954,0.004854,0.001850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 1 500006 sorted 0,16954,0.001941,0.001883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,16954,0.009919,0.002242
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,16954,0.001509,0.001896
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, channel 4,16954,0.002803,0.002718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, channel 1,16954,0.005428,0.002714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001,16954,0.001990,0.002078
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,16954,0.001239,0.002066
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, filter customFunc,16954,0.006020,0.002916
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,16954,0.008007,0.002113
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002281,0.002081
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 1 10 sorted 1,199,0.002046,0.001499
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 5000001 5000009 sorted 1,199,0.000594,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 1 500006 sorted 0,199,0.000503,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,199,0.002690,0.001639
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.000597,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, channel 4,199,0.000517,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, channel 1,199,0.000580,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001,199,0.000606,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 100000,199,0.000540,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, filter customFunc,199,0.002426,0.000936
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.002338,0.001634
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.020019,0.014858
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 1 10 sorted 1,8602,0.003215,0.000933
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,8602,0.010249,0.012236
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 1 500006 sorted 0,8602,0.007018,0.010984
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,8602,0.013964,0.014511
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,8602,0.006871,0.014186
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, channel 4,8602,0.012742,0.012970
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, channel 1,8602,0.019133,0.013589
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001,8602,0.006504,0.010968
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,8602,0.006690,0.011040
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, filter customFunc,8602,0.016622,0.013399
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,8602,0.012868,0.014838
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.015393,0.008198
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 1 10 sorted 1,817352,0.006797,0.004039
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,817352,0.005363,0.002544
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 1 500006 sorted 0,817352,0.008217,0.006718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,817352,0.008276,0.003133
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,817352,0.003215,0.002452
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, channel 4,817352,0.006104,0.006421
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, channel 1,817352,0.009333,0.006229
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001,817352,0.001635,0.002579
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,817352,0.001669,0.002767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, filter customFunc,817352,0.010728,0.006303
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,817352,0.008675,0.003599
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.055470,0.061309
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 1 10 sorted 1,8538524,0.001438,0.000883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,8538524,0.006846,0.011685
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 1 500006 sorted 0,8538524,0.054666,0.051670
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,8538524,0.006567,0.011301
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,8538524,0.007600,0.010896
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, channel 4,8538524,0.042363,0.044355
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, channel 1,8538524,0.043635,0.041462
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001,8538524,0.007328,0.010726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,8538524,0.006015,0.010579
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, filter customFunc,8538524,0.042290,0.046255
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,8538524,0.006149,0.011904
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.012764,0.011750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 1 10 sorted 1,1373962,0.000495,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 5000001 5000009 sorted 1,1373962,0.003518,0.003694
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 1 500006 sorted 0,1373962,0.009188,0.010321
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1373962,0.002054,0.003498
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1373962,0.002027,0.003663
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, channel 4,1373962,0.009570,0.010501
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, channel 1,1373962,0.008570,0.009528
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001,1373962,0.002010,0.003374
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 100000,1373962,0.001930,0.003311
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, filter customFunc,1373962,0.008672,0.011002
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1373962,0.002074,0.003396
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.009558,0.002103
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 1 10 sorted 1,360,0.003068,0.000917
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,360,0.004230,0.000973
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 1 500006 sorted 0,360,0.001667,0.001020
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,360,0.008710,0.001172
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,360,0.001003,0.000985
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, channel 4,360,0.001213,0.000978
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, channel 1,360,0.003810,0.001362
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001,360,0.000822,0.001066
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,360,0.000797,0.000999
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, filter customFunc,360,0.005974,0.001251
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,360,0.008213,0.001151
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.007209,0.006242
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 1 10 sorted 1,4701,0.000601,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,4701,0.003541,0.005215
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 1 500006 sorted 0,4701,0.002905,0.005595
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,4701,0.003526,0.005716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4701,0.003265,0.005322
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, channel 4,4701,0.004556,0.005420
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, channel 1,4701,0.007421,0.007162
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001,4701,0.003232,0.005513
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,4701,0.003140,0.005729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, filter customFunc,4701,0.007549,0.006487
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4701,0.003110,0.005593
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.004316,0.005198
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 1 10 sorted 1,3371,0.000570,0.000922
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 5000001 5000009 sorted 1,3371,0.002859,0.011965
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 1 500006 sorted 0,3371,0.002490,0.004472
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3371,0.002410,0.004002
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3371,0.002168,0.003899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, channel 4,3371,0.003772,0.004390
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, channel 1,3371,0.004828,0.005025
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001,3371,0.002311,0.004256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 100000,3371,0.002176,0.003888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, filter customFunc,3371,0.004328,0.004749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3371,0.002273,0.004327
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.002020,0.002894
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 1 10 sorted 1,1282,0.000527,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1282,0.001292,0.001996
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 1 500006 sorted 0,1282,0.001177,0.001922
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1282,0.001223,0.001935
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1282,0.002207,0.002152
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, channel 4,1282,0.001750,0.001891
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, channel 1,1282,0.001897,0.002205
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001,1282,0.001164,0.001849
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1282,0.001188,0.002086
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, filter customFunc,1282,0.002433,0.002301
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1282,0.001251,0.002232
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.002192,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 1 10 sorted 1,232,0.002253,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,232,0.000610,0.000994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 1 500006 sorted 0,232,0.000623,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,232,0.002305,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000575,0.000888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, channel 4,232,0.000586,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, channel 1,232,0.000539,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001,232,0.000575,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,232,0.000512,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, filter customFunc,232,0.003198,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.002300,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.002943,0.003098
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 1 10 sorted 1,1787,0.000654,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1787,0.001545,0.002361
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 1 500006 sorted 0,1787,0.001678,0.003126
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1787,0.001786,0.002482
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1787,0.001530,0.002386
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, channel 4,1787,0.002243,0.002421
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, channel 1,1787,0.002903,0.002836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001,1787,0.001402,0.002377
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1787,0.001458,0.002345
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, filter customFunc,1787,0.002609,0.003143
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1787,0.001657,0.002665
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.002783,0.002699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 1 10 sorted 1,1647,0.000537,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,1647,0.001349,0.002225
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 1 500006 sorted 0,1647,0.001571,0.002399
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1647,0.001418,0.002191
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1647,0.001443,0.002239
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, channel 4,1647,0.001955,0.002488
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, channel 1,1647,0.002419,0.002753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001,1647,0.001415,0.002250
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,1647,0.002143,0.002242
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, filter customFunc,1647,0.002821,0.003151
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1647,0.001423,0.002334
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.010695,0.002765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 1 10 sorted 1,1359,0.003108,0.001076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1359,0.004367,0.001174
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 1 500006 sorted 0,1359,0.001589,0.000969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1359,0.008105,0.001264
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1359,0.001022,0.001026
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, channel 4,1359,0.001472,0.001129
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, channel 1,1359,0.004252,0.001277
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001,1359,0.000850,0.001021
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1359,0.000799,0.001197
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, filter customFunc,1359,0.004906,0.001230
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1359,0.007557,0.001303
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.012173,0.002281
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 1 10 sorted 1,541,0.003345,0.000898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,541,0.004600,0.001209
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 1 500006 sorted 0,541,0.001701,0.001203
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,541,0.008376,0.001398
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,541,0.001203,0.001323
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, channel 4,541,0.001663,0.001398
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, channel 1,541,0.004494,0.001422
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001,541,0.000997,0.001234
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,541,0.000859,0.001203
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, filter customFunc,541,0.004883,0.001454
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,541,0.008250,0.001704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.013322,0.014133
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 1 10 sorted 1,9278,0.000536,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,9278,0.006359,0.010847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 1 500006 sorted 0,9278,0.006377,0.011076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,9278,0.006772,0.010862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,9278,0.006587,0.010903
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, channel 4,9278,0.012290,0.014530
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, channel 1,9278,0.020206,0.014125
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001,9278,0.006256,0.011669
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,9278,0.006244,0.010986
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, filter customFunc,9278,0.012332,0.014020
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,9278,0.006082,0.011474
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.001087,0.001285
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 1 10 sorted 1,431,0.000466,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,431,0.000771,0.001089
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 1 500006 sorted 0,431,0.000788,0.001107
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,431,0.000886,0.001134
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,431,0.000810,0.001164
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, channel 4,431,0.000958,0.001208
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, channel 1,431,0.001058,0.001260
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001,431,0.000798,0.001079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,431,0.000807,0.001469
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, filter customFunc,431,0.001000,0.001547
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,431,0.000836,0.001153
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.010030,0.003050
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 1 10 sorted 1,587,0.003093,0.001063
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,587,0.004535,0.001183
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 1 500006 sorted 0,587,0.001920,0.001237
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,587,0.008329,0.001392
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,587,0.001360,0.001347
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, channel 4,587,0.001627,0.001308
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, channel 1,587,0.004094,0.001369
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001,587,0.001327,0.001170
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,587,0.000901,0.001197
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, filter customFunc,587,0.005568,0.001506
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,587,0.007862,0.001546
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.004568,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 1 10 sorted 1,207,0.002925,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 5000001 5000009 sorted 1,207,0.000558,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 1 500006 sorted 0,207,0.000592,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,207,0.003606,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,207,0.000622,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, channel 4,207,0.000584,0.000721
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, channel 1,207,0.000535,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001,207,0.000856,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 100000,207,0.000625,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, filter customFunc,207,0.003130,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,207,0.002979,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.003951,0.000898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 1 10 sorted 1,130270,0.002599,0.000950
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 5000001 5000009 sorted 1,130270,0.001458,0.000841
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 1 500006 sorted 0,130270,0.000616,0.000900
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,130270,0.002914,0.000969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,130270,0.001395,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, channel 4,130270,0.001186,0.000840
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, channel 1,130270,0.000548,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001,130270,0.000572,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 100000,130270,0.000548,0.000878
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, filter customFunc,130270,0.002916,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,130270,0.003099,0.000949
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.004251,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 1 10 sorted 1,1751,0.002946,0.000876
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 5000001 5000009 sorted 1,1751,0.000582,0.000839
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 1 500006 sorted 0,1751,0.000601,0.000868
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,1751,0.002939,0.000898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1751,0.000675,0.001074
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, channel 4,1751,0.000905,0.000871
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, channel 1,1751,0.000546,0.000871
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001,1751,0.000537,0.000882
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 100000,1751,0.000588,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, filter customFunc,1751,0.002801,0.000843
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1751,0.002917,0.000921
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.005005,0.000893
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 1 10 sorted 1,2289,0.003500,0.000902
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 5000001 5000009 sorted 1,2289,0.000590,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 1 500006 sorted 0,2289,0.000715,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,2289,0.003263,0.001088
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2289,0.000710,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, channel 4,2289,0.000693,0.000810
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, channel 1,2289,0.000645,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001,2289,0.000587,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 100000,2289,0.000569,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, filter customFunc,2289,0.003533,0.000900
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2289,0.003162,0.000923
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.000641,0.001004
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 1 10 sorted 1,2289,0.000610,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 5000001 5000009 sorted 1,2289,0.000632,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 1 500006 sorted 0,2289,0.000557,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,2289,0.000637,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2289,0.000635,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, channel 4,2289,0.000631,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, channel 1,2289,0.000678,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001,2289,0.000645,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 100000,2289,0.000633,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, filter customFunc,2289,0.000648,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2289,0.000642,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.002938,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 1 10 sorted 1,202,0.002111,0.000943
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 5000001 5000009 sorted 1,202,0.000626,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 1 500006 sorted 0,202,0.000718,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,202,0.001975,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,202,0.000562,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, channel 4,202,0.000579,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, channel 1,202,0.000623,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001,202,0.000662,0.000833
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 100000,202,0.000622,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, filter customFunc,202,0.002205,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,202,0.001969,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.004671,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 1 10 sorted 1,224,0.002930,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 5000001 5000009 sorted 1,224,0.000679,0.000950
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 1 500006 sorted 0,224,0.000740,0.001937
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,224,0.002927,0.001013
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,224,0.000618,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, channel 4,224,0.000594,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, channel 1,224,0.000635,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001,224,0.000665,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 100000,224,0.000647,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, filter customFunc,224,0.003036,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,224,0.003040,0.000974
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.004178,0.000707
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 1 10 sorted 1,194,0.002946,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,194,0.000624,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 1 500006 sorted 0,194,0.000625,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,194,0.002867,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,194,0.000596,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, channel 4,194,0.000637,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, channel 1,194,0.000579,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001,194,0.000643,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,194,0.000626,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, filter customFunc,194,0.002940,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,194,0.002861,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000583,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 1 10 sorted 1,194,0.000824,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,194,0.000594,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 1 500006 sorted 0,194,0.000585,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,194,0.000794,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,194,0.000548,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, channel 4,194,0.000608,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, channel 1,194,0.000633,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001,194,0.000610,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,194,0.000620,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, filter customFunc,194,0.000651,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,194,0.000843,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.004786,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 1 10 sorted 1,4304,0.002970,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 5000001 5000009 sorted 1,4304,0.000685,0.000899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 1 500006 sorted 0,4304,0.000842,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,4304,0.002713,0.000887
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4304,0.000669,0.000839
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, channel 4,4304,0.000751,0.000849
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, channel 1,4304,0.000652,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001,4304,0.000590,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 100000,4304,0.000629,0.000872
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, filter customFunc,4304,0.003043,0.001134
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4304,0.003097,0.000862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.003696,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 1 10 sorted 1,17907,0.002711,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,17907,0.000578,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 1 500006 sorted 0,17907,0.000542,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,17907,0.002609,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,17907,0.000623,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, channel 4,17907,0.000596,0.000717
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, channel 1,17907,0.000534,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001,17907,0.000591,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,17907,0.000676,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, filter customFunc,17907,0.002902,0.000860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,17907,0.002666,0.000812
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.004901,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 1 10 sorted 1,229,0.002968,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 5000001 5000009 sorted 1,229,0.000632,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 1 500006 sorted 0,229,0.000674,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,229,0.002917,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,229,0.000647,0.000850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, channel 4,229,0.000654,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, channel 1,229,0.000614,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001,229,0.000616,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 100000,229,0.000833,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, filter customFunc,229,0.002879,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,229,0.002821,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.004909,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 1 10 sorted 1,206,0.003052,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 5000001 5000009 sorted 1,206,0.000795,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 1 500006 sorted 0,206,0.000559,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,206,0.002916,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,206,0.000615,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, channel 4,206,0.000597,0.000920
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, channel 1,206,0.000621,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001,206,0.000657,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 100000,206,0.000543,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, filter customFunc,206,0.003144,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,206,0.002915,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.005365,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 1 10 sorted 1,199,0.003250,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,199,0.000612,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 1 500006 sorted 0,199,0.000524,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,199,0.002978,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.000955,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, channel 4,199,0.000532,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, channel 1,199,0.000572,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001,199,0.000596,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,199,0.000593,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, filter customFunc,199,0.002929,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.002988,0.000728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000510,0.000710
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 1 10 sorted 1,199,0.000597,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 5000001 5000009 sorted 1,199,0.000547,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 1 500006 sorted 0,199,0.000615,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,199,0.000573,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.000515,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, channel 4,199,0.000580,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, channel 1,199,0.000604,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001,199,0.000523,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 100000,199,0.000605,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, filter customFunc,199,0.000608,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.000525,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.004754,0.000720
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 1 10 sorted 1,230,0.003282,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,230,0.000590,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 1 500006 sorted 0,230,0.000549,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,230,0.003302,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,230,0.000634,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, channel 4,230,0.000749,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, channel 1,230,0.000620,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001,230,0.000684,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,230,0.000598,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, filter customFunc,230,0.003323,0.000967
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,230,0.003211,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.004323,0.000709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 1 10 sorted 1,218,0.003164,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000566,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 1 500006 sorted 0,218,0.000565,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.002966,0.000952
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000611,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, channel 4,218,0.000536,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, channel 1,218,0.000521,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001,218,0.000504,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,218,0.000555,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, filter customFunc,218,0.003243,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.003103,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.000683,0.000722
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 1 10 sorted 1,218,0.000580,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000558,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 1 500006 sorted 0,218,0.000534,0.001005
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.000528,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000531,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, channel 4,218,0.000566,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, channel 1,218,0.000578,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001,218,0.000514,0.000707
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,218,0.000528,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, filter customFunc,218,0.000555,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.000579,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000564,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 1 10 sorted 1,218,0.000558,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000570,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 1 500006 sorted 0,218,0.000563,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.000627,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000634,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, channel 4,218,0.000525,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, channel 1,218,0.000554,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001,218,0.000588,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 100000,218,0.000532,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, filter customFunc,218,0.000563,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.000510,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.004075,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 1 10 sorted 1,220,0.002901,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,220,0.000857,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 1 500006 sorted 0,220,0.000581,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,220,0.002835,0.000860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,220,0.000564,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, channel 4,220,0.000588,0.000710
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, channel 1,220,0.000535,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001,220,0.000652,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,220,0.000615,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, filter customFunc,220,0.002723,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,220,0.002695,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000579,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 1 10 sorted 1,221,0.000623,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,221,0.000573,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 1 500006 sorted 0,221,0.000628,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,221,0.000523,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,221,0.000564,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, channel 4,221,0.000541,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, channel 1,221,0.000536,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001,221,0.000587,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,221,0.000604,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, filter customFunc,221,0.000547,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,221,0.000533,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000564,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 1 10 sorted 1,221,0.000527,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 5000001 5000009 sorted 1,221,0.000514,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 1 500006 sorted 0,221,0.000512,0.000712
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,221,0.000984,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,221,0.000593,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, channel 4,221,0.000555,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, channel 1,221,0.000528,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001,221,0.000531,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 100000,221,0.000540,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, filter customFunc,221,0.000571,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,221,0.000676,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000579,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 1 10 sorted 1,232,0.000611,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,232,0.000590,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 1 500006 sorted 0,232,0.000584,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,232,0.000598,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000607,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, channel 4,232,0.000553,0.000726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, channel 1,232,0.000595,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001,232,0.000573,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,232,0.000565,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, filter customFunc,232,0.000566,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.000568,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000613,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 1 10 sorted 1,232,0.000587,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,232,0.000583,0.000873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 1 500006 sorted 0,232,0.000601,0.000859
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,232,0.000577,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000580,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, channel 4,232,0.000593,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, channel 1,232,0.000677,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001,232,0.000561,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,232,0.000651,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, filter customFunc,232,0.000614,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.000584,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000585,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.000668,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000596,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 1 500006 sorted 0,247,0.000580,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.000602,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000598,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, channel 4,247,0.000538,0.001252
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, channel 1,247,0.000546,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001,247,0.000627,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,247,0.000600,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, filter customFunc,247,0.000604,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.000584,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000573,0.000722
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 1 10 sorted 1,247,0.000595,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000586,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 1 500006 sorted 0,247,0.000600,0.000812
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.000592,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000587,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, channel 4,247,0.000670,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, channel 1,247,0.000586,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001,247,0.000566,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,247,0.000576,0.000820
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, filter customFunc,247,0.000598,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.000652,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.004526,0.000868
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 1 10 sorted 1,211,0.002984,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,211,0.000631,0.000871
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 1 500006 sorted 0,211,0.000575,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,211,0.002913,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,211,0.000655,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, channel 4,211,0.000616,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, channel 1,211,0.000629,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001,211,0.000619,0.001100
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,211,0.000729,0.000865
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, filter customFunc,211,0.002708,0.000876
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,211,0.002912,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.004586,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 1 10 sorted 1,205,0.002962,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,205,0.000587,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 1 500006 sorted 0,205,0.000590,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,205,0.002980,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,205,0.000610,0.000860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, channel 4,205,0.000563,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, channel 1,205,0.000582,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001,205,0.000588,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,205,0.000582,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, filter customFunc,205,0.003023,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,205,0.003236,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.002578,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 1 10 sorted 1,258,0.002378,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,258,0.000609,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 1 500006 sorted 0,258,0.000599,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,258,0.002471,0.000994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,258,0.001126,0.000823
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, channel 4,258,0.000661,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, channel 1,258,0.000545,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001,258,0.000598,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,258,0.000638,0.001151
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, filter customFunc,258,0.002389,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,258,0.002679,0.000878
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000625,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 1 10 sorted 1,259,0.000616,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,259,0.000557,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 1 500006 sorted 0,259,0.000544,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,259,0.000625,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,259,0.000588,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, channel 4,259,0.000542,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, channel 1,259,0.000607,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001,259,0.000591,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,259,0.000537,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, filter customFunc,259,0.000559,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,259,0.000658,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.004649,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.003034,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000745,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 1 500006 sorted 0,247,0.000676,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.003008,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000673,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, channel 4,247,0.000615,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, channel 1,247,0.000605,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001,247,0.000715,0.000821
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,247,0.000615,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, filter customFunc,247,0.003102,0.000823
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.002823,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.003330,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 1 10 sorted 1,187,0.002407,0.000728
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 5000001 5000009 sorted 1,187,0.000572,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 1 500006 sorted 0,187,0.001306,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,187,0.003775,0.001104
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,187,0.000558,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, channel 4,187,0.000541,0.000710
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, channel 1,187,0.000524,0.000712
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001,187,0.000577,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 100000,187,0.000515,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, filter customFunc,187,0.002693,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,187,0.002710,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000732,0.000716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 1 10 sorted 1,187,0.000566,0.000709
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 5000001 5000009 sorted 1,187,0.000559,0.000932
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 1 500006 sorted 0,187,0.000732,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,187,0.000632,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,187,0.000563,0.000978
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, channel 4,187,0.000532,0.000691
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, channel 1,187,0.000624,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001,187,0.000523,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 100000,187,0.000642,0.000866
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, filter customFunc,187,0.000546,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,187,0.000515,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.126088,0.130132
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 1 10 sorted 1,78948,0.001802,0.000720
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 5000001 5000009 sorted 1,78948,0.068728,0.102229
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 1 500006 sorted 0,78948,0.122714,0.123753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,78948,0.076496,0.121916
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,78948,0.063418,0.128588
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, channel 4,78948,0.118574,0.118340
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, channel 1,78948,0.101776,0.116400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001,78948,0.059274,0.120392
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 100000,78948,0.069096,0.122429
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, filter customFunc,78948,0.123355,0.127912
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,78948,0.074299,0.133738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.013151,0.008388
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 1 10 sorted 1,26314,0.002468,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 5000001 5000009 sorted 1,26314,0.006499,0.006850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 1 500006 sorted 0,26314,0.010359,0.007911
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,26314,0.011200,0.007902
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,26314,0.005305,0.007975
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, channel 4,26314,0.008538,0.008622
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, channel 1,26314,0.011421,0.009045
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001,26314,0.004578,0.008484
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 100000,26314,0.003984,0.008146
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, filter customFunc,26314,0.010983,0.008731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,26314,0.010496,0.008193
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.002010,0.001966
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 1 10 sorted 1,4074,0.000525,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 5000001 5000009 sorted 1,4074,0.001206,0.001730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 1 500006 sorted 0,4074,0.002229,0.002142
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,4074,0.001217,0.002025
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4074,0.001162,0.002027
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, channel 4,4074,0.001926,0.002026
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, channel 1,4074,0.001718,0.001969
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001,4074,0.001188,0.002937
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 100000,4074,0.001246,0.002304
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, filter customFunc,4074,0.001871,0.001994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4074,0.001183,0.002245
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.014399,0.008694
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 1 10 sorted 1,109081,0.004541,0.002229
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 5000001 5000009 sorted 1,109081,0.007597,0.007411
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 1 500006 sorted 0,109081,0.010449,0.008948
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,109081,0.010183,0.008557
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,109081,0.004825,0.009155
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, channel 4,109081,0.009775,0.009197
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, channel 1,109081,0.009086,0.008749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001,109081,0.004942,0.008419
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 100000,109081,0.004479,0.008074
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, filter customFunc,109081,0.011043,0.008497
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,109081,0.009435,0.008288
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,0.050767,0.045787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 1 10 sorted 1,1304905,0.002568,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 5000001 5000009 sorted 1,1304905,0.003756,0.001175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 1 500006 sorted 0,1304905,0.040714,0.037853
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,1304905,0.006689,0.039774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1304905,0.001291,0.040553
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, channel 4,1304905,0.037274,0.040364
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, channel 1,1304905,0.045966,0.037694
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001,1304905,0.001036,0.036415
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 100000,1304905,0.000950,0.035365
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, filter customFunc,1304905,0.040191,0.036899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1304905,0.007001,0.036610
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf,,3797,0.020790,0.016686
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 1 10 sorted 1,3797,0.003807,0.003354
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 5000001 5000009 sorted 1,3797,0.005944,0.005175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidrange 1 500006 sorted 0,3797,0.005750,0.006788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3797,0.010193,0.007927
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3797,0.004475,0.005054
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, channel 4,3797,0.004800,0.005845
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, channel 1,3797,0.003709,0.005227
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001,3797,0.002435,0.003543
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 500001 uidrange 1 100000,3797,0.003405,0.004470
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, filter customFunc,3797,0.011295,0.009731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3797,0.008974,0.007181
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,3797,0.003233,0.004269
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf,,51468,0.011166,0.007412
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 1 10 sorted 1,51468,0.002208,0.001794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 5000001 5000009 sorted 1,51468,0.003812,0.002000
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidrange 1 500006 sorted 0,51468,0.005921,0.005402
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,51468,0.005972,0.002320
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,51468,0.001165,0.001945
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, channel 4,51468,0.003587,0.004902
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, channel 1,51468,0.003811,0.004293
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001,51468,0.001045,0.002196
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 500001 uidrange 1 100000,51468,0.001097,0.001962
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, filter customFunc,51468,0.005940,0.003989
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,51468,0.005448,0.002209
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,51468,0.001152,0.002009
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf,,283479,0.404814,0.437520
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 1 10 sorted 1,283479,0.002045,0.000957
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 5000001 5000009 sorted 1,283479,0.000456,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidrange 1 500006 sorted 0,283479,0.137462,0.282548
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,283479,0.135252,0.295987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,283479,0.135222,0.299965
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, channel 4,283479,0.376644,0.405095
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, channel 1,283479,0.368479,0.426560
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001,283479,0.130139,0.290464
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 500001 uidrange 1 100000,283479,0.128139,0.291367
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, filter customFunc,283479,0.354075,0.393967
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,283479,0.150688,0.320511
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,283479,0.140923,0.292362
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf,,3536,0.011386,0.008544
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 1 10 sorted 1,3536,0.002025,0.000974
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 5000001 5000009 sorted 1,3536,0.000478,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidrange 1 500006 sorted 0,3536,0.003692,0.002955
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3536,0.005626,0.003126
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3536,0.001862,0.003079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, channel 4,3536,0.003653,0.003676
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, channel 1,3536,0.005362,0.003877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001,3536,0.001920,0.002746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 500001 uidrange 1 100000,3536,0.001614,0.003095
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, filter customFunc,3536,0.007157,0.004320
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3536,0.005543,0.003154
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,3536,0.001585,0.002945
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf,,348642,0.071684,0.078466
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 1 10 sorted 1,348642,0.000852,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 5000001 5000009 sorted 1,348642,0.019402,0.044756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidrange 1 500006 sorted 0,348642,0.018496,0.043996
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,348642,0.019725,0.045850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,348642,0.023056,0.044482
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, channel 4,348642,0.065046,0.075389
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, channel 1,348642,0.065553,0.072639
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001,348642,0.017665,0.042424
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 500001 uidrange 1 100000,348642,0.018537,0.044556
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, filter customFunc,348642,0.072300,0.079964
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,348642,0.021735,0.043834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,348642,0.023355,0.051255
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf,,1736,0.013443,0.006345
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 1 10 sorted 1,1736,0.002426,0.000995
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 5000001 5000009 sorted 1,1736,0.004626,0.002773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidrange 1 500006 sorted 0,1736,0.002067,0.002877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1736,0.007501,0.003816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1736,0.002097,0.002847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, channel 4,1736,0.003806,0.004915
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, channel 1,1736,0.003488,0.003711
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001,1736,0.003057,0.002763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 500001 uidrange 1 100000,1736,0.001942,0.003004
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, filter customFunc,1736,0.006227,0.005498
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1736,0.007369,0.003544
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1736,0.002545,0.003070
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf,,2433973,2.045268,2.087596
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 1 10 sorted 1,2433973,0.002592,0.000905
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,2433973,0.098981,0.236079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidrange 1 500006 sorted 0,2433973,0.103811,0.232062
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,2433973,0.112092,0.237010
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2433973,0.110925,0.232146
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, channel 4,2433973,1.999557,2.051577
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, channel 1,2433973,2.020192,2.064208
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001,2433973,0.099803,0.232499
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,2433973,0.091668,0.242898
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, filter customFunc,2433973,2.061725,2.119145
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2433973,0.112248,0.234112
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,2433973,0.097017,0.242763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf,,291725,0.247063,0.268424
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 1 10 sorted 1,291725,0.000878,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,291725,0.016164,0.037512
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidrange 1 500006 sorted 0,291725,0.019096,0.036865
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,291725,0.016744,0.038395
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,291725,0.017073,0.041897
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, channel 4,291725,0.249803,0.255746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, channel 1,291725,0.255287,0.256131
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001,291725,0.015889,0.039966
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,291725,0.017152,0.043688
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, filter customFunc,291725,0.255984,0.255143
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,291725,0.020084,0.037797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,291725,0.017681,0.037486
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf,,11114,0.020843,0.014291
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 1 10 sorted 1,11114,0.002623,0.001003
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 5000001 5000009 sorted 1,11114,0.000572,0.001006
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidrange 1 500006 sorted 0,11114,0.005461,0.004373
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,11114,0.008034,0.004529
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,11114,0.002920,0.004264
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, channel 4,11114,0.013086,0.016991
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, channel 1,11114,0.016946,0.013554
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001,11114,0.003574,0.004380
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 500001 uidrange 1 100000,11114,0.002362,0.004360
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, filter customFunc,11114,0.015607,0.012425
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,11114,0.008429,0.004777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,11114,0.002531,0.004269
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf,,594749,0.563350,0.553984
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 1 10 sorted 1,594749,0.002560,0.001098
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,594749,0.030313,0.072372
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidrange 1 500006 sorted 0,594749,0.028171,0.073946
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,594749,0.032916,0.068175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,594749,0.026379,0.068816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, channel 4,594749,0.513039,0.513816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, channel 1,594749,0.519672,0.520632
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001,594749,0.025983,0.073546
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,594749,0.026239,0.072162
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, filter customFunc,594749,0.548411,0.541900
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,594749,0.034849,0.078010
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,594749,0.028423,0.068934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf,,143315,0.063548,0.061782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 1 10 sorted 1,143315,0.002739,0.000900
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 5000001 5000009 sorted 1,143315,0.000475,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidrange 1 500006 sorted 0,143315,0.009275,0.010516
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,143315,0.013560,0.010876
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,143315,0.007155,0.009907
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, channel 4,143315,0.052449,0.058822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, channel 1,143315,0.052372,0.060033
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001,143315,0.007611,0.010537
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 500001 uidrange 1 100000,143315,0.009967,0.010155
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, filter customFunc,143315,0.057422,0.055387
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,143315,0.011716,0.011148
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,143315,0.006305,0.010100
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf,,7238,0.010775,0.003517
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 1 10 sorted 1,7238,0.002721,0.000868
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 5000001 5000009 sorted 1,7238,0.004098,0.001602
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidrange 1 500006 sorted 0,7238,0.001282,0.001613
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,7238,0.007700,0.001877
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,7238,0.001502,0.001664
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, channel 4,7238,0.002222,0.001948
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, channel 1,7238,0.006382,0.002027
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001,7238,0.001600,0.001571
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 500001 uidrange 1 100000,7238,0.001128,0.001687
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, filter customFunc,7238,0.005992,0.002161
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,7238,0.014423,0.001861
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,7238,0.001221,0.001716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf,,16954,0.011347,0.003904
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 1 10 sorted 1,16954,0.002572,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,16954,0.004206,0.002260
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidrange 1 500006 sorted 0,16954,0.003041,0.002189
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,16954,0.007929,0.002077
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,16954,0.002536,0.002035
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, channel 4,16954,0.002615,0.002489
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, channel 1,16954,0.005051,0.002844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001,16954,0.001728,0.001955
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,16954,0.001253,0.001985
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, filter customFunc,16954,0.006241,0.003003
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,16954,0.006885,0.002421
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,16954,0.001197,0.001959
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf,,199,0.002731,0.001691
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 1 10 sorted 1,199,0.002407,0.001581
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 5000001 5000009 sorted 1,199,0.000574,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidrange 1 500006 sorted 0,199,0.000561,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,199,0.002422,0.001565
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.000535,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, channel 4,199,0.000641,0.000859
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, channel 1,199,0.000620,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001,199,0.000718,0.000704
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 500001 uidrange 1 100000,199,0.000548,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, filter customFunc,199,0.002278,0.001577
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.002338,0.001564
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,199,0.000916,0.000806
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf,,8602,0.021348,0.013997
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 1 10 sorted 1,8602,0.003353,0.000890
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,8602,0.009363,0.010856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidrange 1 500006 sorted 0,8602,0.006545,0.011154
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,8602,0.012684,0.010946
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,8602,0.006537,0.010729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, channel 4,8602,0.013307,0.014165
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, channel 1,8602,0.015344,0.012770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001,8602,0.007083,0.012606
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,8602,0.006366,0.011550
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, filter customFunc,8602,0.016582,0.013522
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,8602,0.012954,0.011007
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,8602,0.006307,0.012172
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf,,817352,0.015881,0.008559
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 1 10 sorted 1,817352,0.006517,0.004198
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,817352,0.004512,0.002401
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidrange 1 500006 sorted 0,817352,0.009979,0.006763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,817352,0.008188,0.002701
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,817352,0.002245,0.002458
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, channel 4,817352,0.006030,0.006791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, channel 1,817352,0.009469,0.006286
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001,817352,0.001494,0.002415
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,817352,0.001551,0.002476
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, filter customFunc,817352,0.010800,0.006920
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,817352,0.007600,0.002541
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,817352,0.001567,0.002433
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf,,8538524,0.045902,0.052133
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 1 10 sorted 1,8538524,0.001493,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,8538524,0.006445,0.011349
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidrange 1 500006 sorted 0,8538524,0.051498,0.050426
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,8538524,0.006638,0.011621
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,8538524,0.006971,0.010941
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, channel 4,8538524,0.042019,0.047629
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, channel 1,8538524,0.043580,0.043706
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001,8538524,0.006543,0.010887
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,8538524,0.006098,0.010738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, filter customFunc,8538524,0.049427,0.059965
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,8538524,0.006265,0.011015
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,8538524,0.007530,0.010893
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf,,1373962,0.009643,0.010076
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 1 10 sorted 1,1373962,0.000551,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 5000001 5000009 sorted 1,1373962,0.002577,0.003697
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidrange 1 500006 sorted 0,1373962,0.009994,0.009753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1373962,0.002024,0.003407
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1373962,0.002032,0.004584
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, channel 4,1373962,0.009425,0.009652
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, channel 1,1373962,0.008429,0.009743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001,1373962,0.002057,0.003416
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 500001 uidrange 1 100000,1373962,0.002114,0.003392
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, filter customFunc,1373962,0.009571,0.010551
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1373962,0.002091,0.003816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1373962,0.002133,0.003702
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf,,360,0.011370,0.003142
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 1 10 sorted 1,360,0.002894,0.000915
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,360,0.003550,0.001302
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidrange 1 500006 sorted 0,360,0.000956,0.001002
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,360,0.007448,0.001153
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,360,0.000999,0.001036
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, channel 4,360,0.001141,0.001045
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, channel 1,360,0.004555,0.001396
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001,360,0.001229,0.001130
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,360,0.000746,0.001091
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, filter customFunc,360,0.005250,0.001486
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,360,0.006943,0.001188
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,360,0.000789,0.001022
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf,,4701,0.006266,0.006810
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 1 10 sorted 1,4701,0.000727,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,4701,0.003409,0.005861
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidrange 1 500006 sorted 0,4701,0.003142,0.005285
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,4701,0.003097,0.005858
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4701,0.003137,0.005557
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, channel 4,4701,0.004603,0.005240
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, channel 1,4701,0.006297,0.006521
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001,4701,0.003466,0.005604
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,4701,0.003181,0.005337
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, filter customFunc,4701,0.005829,0.006729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4701,0.003000,0.006228
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,4701,0.005747,0.005237
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf,,3371,0.004076,0.004701
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 1 10 sorted 1,3371,0.000539,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 5000001 5000009 sorted 1,3371,0.002242,0.004190
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidrange 1 500006 sorted 0,3371,0.002182,0.003924
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,3371,0.002320,0.004176
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,3371,0.002410,0.005093
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, channel 4,3371,0.003657,0.004200
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, channel 1,3371,0.004425,0.005741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001,3371,0.002243,0.003885
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 500001 uidrange 1 100000,3371,0.002325,0.004256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, filter customFunc,3371,0.004446,0.004940
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,3371,0.002470,0.003996
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,3371,0.002272,0.004224
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf,,1282,0.002170,0.002348
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 1 10 sorted 1,1282,0.000640,0.000885
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1282,0.001268,0.002093
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidrange 1 500006 sorted 0,1282,0.001256,0.001956
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1282,0.001354,0.002294
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1282,0.001300,0.002100
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, channel 4,1282,0.001675,0.001947
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, channel 1,1282,0.002018,0.002172
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001,1282,0.001145,0.002073
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1282,0.001183,0.001893
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, filter customFunc,1282,0.002048,0.002302
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1282,0.001279,0.002146
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1282,0.001270,0.002097
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf,,232,0.002218,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 1 10 sorted 1,232,0.002608,0.000950
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,232,0.000639,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidrange 1 500006 sorted 0,232,0.000646,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,232,0.002287,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000592,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, channel 4,232,0.000591,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, channel 1,232,0.000607,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001,232,0.000617,0.000889
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,232,0.000607,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, filter customFunc,232,0.002474,0.000858
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.002494,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,232,0.000774,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf,,1787,0.003097,0.003111
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 1 10 sorted 1,1787,0.000668,0.000944
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1787,0.001563,0.002381
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidrange 1 500006 sorted 0,1787,0.001451,0.003280
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1787,0.001554,0.002481
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1787,0.001474,0.002367
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, channel 4,1787,0.002084,0.002389
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, channel 1,1787,0.003160,0.002934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001,1787,0.001806,0.002573
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1787,0.001451,0.002531
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, filter customFunc,1787,0.002608,0.002946
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1787,0.001569,0.002443
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1787,0.001532,0.002489
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf,,1647,0.002888,0.003250
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 1 10 sorted 1,1647,0.000528,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 5000001 5000009 sorted 1,1647,0.001439,0.002192
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidrange 1 500006 sorted 0,1647,0.001383,0.002343
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1647,0.001360,0.002237
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1647,0.001870,0.002363
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, channel 4,1647,0.002074,0.002245
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, channel 1,1647,0.002582,0.002851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001,1647,0.001467,0.002592
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 500001 uidrange 1 100000,1647,0.001521,0.002264
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, filter customFunc,1647,0.002998,0.002760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1647,0.001491,0.002396
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1647,0.001524,0.002339
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf,,1359,0.011086,0.003136
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 1 10 sorted 1,1359,0.002855,0.001092
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,1359,0.003704,0.000989
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidrange 1 500006 sorted 0,1359,0.000928,0.000962
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,1359,0.007442,0.001237
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1359,0.001052,0.000994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, channel 4,1359,0.001374,0.001122
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, channel 1,1359,0.004110,0.001172
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001,1359,0.001232,0.000987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,1359,0.000809,0.000998
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, filter customFunc,1359,0.005085,0.001478
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1359,0.007093,0.001229
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1359,0.000782,0.001117
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf,,541,0.010051,0.002457
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 1 10 sorted 1,541,0.002886,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,541,0.003939,0.001280
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidrange 1 500006 sorted 0,541,0.001311,0.001220
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,541,0.007678,0.001328
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,541,0.001124,0.001212
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, channel 4,541,0.001454,0.001356
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, channel 1,541,0.004428,0.001553
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001,541,0.001372,0.001231
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,541,0.000926,0.001256
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, filter customFunc,541,0.005386,0.001533
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,541,0.007440,0.001343
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,541,0.000924,0.001283
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf,,9278,0.012490,0.014264
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 1 10 sorted 1,9278,0.000529,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,9278,0.006137,0.010842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidrange 1 500006 sorted 0,9278,0.006882,0.010719
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,9278,0.006276,0.010721
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,9278,0.009939,0.010306
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, channel 4,9278,0.011224,0.014318
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, channel 1,9278,0.015783,0.014282
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001,9278,0.006540,0.011289
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,9278,0.006245,0.010683
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, filter customFunc,9278,0.012671,0.014343
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,9278,0.006379,0.012586
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,9278,0.006648,0.011699
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf,,431,0.001075,0.001364
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 1 10 sorted 1,431,0.000527,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 5000001 5000009 sorted 1,431,0.000903,0.001081
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidrange 1 500006 sorted 0,431,0.000863,0.001096
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,431,0.000796,0.001118
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,431,0.000861,0.001375
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, channel 4,431,0.000996,0.001328
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, channel 1,431,0.001019,0.001276
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001,431,0.000803,0.001079
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 500001 uidrange 1 100000,431,0.000828,0.001087
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, filter customFunc,431,0.000971,0.001230
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,431,0.000892,0.001358
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,431,0.000995,0.001225
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf,,587,0.009929,0.003222
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 1 10 sorted 1,587,0.002738,0.001009
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 5000001 5000009 sorted 1,587,0.004240,0.001196
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidrange 1 500006 sorted 0,587,0.001049,0.001215
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 sorted 0,587,0.007588,0.001835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,587,0.001449,0.001275
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, channel 4,587,0.001478,0.001251
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, channel 1,587,0.004194,0.001292
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001,587,0.001273,0.001188
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 500001 uidrange 1 100000,587,0.000902,0.001225
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, filter customFunc,587,0.006637,0.002228
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,587,0.009696,0.001621
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,587,0.000933,0.001350
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx,,207,0.004607,0.000708
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 1 10 sorted 1,207,0.003345,0.000960
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 5000001 5000009 sorted 1,207,0.000637,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidrange 1 500006 sorted 0,207,0.000668,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,207,0.003513,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,207,0.000588,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, channel 4,207,0.000567,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, channel 1,207,0.000565,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001,207,0.000568,0.000934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 500001 uidrange 1 100000,207,0.000642,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, filter customFunc,207,0.003051,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,207,0.002999,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ais\ais_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,207,0.000586,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx,,130270,0.004019,0.001044
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 1 10 sorted 1,130270,0.002983,0.001455
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 5000001 5000009 sorted 1,130270,0.000606,0.001273
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidrange 1 500006 sorted 0,130270,0.000582,0.000968
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,130270,0.002982,0.000919
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,130270,0.000604,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, channel 4,130270,0.000562,0.000879
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, channel 1,130270,0.000595,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001,130270,0.000592,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 500001 uidrange 1 100000,130270,0.000571,0.000874
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, filter customFunc,130270,0.002959,0.000925
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,130270,0.002987,0.000962
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_detections.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,130270,0.000571,0.000868
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx,,1751,0.003945,0.000818
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 1 10 sorted 1,1751,0.003024,0.000887
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 5000001 5000009 sorted 1,1751,0.000597,0.000895
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidrange 1 500006 sorted 0,1751,0.000538,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,1751,0.002815,0.000828
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1751,0.000700,0.000958
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, channel 4,1751,0.000563,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, channel 1,1751,0.000585,0.001061
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001,1751,0.000539,0.000851
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 500001 uidrange 1 100000,1751,0.000575,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, filter customFunc,1751,0.002982,0.000849
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1751,0.002804,0.000888
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\classifiers\deeplearningclassifier\deeplearningclassifier_v2_test1_models.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1751,0.000635,0.000918
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx,,2289,0.005467,0.000890
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 1 10 sorted 1,2289,0.003663,0.000906
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 5000001 5000009 sorted 1,2289,0.000692,0.000869
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidrange 1 500006 sorted 0,2289,0.000625,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,2289,0.003332,0.001280
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2289,0.000705,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, channel 4,2289,0.000659,0.000824
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, channel 1,2289,0.000670,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001,2289,0.000652,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 500001 uidrange 1 100000,2289,0.000656,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, filter customFunc,2289,0.003445,0.000891
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2289,0.003343,0.000899
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,2289,0.000645,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx,,2289,0.000700,0.000850
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 1 10 sorted 1,2289,0.000773,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 5000001 5000009 sorted 1,2289,0.000659,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidrange 1 500006 sorted 0,2289,0.000646,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,2289,0.000661,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,2289,0.000651,0.000830
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, channel 4,2289,0.000601,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, channel 1,2289,0.000709,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001,2289,0.000649,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 500001 uidrange 1 100000,2289,0.000670,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, filter customFunc,2289,0.000666,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,2289,0.000655,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,2289,0.000679,0.000843
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx,,202,0.002254,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 1 10 sorted 1,202,0.002157,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 5000001 5000009 sorted 1,202,0.000622,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidrange 1 500006 sorted 0,202,0.000624,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,202,0.001997,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,202,0.000628,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, channel 4,202,0.000625,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, channel 1,202,0.000618,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001,202,0.000681,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 500001 uidrange 1 100000,202,0.000631,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, filter customFunc,202,0.002668,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,202,0.002025,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,202,0.000636,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx,,224,0.004478,0.000892
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 1 10 sorted 1,224,0.003289,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 5000001 5000009 sorted 1,224,0.000674,0.000878
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidrange 1 500006 sorted 0,224,0.000703,0.000862
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,224,0.002920,0.000873
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,224,0.000802,0.000866
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, channel 4,224,0.000663,0.001024
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, channel 1,224,0.000747,0.000965
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001,224,0.000665,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 500001 uidrange 1 100000,224,0.000664,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, filter customFunc,224,0.003001,0.000829
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,224,0.003018,0.000844
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\clicktriggerbackground\clicktriggerbackground_v0_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,224,0.000699,0.000905
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx,,194,0.005642,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 1 10 sorted 1,194,0.003060,0.000859
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,194,0.000672,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidrange 1 500006 sorted 0,194,0.000640,0.000759
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,194,0.003011,0.000918
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,194,0.000610,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, channel 4,194,0.000608,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, channel 1,194,0.000609,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001,194,0.000592,0.000748
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,194,0.000606,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, filter customFunc,194,0.002992,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,194,0.002996,0.000787
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,194,0.000604,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx,,194,0.000847,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 1 10 sorted 1,194,0.000776,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,194,0.000672,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidrange 1 500006 sorted 0,194,0.000606,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,194,0.000803,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,194,0.000646,0.000795
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, channel 4,194,0.000647,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, channel 1,194,0.000619,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001,194,0.000644,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,194,0.000610,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, filter customFunc,194,0.000566,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,194,0.000603,0.000743
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,194,0.000601,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx,,4304,0.004541,0.001391
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 1 10 sorted 1,4304,0.002859,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 5000001 5000009 sorted 1,4304,0.000690,0.000825
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidrange 1 500006 sorted 0,4304,0.000633,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,4304,0.002910,0.000860
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4304,0.000647,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, channel 4,4304,0.000634,0.000880
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, channel 1,4304,0.000749,0.000855
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001,4304,0.000687,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 500001 uidrange 1 100000,4304,0.000710,0.000955
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, filter customFunc,4304,0.003179,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4304,0.003006,0.000856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\rwedge\RW_Edge_Detector_Right_Whale_Edge_Detector_Edges_20090328_230139.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,4304,0.000683,0.000883
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx,,17907,0.004130,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 1 10 sorted 1,17907,0.002805,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,17907,0.000953,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidrange 1 500006 sorted 0,17907,0.000565,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,17907,0.002704,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,17907,0.000618,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, channel 4,17907,0.000748,0.001131
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, channel 1,17907,0.000573,0.000722
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001,17907,0.000586,0.000735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,17907,0.000586,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, filter customFunc,17907,0.002736,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,17907,0.002756,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,17907,0.000634,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx,,229,0.005075,0.000792
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 1 10 sorted 1,229,0.003059,0.000774
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 5000001 5000009 sorted 1,229,0.000646,0.000786
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidrange 1 500006 sorted 0,229,0.000588,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,229,0.003156,0.000802
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,229,0.000617,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, channel 4,229,0.000758,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, channel 1,229,0.000646,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001,229,0.000616,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 500001 uidrange 1 100000,229,0.000603,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, filter customFunc,229,0.003090,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,229,0.004425,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,229,0.000597,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx,,206,0.004725,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 1 10 sorted 1,206,0.002946,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 5000001 5000009 sorted 1,206,0.000578,0.000724
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidrange 1 500006 sorted 0,206,0.000574,0.000739
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,206,0.002931,0.000881
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,206,0.000784,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, channel 4,206,0.000640,0.000833
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, channel 1,206,0.000600,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001,206,0.000812,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 500001 uidrange 1 100000,206,0.000565,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, filter customFunc,206,0.003203,0.000812
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,206,0.004123,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\spermwhaleipi\spermwhaleipi_v1_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,206,0.000619,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx,,199,0.004675,0.000714
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 1 10 sorted 1,199,0.003010,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,199,0.000554,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidrange 1 500006 sorted 0,199,0.000562,0.001148
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,199,0.003121,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.000565,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, channel 4,199,0.000564,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, channel 1,199,0.000576,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001,199,0.000638,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,199,0.000637,0.000782
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, filter customFunc,199,0.003324,0.000826
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.003371,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,199,0.000610,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx,,199,0.000572,0.000902
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 1 10 sorted 1,199,0.000568,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 5000001 5000009 sorted 1,199,0.000584,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidrange 1 500006 sorted 0,199,0.000605,0.000837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,199,0.000617,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,199,0.001140,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, channel 4,199,0.000576,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, channel 1,199,0.000566,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001,199,0.000589,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 500001 uidrange 1 100000,199,0.000783,0.000871
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, filter customFunc,199,0.000760,0.000751
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,199,0.000577,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\clipgenerator\clipgenerator_v3_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,199,0.000614,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx,,230,0.004960,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 1 10 sorted 1,230,0.003290,0.000812
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,230,0.000610,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidrange 1 500006 sorted 0,230,0.000603,0.000799
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,230,0.003346,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,230,0.000602,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, channel 4,230,0.000576,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, channel 1,230,0.000590,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001,230,0.000593,0.000738
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,230,0.000606,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, filter customFunc,230,0.003657,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,230,0.003498,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\dbht\dbht_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,230,0.000618,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx,,218,0.004759,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 1 10 sorted 1,218,0.003208,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000575,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidrange 1 500006 sorted 0,218,0.000607,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.003097,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000562,0.000733
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, channel 4,218,0.000558,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, channel 1,218,0.000548,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001,218,0.000522,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,218,0.000573,0.000783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, filter customFunc,218,0.003141,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.003036,0.001000
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,218,0.000590,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx,,218,0.000538,0.000959
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 1 10 sorted 1,218,0.000522,0.000710
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000539,0.001101
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidrange 1 500006 sorted 0,218,0.000524,0.000708
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.000600,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000563,0.000747
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, channel 4,218,0.000629,0.000713
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, channel 1,218,0.000514,0.000727
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001,218,0.000882,0.000807
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,218,0.001030,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, filter customFunc,218,0.000550,0.000758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.000618,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,218,0.000523,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx,,218,0.000540,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 1 10 sorted 1,218,0.000581,0.000769
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 5000001 5000009 sorted 1,218,0.000579,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidrange 1 500006 sorted 0,218,0.000629,0.000861
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,218,0.000575,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,218,0.000585,0.000750
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, channel 4,218,0.000600,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, channel 1,218,0.000565,0.000734
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001,218,0.000602,0.000742
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 500001 uidrange 1 100000,218,0.000594,0.000752
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, filter customFunc,218,0.000619,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,218,0.000602,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\difar\difar_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,218,0.000574,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx,,220,0.004695,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 1 10 sorted 1,220,0.002958,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,220,0.000582,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidrange 1 500006 sorted 0,220,0.000594,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,220,0.003235,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,220,0.000604,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, channel 4,220,0.000665,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, channel 1,220,0.000574,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001,220,0.000584,0.000744
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,220,0.000604,0.000834
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, filter customFunc,220,0.003036,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,220,0.002975,0.000912
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,220,0.000561,0.000761
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx,,221,0.000683,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 1 10 sorted 1,221,0.000572,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,221,0.000621,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidrange 1 500006 sorted 0,221,0.000557,0.000785
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,221,0.000589,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,221,0.000592,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, channel 4,221,0.000614,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, channel 1,221,0.000678,0.000827
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001,221,0.000684,0.000836
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,221,0.000645,0.000959
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, filter customFunc,221,0.000581,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,221,0.000604,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,221,0.000665,0.000852
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx,,221,0.000603,0.000753
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 1 10 sorted 1,221,0.000579,0.000746
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 5000001 5000009 sorted 1,221,0.000618,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidrange 1 500006 sorted 0,221,0.000600,0.000954
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,221,0.000588,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,221,0.000620,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, channel 4,221,0.000575,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, channel 1,221,0.000642,0.001171
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001,221,0.000575,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 500001 uidrange 1 100000,221,0.000623,0.000819
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, filter customFunc,221,0.000639,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,221,0.000596,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_energysum_v2_test3.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,221,0.000614,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx,,232,0.000599,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 1 10 sorted 1,232,0.000563,0.000791
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,232,0.000713,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidrange 1 500006 sorted 0,232,0.000645,0.000811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,232,0.000615,0.000784
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000594,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, channel 4,232,0.000650,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, channel 1,232,0.000578,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001,232,0.000977,0.000865
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,232,0.000607,0.000800
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, filter customFunc,232,0.000626,0.000813
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.000605,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,232,0.000603,0.000797
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx,,232,0.000587,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 1 10 sorted 1,232,0.000601,0.000848
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,232,0.000598,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidrange 1 500006 sorted 0,232,0.000587,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,232,0.000586,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,232,0.000595,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, channel 4,232,0.000571,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, channel 1,232,0.000595,0.000741
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001,232,0.000588,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,232,0.000572,0.000735
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, filter customFunc,232,0.000593,0.000972
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,232,0.000583,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_matchedfilter_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,232,0.000588,0.000957
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx,,247,0.000541,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.000583,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000599,0.000857
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidrange 1 500006 sorted 0,247,0.000603,0.000814
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.000655,0.000845
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000586,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, channel 4,247,0.000584,0.000764
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, channel 1,247,0.000588,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001,247,0.000593,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,247,0.000604,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, filter customFunc,247,0.000598,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.000835,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,247,0.000606,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx,,247,0.000548,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 1 10 sorted 1,247,0.000536,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000585,0.000757
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidrange 1 500006 sorted 0,247,0.000573,0.000876
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.000607,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000535,0.000934
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, channel 4,247,0.000546,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, channel 1,247,0.000651,0.000770
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001,247,0.000538,0.000779
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 500001 uidrange 1 100000,247,0.000769,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, filter customFunc,247,0.000590,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.000597,0.000798
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\ishmael\ishmaeldetections_spectrogramcorrelation_v2_test2.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,247,0.000571,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx,,211,0.004080,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 1 10 sorted 1,211,0.002868,0.000766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,211,0.000608,0.000946
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidrange 1 500006 sorted 0,211,0.000600,0.000817
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,211,0.003510,0.000951
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,211,0.000643,0.000805
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, channel 4,211,0.000555,0.000793
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, channel 1,211,0.000639,0.000989
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001,211,0.000627,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,211,0.000635,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, filter customFunc,211,0.002864,0.000835
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,211,0.002825,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\longtermspectralaverage\longtermspectralaverage_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,211,0.000616,0.000780
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx,,205,0.004596,0.000745
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 1 10 sorted 1,205,0.003156,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,205,0.000545,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidrange 1 500006 sorted 0,205,0.000730,0.000790
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,205,0.003115,0.000762
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,205,0.000607,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, channel 4,205,0.000600,0.000756
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, channel 1,205,0.000557,0.000781
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001,205,0.000627,0.000886
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,205,0.000678,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, filter customFunc,205,0.003427,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,205,0.003159,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noiseband_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,205,0.000585,0.000789
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx,,258,0.003285,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 1 10 sorted 1,258,0.002405,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,258,0.000617,0.000765
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidrange 1 500006 sorted 0,258,0.000638,0.000853
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,258,0.002392,0.000815
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,258,0.000629,0.000768
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, channel 4,258,0.000584,0.000725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, channel 1,258,0.000635,0.000777
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001,258,0.000557,0.000773
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,258,0.000605,0.000804
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, filter customFunc,258,0.002539,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,258,0.002379,0.000847
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandnoise_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,258,0.000625,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx,,259,0.000621,0.000740
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 1 10 sorted 1,259,0.000540,0.000796
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 5000001 5000009 sorted 1,259,0.000540,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidrange 1 500006 sorted 0,259,0.000674,0.000823
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,259,0.000601,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,259,0.000623,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, channel 4,259,0.000602,0.000763
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, channel 1,259,0.000609,0.000771
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001,259,0.000729,0.000775
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 500001 uidrange 1 100000,259,0.000941,0.000772
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, filter customFunc,259,0.000575,0.000853
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,259,0.000604,0.000803
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noiseband\noisebandpulses_v3_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,259,0.000629,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx,,247,0.004507,0.000994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 1 10 sorted 1,247,0.002796,0.000822
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 5000001 5000009 sorted 1,247,0.000553,0.000767
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidrange 1 500006 sorted 0,247,0.000644,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 sorted 0,247,0.002967,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,247,0.000650,0.000801
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, channel 4,247,0.000582,0.000832
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, channel 1,247,0.000569,0.000809
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001,247,0.000821,0.000778
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 500001 uidrange 1 100000,247,0.000616,0.000839
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, filter customFunc,247,0.002851,0.000839
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc,247,0.002982,0.000808
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\processing\noisemonitor\noisemonitor_v2_test1.pgdx, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,247,0.000636,0.000842
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf,,187,0.003656,0.000698
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 1 10 sorted 1,187,0.002893,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 5000001 5000009 sorted 1,187,0.000527,0.000707
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidrange 1 500006 sorted 0,187,0.000683,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,187,0.002726,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,187,0.000584,0.000708
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, channel 4,187,0.000549,0.000691
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, channel 1,187,0.000551,0.000737
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001,187,0.000772,0.000722
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 500001 uidrange 1 100000,187,0.000601,0.000730
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, filter customFunc,187,0.003218,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,187,0.002613,0.000732
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,187,0.000602,0.000723
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf,,187,0.000550,0.000718
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 1 10 sorted 1,187,0.000559,0.000754
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 5000001 5000009 sorted 1,187,0.000572,0.000749
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidrange 1 500006 sorted 0,187,0.000608,0.000776
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,187,0.000671,0.000788
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,187,0.000606,0.000736
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, channel 4,187,0.000558,0.000729
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, channel 1,187,0.000675,0.000794
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001,187,0.000546,0.000760
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 500001 uidrange 1 100000,187,0.000571,0.000929
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, filter customFunc,187,0.000541,0.000715
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,187,0.000558,0.000755
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,187,0.000540,0.000731
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf,,78948,0.132443,0.125469
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 1 10 sorted 1,78948,0.001852,0.000816
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 5000001 5000009 sorted 1,78948,0.075438,0.099603
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidrange 1 500006 sorted 0,78948,0.119703,0.122384
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,78948,0.069849,0.122278
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,78948,0.066289,0.124488
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, channel 4,78948,0.121150,0.120411
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, channel 1,78948,0.120312,0.116211
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001,78948,0.061383,0.121615
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 500001 uidrange 1 100000,78948,0.064547,0.117992
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, filter customFunc,78948,0.118817,0.122758
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,78948,0.074825,0.131581
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\click\click_v4_test3.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,78948,0.065125,0.127297
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf,,26314,0.016934,0.008601
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 1 10 sorted 1,26314,0.003763,0.000846
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 5000001 5000009 sorted 1,26314,0.006999,0.007117
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidrange 1 500006 sorted 0,26314,0.009896,0.008550
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,26314,0.009497,0.008003
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,26314,0.004436,0.007937
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, channel 4,26314,0.008398,0.007660
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, channel 1,26314,0.011769,0.008324
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001,26314,0.004923,0.007766
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 500001 uidrange 1 100000,26314,0.005007,0.009546
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, filter customFunc,26314,0.012007,0.008716
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,26314,0.010575,0.008485
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,26314,0.004191,0.008987
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf,,4074,0.002219,0.002283
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 1 10 sorted 1,4074,0.000522,0.000853
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 5000001 5000009 sorted 1,4074,0.001222,0.001856
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidrange 1 500006 sorted 0,4074,0.002146,0.003837
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,4074,0.001182,0.002005
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,4074,0.001184,0.001937
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, channel 4,4074,0.001885,0.001993
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, channel 1,4074,0.001814,0.003525
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001,4074,0.001140,0.002191
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 500001 uidrange 1 100000,4074,0.001213,0.002027
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, filter customFunc,4074,0.001816,0.001994
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,4074,0.001100,0.002063
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\gpl\gpl_v2_test2.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,4074,0.001213,0.002288
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf,,109081,0.016857,0.009502
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 1 10 sorted 1,109081,0.006086,0.002295
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 5000001 5000009 sorted 1,109081,0.009803,0.021335
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidrange 1 500006 sorted 0,109081,0.010132,0.009268
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,109081,0.010432,0.009121
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,109081,0.004630,0.009400
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, channel 4,109081,0.010920,0.009326
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, channel 1,109081,0.009615,0.009725
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001,109081,0.008480,0.008895
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 500001 uidrange 1 100000,109081,0.005728,0.012868
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, filter customFunc,109081,0.014074,0.010442
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,109081,0.011174,0.008726
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\detectors\whistleandmoan\whistleandmoan_v2_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,109081,0.005041,0.010783
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf,,1304905,0.046807,0.041195
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 1 10 sorted 1,1304905,0.002826,0.000831
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 5000001 5000009 sorted 1,1304905,0.003851,0.001206
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidrange 1 500006 sorted 0,1304905,0.039786,0.039483
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 500006 sorted 0,1304905,0.007336,0.038317
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 500006 channel 1 sorted 0,1304905,0.001359,0.038944
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, channel 4,1304905,0.042930,0.040227
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, channel 1,1304905,0.036470,0.036098
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001,1304905,0.000965,0.036175
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 500001 uidrange 1 100000,1304905,0.000979,0.039359
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, filter customFunc,1304905,0.038760,0.041811
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc,1304905,0.006454,0.036381
-C:\Users\sulli\workspace\pamguard\PAMGuardMatlab\resources\data\plugins\geminithreshold\geminithreshold_test1.pgnf, uidlist 5000003 5000004 5000005 5000006 filter customFunc sorted 1,1304905,0.000914,0.036680
diff --git a/toolbox.ignore b/toolbox.ignore
new file mode 100644
index 0000000..66eb30e
--- /dev/null
+++ b/toolbox.ignore
@@ -0,0 +1,40 @@
+% List the files in your toolbox folder to exclude from packaging. Specify the
+% file path as a path relative to the toolbox folder.
+% List only one exclude per line.
+%
+% For example:
+%
+% Exclude a specific file in the toolbox folder:
+% file1.svn
+%
+% Exclude a specific file in a subfolder of the toolbox folder:
+% example/file1.svn
+%
+% Exclude all files in a subfolder of the toolbox folder:
+% example/*
+%
+% Exclude all files with a certain name in all subfolders of the toolbox folder:
+% **/file1.svn
+%
+%Exclude all files matching a pattern in all subfolders of the toolbox folder:
+% **/*.bak
+%
+% Exclude all top level files and folders beginning with the character "%":
+% \%example/%file.svn
+%
+**/resources/project/**/*
+resources
+**/*.prj
+**/*.prj.bak
+**/.git/**/*
+**/.svn/**/*
+**/.buildtool/**/*
+**/*.asv
+testing-resources
+tests
+.git
+.github
+.gitattributes
+.gitignore
+src/+pgmatlab/+db
+dist
\ No newline at end of file