diff --git a/CHANGELOG.md b/CHANGELOG.md index 2527281..9b010dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.0 - 2018-03-21 +### Added +- Support for Base64 encoded image data +- Possibility to pass options to the scanner, like country and amount +- Better Ionic 3 support with `@ionic-native/openalpr` +- Updated documentation with examples + +### Changed +- Add extra parameter for passing options in scan() (breaking change) + ## 1.0.0 - 2016-11-19 ### Added - Initial release. diff --git a/README.md b/README.md index 31bbf57..4d46d7f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Cordova OpenALPR plugin -This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. +This Cordova plugin adds support for the [OpenALPR (Automatic License Plate Recognition) library](https://github.com/openalpr/openalpr) which provides support for retrieving the license plate from a picture. You can pass an image using Base64 or the file path to the OpenALPR plugin. ## Supported platforms The current master branch supports the following platforms: @@ -7,26 +7,76 @@ The current master branch supports the following platforms: - Android (>= SDK 21) ## Installation -This plugin requires Cordova 5.0+ and can be installed from the [Cordova Plugin Registry](https://cordova.apache.org/plugins/). +This plugin requires Cordova 5.0+ and can be installed from the [Cordova Plugin Registry](https://cordova.apache.org/plugins/). If you use Ionic 3, you should also install the `@ionic-native` binding. `cordova plugin add cordova-plugin-openalpr` -## How to use -This plugin defines a global `cordova.plugins.OpenALPR` object, which provides an API for scanning license plates. It is possible to use the output of [cordova-plugin-camera](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-camera/) and pass it to the scan function of this plugin. +`npm install @ionic-native/openalpr` -### Example -``` -cordova.plugins.OpenALPR.scan(filepath, function (data) { - //Results - console.log(data); +## Examples + +### Ionic 1 / PhoneGap +This plugin defines a global `cordova.plugins.OpenALPR` object which provides an API for scanning license plates. It is possible to use the output of [cordova-plugin-camera](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-camera/) and pass it to the scan function of this plugin. + +```javascript +cordova.plugins.OpenALPR.scan(filepath, { country: 'eu', amount: 3 }, function (results) { + console.log(results); }, function (error) { console.log(error.code + ': ' + error.message) }); ``` + +### Ionic 3 +This plugin has a `@ionic-native/openalpr` binding available, which makes it easy to include it in your Ionic 3 project. You can use the output of `@ionic-native/camera` and pass it to the scan function of this plugin. *At the moment the binding isn't published in the `@ionic-native` repository yet, so you can import the binding using `cordova-plugin-openalpr/native`.* + +There is also an [Ionic 3 example project](https://github.com/melvinversluijs/ionic3-sample) available which shows the possible implementation of cordova-plugin-openalpr. + +```typescript +import { Camera, CameraOptions } from '@ionic-native/camera'; +import { OpenALPR, OpenALPROptions, OpenALPRResult } from 'cordova-plugin-openalpr/native'; + +constructor(private camera: Camera, private openALPR: OpenALPR) { + +} + +const cameraOptions: CameraOptions = { + quality: 100, + destinationType: this.camera.DestinationType.FILE_URI, + encodingType: this.camera.EncodingType.JPEG, + mediaType: this.camera.MediaType.PICTURE, + sourceType: this.camera.PictureSourceType.CAMERA +} + +const scanOptions: OpenALPROptions = { + country: this.openalpr.Country.EU, + amount: 3 +} + +this.camera.getPicture(cameraOptions).then((imageData) => { + this.openALPR.scan(imageData) + .then((result: [OpenALPRResult]) => console.log(result.number)) + .catch((error: Error) => console.error(error)); +}); + ``` + + This plugin is only supported on iOS / Android, however in order to speed up development you can make use of [mocking and browser development](https://github.com/ionic-team/ionic-native#mocking-and-browser-development). + +## Known Issues +### opencv2/highgui/highgui.hpp' file not found when compiling iOS app +This Cordova plugin uses custom framework files for iOS which make use of symlinks on MacOS. Symlinks can break when the plugin is either downloaded on Windows and then moved to an MacOS machine or when the plugin is pulled from the Cordova plugin repo / npm without the symlinks being present in the archive [as described in this Cordova bug](https://issues.apache.org/jira/browse/CB-6092). You can solve this by [using a hook](https://docs.microsoft.com/en-us/visualstudio/cross-platform/tools-for-cordova/tips-workarounds/ios-plugin-symlink-fix-readme?view=toolsforcordova-2015) which fixes the issue before compiling. If you don't want to use a hook, you can also manually fix the files as described [here](https://github.com/iMicknl/cordova-plugin-openalpr/issues/12) or clone the repository from Github and add it to your project. + +### Android: PictureSourceType.PHOTOLIBRARY isn't supported (yet) +In Android apps, passing the file uri from PictureSourceType.PHOTOLIBRARY isn't supported yet. This is because the photolibrary returns a different kind of path than the camera does. The cordova-plugin-filepath might provide a workaround for now but this has not been tested yet. + ## Notes - This project includes prebuilt OpenALPR libraries for iOS and Android, because the compilation of the OpenALPR framework requires a lot of effort and dependencies. +- This project is not used in production anymyore and won't be maintained actively. We can't guarantee that we can respond quickly to issues / pull requests, however we will keep an eye on the repository. + +## License +MIT, but keep in mind that OpenALPR itself is licensed under AGPL-3.0. ## Credits - License plate scanning based on [OpenALPR](https://github.com/openalpr/openalpr). - iOS platform support based on [OpenALPR iOS](https://github.com/twelve17/openalpr-ios). -- Android platform support based on [OpenALPR Java bindings](https://github.com/openalpr/openalpr/tree/master/src/bindings/java) \ No newline at end of file +- Android platform support based on [OpenALPR Java bindings](https://github.com/openalpr/openalpr/tree/master/src/bindings/java) +- iOS Base64 implementation by [@baukeroo](https://github.com/baukeroo) diff --git a/native/index.d.ts b/native/index.d.ts new file mode 100644 index 0000000..bcfd82e --- /dev/null +++ b/native/index.d.ts @@ -0,0 +1,57 @@ +import { IonicNativePlugin } from '@ionic-native/core'; +export interface OpenALPROptions { + /** Country used for scanning the license plate */ + country?: string; + /** Amount of results returned */ + amount?: number; +} +export interface OpenALPRResult { + /** LicensePlate */ + number: string; + /** Probability */ + confidence: number; +} +/** + * @name OpenALPR + * @description + * This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. + * + * @usage + * ```typescript + * import { OpenALPR, OpenALPROptions, OpenALPRResult } from '@ionic-native/openalpr'; + * + * + * constructor(private openALPR: OpenALPR) { } + * + * const scanOptions: OpenALPROptions = { + * country: this.openALPR.Country.EU, + * amount: 3 + * } + * + * // To get imageData, you can use the @ionic-native/camera module for example. It works with DestinationType.FILE_URI and DATA_URL + * + * this.openALPR.scan(imageData, scanOptions) + * .then((res: [OpenALPRResult]) => console.log(res)) + * .catch((error: Error) => console.error(error)); + * + * ``` + */ +export declare class OpenALPR extends IonicNativePlugin { + Country: { + AU: string; + BR: string; + BR2: string; + EU: string; + IN: string; + KR2: string; + US: string; + VN2: string; + }; + /** + * This function does something + * @param imageData {any} Base64 encoding of the image data or the image file URI + * @param options {OpenALPROptions} Options to pass to the OpenALPR scanner + * @return {Promise} Returns a promise that resolves when something happens + */ + scan(imageData: any, options?: OpenALPROptions): Promise; +} diff --git a/native/index.js b/native/index.js new file mode 100644 index 0000000..a41e51f --- /dev/null +++ b/native/index.js @@ -0,0 +1,93 @@ +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { + var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; + if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); + else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; + return c > 3 && r && Object.defineProperty(target, key, r), r; +}; +var __metadata = (this && this.__metadata) || function (k, v) { + if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); +}; +import { Injectable } from '@angular/core'; +import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core'; +/** + * @name OpenALPR + * @description + * This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. + * + * @usage + * ```typescript + * import { OpenALPR, OpenALPROptions, OpenALPRResult } from '@ionic-native/openalpr'; + * + * + * constructor(private openALPR: OpenALPR) { } + * + * const scanOptions: OpenALPROptions = { + * country: this.openALPR.Country.EU, + * amount: 3 + * } + * + * // To get imageData, you can use the @ionic-native/camera module for example. It works with DestinationType.FILE_URI and DATA_URL + * + * this.openALPR.scan(imageData, scanOptions) + * .then((res: [OpenALPRResult]) => console.log(res)) + * .catch((error: Error) => console.error(error)); + * + * ``` + */ +var OpenALPR = (function (_super) { + __extends(OpenALPR, _super); + function OpenALPR() { + var _this = _super !== null && _super.apply(this, arguments) || this; + _this.Country = { + AU: 'au', + BR: 'br', + BR2: 'br2', + EU: 'eu', + IN: 'in', + KR2: 'kr2', + US: 'us', + VN2: 'vn2' + }; + return _this; + } + /** + * This function does something + * @param imageData {any} Base64 encoding of the image data or the image file URI + * @param options {OpenALPROptions} Options to pass to the OpenALPR scanner + * @return {Promise} Returns a promise that resolves when something happens + */ + OpenALPR.prototype.scan = function (imageData, options) { return; }; + OpenALPR.decorators = [ + { type: Injectable }, + ]; + /** @nocollapse */ + OpenALPR.ctorParameters = function () { return []; }; + __decorate([ + Cordova(), + __metadata("design:type", Function), + __metadata("design:paramtypes", [Object, Object]), + __metadata("design:returntype", Promise) + ], OpenALPR.prototype, "scan", null); + OpenALPR = __decorate([ + Plugin({ + pluginName: 'OpenALPR', + plugin: 'cordova-plugin-openalpr', + pluginRef: 'cordova.plugins.OpenALPR', + repo: 'https://github.com/iMicknl/cordova-plugin-openalpr', + platforms: ['Android', 'iOS'] + }) + ], OpenALPR); + return OpenALPR; +}(IonicNativePlugin)); +export { OpenALPR }; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/native/index.js.map b/native/index.js.map new file mode 100644 index 0000000..b3c5f71 --- /dev/null +++ b/native/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/@ionic-native/plugins/openalpr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,UAAA,EAAW,MAAO,eAAA,CAAgB;AAC3C,OAAO,EAAE,MAAA,EAAQ,OAAA,EAAS,iBAAA,EAAkB,MAAO,oBAAA,CAAqB;AAiBxE;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAUH;IAA8B,4BAAiB;IAT/C;QAAA,qEAoCC;QAzBC,aAAO,GAAG;YACR,EAAE,EAAE,IAAI;YACR,EAAE,EAAE,IAAI;YACR,GAAG,EAAE,KAAK;YACV,EAAE,EAAE,IAAI;YACR,EAAE,EAAE,IAAI;YACR,GAAG,EAAE,KAAK;YACV,EAAE,EAAE,IAAI;YACR,GAAG,EAAE,KAAK;SACX,CAAC;;IAgBJ,CAAC;IAdC;;;;;MAKE;IAEF,uBAAI,GAAJ,UAAK,SAAc,EAAE,OAAyB,IAAkB,MAAM,CAAC,CAAC,CAAC;IACpE,mBAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,UAAU,EAAE;KACnB,CAAC;IACF,kBAAkB;IACX,uBAAc,GAAmE,cAAM,OAAA,EAC7F,EAD6F,CAC7F,CAAC;IANA;QADC,OAAO,EAAE;;;;wCAC+D;IApB9D,QAAQ;QATpB,MAAM,CAAC;YACN,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,yBAAyB;YACjC,SAAS,EAAE,0BAA0B;YACrC,IAAI,EAAE,oDAAoD;YAC1D,SAAS,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;SAC9B,CAAC;OAGW,QAAQ,CA2BpB;IAAD,eAAC;CA3BD,AA2BC,CA3B6B,iBAAiB,GA2B9C;SA3BY,QAAQ","file":"index.js","sourceRoot":"","sourcesContent":["import { Injectable } from '@angular/core';\nimport { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';\n\nexport interface OpenALPROptions {\n /** Country used for scanning the license plate */\n country?: string;\n\n /** Amount of results returned */\n amount?: number;\n}\n\nexport interface OpenALPRResult {\n /** LicensePlate */\n number: string;\n /** Probability */\n confidence: number;\n}\n\n/**\n * @name OpenALPR\n * @description\n * This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. \n *\n * @usage\n * ```typescript\n * import { OpenALPR, OpenALPROptions, OpenALPRResult } from '@ionic-native/openalpr';\n *\n *\n * constructor(private openALPR: OpenALPR) { }\n *\n * const scanOptions: OpenALPROptions = {\n * country: this.openALPR.Country.EU,\n * amount: 3\n * }\n *\n * // To get imageData, you can use the @ionic-native/camera module for example. It works with DestinationType.FILE_URI and DATA_URL\n * \n * this.openALPR.scan(imageData, scanOptions)\n * .then((res: [OpenALPRResult]) => console.log(res))\n * .catch((error: Error) => console.error(error));\n *\n * ```\n */\n@Plugin({\n pluginName: 'OpenALPR',\n plugin: 'cordova-plugin-openalpr',\n pluginRef: 'cordova.plugins.OpenALPR',\n repo: 'https://github.com/iMicknl/cordova-plugin-openalpr',\n platforms: ['Android', 'iOS']\n})\n\n\nexport class OpenALPR extends IonicNativePlugin {\n\n Country = {\n AU: 'au',\n BR: 'br',\n BR2: 'br2',\n EU: 'eu',\n IN: 'in',\n KR2: 'kr2',\n US: 'us',\n VN2: 'vn2'\n };\n\n /**\n * This function does something\n * @param imageData {any} Base64 encoding of the image data or the image file URI\n * @param options {OpenALPROptions} Options to pass to the OpenALPR scanner\n * @return {Promise} Returns a promise that resolves when something happens\n */\n @Cordova()\n scan(imageData: any, options?: OpenALPROptions): Promise { return; }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Injectable },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]} \ No newline at end of file diff --git a/native/index.metadata.json b/native/index.metadata.json new file mode 100644 index 0000000..af5d656 --- /dev/null +++ b/native/index.metadata.json @@ -0,0 +1 @@ +[{"__symbolic":"module","version":3,"metadata":{"OpenALPROptions":{"__symbolic":"interface"},"OpenALPRResult":{"__symbolic":"interface"},"OpenALPR":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@ionic-native/core","name":"IonicNativePlugin"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@ionic-native/core","name":"Plugin"},"arguments":[{"pluginName":"OpenALPR","plugin":"cordova-plugin-openalpr","pluginRef":"cordova.plugins.OpenALPR","repo":"https://github.com/iMicknl/cordova-plugin-openalpr","platforms":["Android","iOS"]}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"scan":[{"__symbolic":"method","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@ionic-native/core","name":"Cordova"}}]}]}}}},{"__symbolic":"module","version":1,"metadata":{"OpenALPROptions":{"__symbolic":"interface"},"OpenALPRResult":{"__symbolic":"interface"},"OpenALPR":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@ionic-native/core","name":"IonicNativePlugin"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@ionic-native/core","name":"Plugin"},"arguments":[{"pluginName":"OpenALPR","plugin":"cordova-plugin-openalpr","pluginRef":"cordova.plugins.OpenALPR","repo":"https://github.com/iMicknl/cordova-plugin-openalpr","platforms":["Android","iOS"]}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"scan":[{"__symbolic":"method","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@ionic-native/core","name":"Cordova"}}]}]}}}}] \ No newline at end of file diff --git a/native/package.json b/native/package.json new file mode 100644 index 0000000..5bca09a --- /dev/null +++ b/native/package.json @@ -0,0 +1,16 @@ +{ + "name": "@ionic-native/openalpr", + "version": "4.5.2", + "description": "Ionic Native - Native plugins for ionic apps", + "module": "index.js", + "typings": "index.d.ts", + "author": "ionic", + "license": "MIT", + "peerDependencies": { + "@ionic-native/core": "^4.2.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/ionic-team/ionic-native.git" + } +} diff --git a/package.json b/package.json index 759cb1b..0c4a102 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-openalpr", - "version": "1.0.0", + "version": "2.0.0", "description": "This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture.", "cordova": { "id": "cordova-plugin-openalpr", @@ -29,4 +29,4 @@ "url": "https://github.com/iMicknl/cordova-plugin-openalpr/issues" }, "homepage": "https://github.com/iMicknl/cordova-plugin-openalpr#readme" -} +} \ No newline at end of file diff --git a/plugin.xml b/plugin.xml index c530767..a7bf896 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - OpenALPR OpenALPR Cordova Plugin diff --git a/src/android/OpenALPR.java b/src/android/OpenALPR.java index de5667e..0124c7a 100644 --- a/src/android/OpenALPR.java +++ b/src/android/OpenALPR.java @@ -16,6 +16,7 @@ import android.content.Context; import android.util.Log; +import android.util.Base64; import java.io.File; @@ -28,17 +29,22 @@ public OpenALPR() { } /** + * Execute function, will handle the 'scan' action. + * * @param action The action to execute. * @param args The exec() arguments. * @param callbackContext The callback context used when calling back into JavaScript. * @return boolean - * @throws JSONException */ - public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException { - + public boolean execute(String action, JSONArray args, CallbackContext callbackContext) { if (action.equals("scan")) { - String imagePath = args.getString(0); - this.scan(imagePath, callbackContext); + try { + String imagePath = args.getString(0); + JSONObject options = args.getJSONObject(1); + this.scan(imagePath, options, callbackContext); + } catch (JSONException e) { + returnError("Could not read arguments", callbackContext); + } return true; } @@ -49,85 +55,161 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo * Returns (via callback) array of license plates found based on the given imagePath * * @param imagePath path to image + * @param options options * @param callbackContext callback to JavaScript */ - private void scan(String imagePath, CallbackContext callbackContext) { - - // Strip file:// from imagePath where applicable - imagePath = imagePath.replace("file://", ""); - - //Check if imagePath is available and if image exists - if (imagePath != null && imagePath.length() > 0) { - - boolean imageExists = new File(imagePath).isFile(); - - if (imageExists) { - - // Copy assets/runtime_data to accessible Android data dir. - Context context = this.cordova.getActivity().getApplicationContext(); - String androidDataDir = context.getApplicationInfo().dataDir; - Utils.copyAssetFolder(context.getAssets(), "runtime_data", androidDataDir + File.separatorChar + "runtime_data"); - - String runtime_dir = androidDataDir + File.separatorChar + "runtime_data"; - String conf_file = runtime_dir + File.separatorChar + "openalpr.conf"; - - Alpr alpr = new Alpr("eu", conf_file, runtime_dir); //Make new ALPR object with country EU and the config files from assets. - alpr.setTopN(3); - AlprResults results = null; - - try { - results = alpr.recognize(imagePath); - } catch (AlprException e) { - e.printStackTrace(); - } - - //Put OpenALPR results into JSONArray. - JSONArray array = new JSONArray(); - if(results != null) { - for (AlprPlateResult result : results.getPlates()) { - for (AlprPlate plate : result.getTopNPlates()) { - JSONObject obj = new JSONObject(); - try { - obj.put("number", plate.getCharacters()); - obj.put("confidence", plate.getOverallConfidence()); - array.put(obj); - } catch(JSONException e) { - e.printStackTrace(); - } - } - } - } - - PluginResult cordovaResult = new PluginResult(PluginResult.Status.OK, array); - - // Make sure to call this to release memory - alpr.unload(); - callbackContext.sendPluginResult(cordovaResult); //Send Cordova results back to callback function. - } else { - Log.v("OpenALPR", "Image doesn't exist"); - JSONObject error = new JSONObject(); - - try { - error.put("code", 1); - error.put("message", "Image doesn't exist"); - } catch (JSONException e) { - e.printStackTrace(); - } - callbackContext.error(error); + private void scan(String imagePath, JSONObject options, CallbackContext callbackContext) { + + //Declare response array. + JSONArray response = new JSONArray(); + + //Check if imagePath is a file path. + if (imagePath.contains("file://")) { + + //Remove unnecessary prefixes. + imagePath = imagePath.replace("file://", ""); + + //Make sure a image exists for given path. + if (imagePath == null || imagePath.length() > 0 || new File(imagePath).isFile()) { + //Otherwise return an error. + returnError("No image found for given file path", callbackContext); + } + + //Initialize Alpr object. + Alpr alpr = initAlpr(options, callbackContext); + AlprResults results = null; + + //Try to recognize plates. + try { + results = alpr.recognize(imagePath); + } catch (AlprException e) { + //Handle any errors. + returnError("Error during recognizing plates: " + e.getMessage(), callbackContext); } + // Make sure to call this to release memory + alpr.unload(); + + //Try and build the JSONArray. + try { + response = buildResponse(results, response); + } catch (JSONException e) { + //Properly handle any errors. + returnError("Error during building response: " + e.getMessage(), callbackContext); + } + } else if (imagePath.contains("content://")) { + //This imagePath format is not supported please convert it to a proper file path. + returnError("ImagePath format is not supported.", callbackContext); } else { - Log.v("OpenALPR", "No imagePath"); - JSONObject error = new JSONObject(); + //Else treat it as a base64 encoded string. + //Decode string. + byte[] decoded = Base64.decode(imagePath, Base64.DEFAULT); + + //Return error if decoded array is empty. + if (decoded.length == 0) { + returnError("Could not decode Base64 string.", callbackContext); + } + + //Initialize new Alpr object. + Alpr alpr = initAlpr(options, callbackContext); + AlprResults results = null; + + //Try to recognize plates. + try { + results = alpr.recognize(decoded); + } catch (AlprException e) { + //Properly handle any errors. + returnError("Error during recognizing plates: " + e.getMessage(), callbackContext); + } + + // Make sure to call this to release memory + alpr.unload(); + //Try to build a response JSONArray. try { - error.put("code", 0); - error.put("message", "No imagepath given"); + response = buildResponse(results, response); } catch (JSONException e) { - e.printStackTrace(); + //Properly handle any errors that may occur. + returnError("Error during building response: " + e.getMessage(), callbackContext); } + } + + //Create Cordova result and send it back with the callback. + PluginResult cordovaResult = new PluginResult(PluginResult.Status.OK, response); + callbackContext.sendPluginResult(cordovaResult); + } + + /** + * Initialize new Alpr object. + * + * @param options Options to use when intializing new Alpr object. Expects country and amount. + * @param callbackContext Callback to JS. + * @return new Alpr object. + */ + private Alpr initAlpr(JSONObject options, CallbackContext callbackContext) { + String country = ""; + Integer amount = 0; + + //Try to read options object. + try { + country = options.getString("country"); + amount = options.getInt("amount"); + } catch (JSONException e) { + returnError("Error while reading options: " + e.getMessage(), callbackContext); + } + + // Copy assets/runtime_data to accessible Android data dir. + Context context = this.cordova.getActivity().getApplicationContext(); + String androidDataDir = context.getApplicationInfo().dataDir; + Utils.copyAssetFolder(context.getAssets(), "runtime_data", + androidDataDir + File.separatorChar + "runtime_data"); + + String runtime_dir = androidDataDir + File.separatorChar + "runtime_data"; + String conf_file = runtime_dir + File.separatorChar + "openalpr.conf"; + + Alpr alpr = new Alpr(country, conf_file, runtime_dir); //Make new ALPR object with country EU and the config files from assets. + alpr.setTopN(amount); + + return alpr; + } + + /** + * Function to build a proper JSON response array. + * + * @param results Result to be sent. + * @param array Array to be build into a proper response. + * @return JSONArray + * @throws JSONException Will throw a JSONException when JSONArray can not be filled. + */ + private JSONArray buildResponse(AlprResults results, JSONArray array) throws JSONException { + for (AlprPlateResult result : results.getPlates()) { + for (AlprPlate plate : result.getTopNPlates()) { + JSONObject obj = new JSONObject(); + obj.put("number", plate.getCharacters()); + obj.put("confidence", plate.getOverallConfidence()); + array.put(obj); + } + } + return array; + } - callbackContext.error(error); + /** + * Function to build a proper error response. + * + * @param message Message for the error. + * @param callbackContext Callback to JS (To send the error to). + */ + private void returnError(String message, CallbackContext callbackContext) { + Log.v("OpenALPR", message); + JSONObject error = new JSONObject(); + + try { + error.put("code", 0); + error.put("message", message); + } catch (JSONException e) { + e.printStackTrace(); } + + callbackContext.error(error); } } \ No newline at end of file diff --git a/src/android/assets/runtime_data/cameras.yaml b/src/android/assets/runtime_data/cameras.yaml index 69bc22a..8066590 100644 --- a/src/android/assets/runtime_data/cameras.yaml +++ b/src/android/assets/runtime_data/cameras.yaml @@ -1,233 +1,238 @@ ---- -version: 1 -manufacturers: - A-Linking: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi" - Airlink: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" - Airlive: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.mjpg" - - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" - Airwave: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/pusher.cgi" - Arecont: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg?res=full&x0=0&y0=0&x1=100%&y1=100%&quality=12&doublescan=0&fps=15&ver=HTTP/1.1" - - "http://[username]:[password]@[ip_address]/image?res=half&x0=0&y0=0&x1=1600&y1=1200&quality=15&doublescan=0" - Avigilon: - mjpeg: - - "http://[username]:[password]@[ip_address]/media/still.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/defaultPrimary?streamType=u" - Aviosys: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi" - - "http://[username]:[password]@[ip_address]/cgi-bin/Stream?Video?Authorization=" - Axis: - mjpeg: - - "http://[username]:[password]@[ip_address]/axis-cgi/mjpg/video.cgi?fps=15" - h264: - - "rtsp://[username]:[password]@[ip_address]/axis-media/media.amp" - - "rtsp://[username]:[password]@[ip_address]/mpeg4/media.amp" - Bosch: - mjpeg: - - "http://[username]:[password]@[ip_address]/rtsp_tunnel?h26x=4&line=1&inst=2" - h264: - - "rtsp://[username]:[password]@[ip_address]/rtsp_tunnel" - Bowya: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.cgi" - Canon: - mjpeg: - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot?frame_count=no_limit" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetStillImage" - Cisco: - h264: - - "rtsp://[username]:[password]@[ip_address]/" - Convision: - mjpeg: - - "http://[username]:[password]@[ip_address]/fullsize.push?camera=1&sleep=15" - CNB: - h264: - - "rtsp://[username]:[password]@[ip_address]/" - D-Link: - mjpeg: - - "http://[username]:[password]@[ip_address]/video/mjpg.cgi" - - "http://[username]:[password]@[ip_address]/video.cgi" - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - - "http://[username]:[password]@[ip_address]/IMAGE.jpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.vam" - - "http://[username]:[password]@[ip_address]/_gCVimage.jpg" - Digicom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Easyn: - mjpeg: - - "http://[username]:[password]@[ip_address]/videostream.cgi?user=username&pwd=password" - Edimax: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" - - "http://[username]:[password]@[ip_address]/snapshot.cgi" - Ego: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Foscam: - mjpeg: - - "http://[username]:[password]@[ip_address]/videostream.cgi" - - "http://[username]:[password]@[ip_address]/snapshot.cgi" - Fulicom: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Gadspot: - mjpeg: - - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" - - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" - Goscam: - mjpeg: - - "http://[ip_address]/cgi-bin/Stream?Video?Acc=[username]?Pwd=[password]?webcamPWD=RootCookies00000" - Hamlet: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Hikvision: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg?cam=1&quality=3&size=2" - h264: - - "rtsp://[username]:[password]@[ip_address]/h264/ch1/sub/" - - "rtsp://[username]:[password]@[ip_address]:554/Streaming/Channels/1" - - "rtsp://[username]:[password]@[ip_address]:554/ch0_0.h264" - IQeye: - mjpeg: - - "http://[username]:[password]@[ip_address]/now.jpg?snap=spush" - h264: - - "rtsp://[username]:[password]@[ip_address]/stream1" - - "rtsp://[username]:[password]@[ip_address]/now.mp4&res=high" - Intellinet: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - JVC: - mjpeg: - - "http://[username]:[password]@[ip_address]/api/video?encode=jpeg&framerate=15&boundary=on" - Kingnow: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Linksys: - mjpeg: - - "http://[username]:[password]@[ip_address]/img/video.mjpeg" - - "http://[username]:[password]@[ip_address]/img/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/img/snapshot.cgi?size=2" - - "http://[username]:[password]@[ip_address]/adm/file.cgi?h_videotype=mjpeg&todo=save" - Linudix: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/nph-update_4ch.cgi?ch=1" - Lumenera: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/nph-video" - Lumens: - h264: - - "rtsp://[username]:[password]@[ip_address]:8557/h264" - Marmitek: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - Mobotix: - mjpeg: - - "http://[username]:[password]@[ip_address]/record/current.jpg" - - "http://[username]:[password]@[ip_address]/control/faststream.jpg?stream=full" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=1.0 (1 fps)" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=3.0 (1 fps)" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=0 (max frame rate)" - Moxa: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - PLANET: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - Panasonic: - mjpeg: - - "http://[username]:[password]@[ip_address]/nphMotionJpeg?Resolution=640x480&Quality=Clarity" - - "http://[username]:[password]@[ip_address]/cgi-bin/nphContinuousServerPush" - - "http://[username]:[password]@[ip_address]/SnapshotJPEG?mode=Refresh" - - "http://[username]:[password]@[ip_address]/cgi-bin/camera" - h264: - - "rtsp://[username]:[password]@[ip_address]/MediaInput/h264/stream_1" - Pixord: - mjpeg: - - "http://[username]:[password]@[ip_address]/Getimage.cgi" - - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=full" - - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=qsif" - Qnap: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - Samsung_SNB: - mjpeg: - - "http://[username]:[password]@[ip_address]/video?submenu=mjpg" - - "http://[username]:[password]@[ip_address]/video?submenu=jpg" - Sanyo: - mjpeg: - - "http://[username]:[password]@[ip_address]/liveimg.cgi?serverpush=1" - Sharkx: - mjpeg: - - "http://[username]:[password]@[ip_address]/stream.jpg" - Shenzen_Sunsky: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Skyway_Security: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" - - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" - Sony: - mjpeg: - - "http://[username]:[password]@[ip_address]/image" - - "http://[username]:[password]@[ip_address]/image?speed=0" - - "http://[username]:[password]@[ip_address]/oneshotimage.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/media/video1" - Surecom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Swann: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" - TP-Link: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - - "http://[username]:[password]@[ip_address]/video.mjpg" - Topcom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Toshiba: - mjpeg: - - "http://[username]:[password]@[ip_address]/__live.jpg?&&&" - - "http://[username]:[password]@[ip_address]getstream.cgi?10&10&&&10&0&0&0&0" - Trendnet: - mjpeg: - - "http://[username]:[password]@[ip_address]/goform/video" - - "http://[username]:[password]@[ip_address]/goform/video2" - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpg.cgi" - - "http://[username]:[password]@[ip_address]/GetData.cgi" - - "http://[username]:[password]@[ip_address]/image.jpg" - Vilar: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Vivotek: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.mjpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/viewer/video.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/live.sdp" - Y-Cam: - mjpeg: - - "http://[username]:[password]@[ip_address]/stream.jpg" - Zavio: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" +--- +version: 1 +manufacturers: + A-Linking: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi" + Airlink: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" + Airlive: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.mjpg" + - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" + Airwave: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/pusher.cgi" + Arecont: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg?res=full&x0=0&y0=0&x1=100%&y1=100%&quality=12&doublescan=0&fps=15&ver=HTTP/1.1" + - "http://[username]:[password]@[ip_address]/image?res=half&x0=0&y0=0&x1=1600&y1=1200&quality=15&doublescan=0" + Avigilon: + mjpeg: + - "http://[username]:[password]@[ip_address]/media/still.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/defaultPrimary?streamType=u" + Aviosys: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi" + - "http://[username]:[password]@[ip_address]/cgi-bin/Stream?Video?Authorization=" + Axis: + mjpeg: + - "http://[username]:[password]@[ip_address]/axis-cgi/mjpg/video.cgi?fps=15" + h264: + - "rtsp://[username]:[password]@[ip_address]/axis-media/media.amp" + - "rtsp://[username]:[password]@[ip_address]/mpeg4/media.amp" + Bosch: + mjpeg: + - "http://[username]:[password]@[ip_address]/rtsp_tunnel?h26x=4&line=1&inst=2" + h264: + - "rtsp://[username]:[password]@[ip_address]/rtsp_tunnel" + Bowya: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.cgi" + Canon: + mjpeg: + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot?frame_count=no_limit" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetStillImage" + Cisco: + h264: + - "rtsp://[username]:[password]@[ip_address]/" + Convision: + mjpeg: + - "http://[username]:[password]@[ip_address]/fullsize.push?camera=1&sleep=15" + CNB: + h264: + - "rtsp://[username]:[password]@[ip_address]/" + Dahua: + h264: + - "rtsp://[username]:[password]@[ip_address]:554/cam/realmonitor?channel=1&subtype=1" + D-Link: + mjpeg: + - "http://[username]:[password]@[ip_address]/video/mjpg.cgi" + - "http://[username]:[password]@[ip_address]/video.cgi" + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + - "http://[username]:[password]@[ip_address]/IMAGE.jpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.vam" + - "http://[username]:[password]@[ip_address]/_gCVimage.jpg" + Digicom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Easyn: + mjpeg: + - "http://[username]:[password]@[ip_address]/videostream.cgi?user=username&pwd=password" + Edimax: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" + - "http://[username]:[password]@[ip_address]/snapshot.cgi" + Ego: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Foscam: + mjpeg: + - "http://[username]:[password]@[ip_address]/videostream.cgi" + - "http://[username]:[password]@[ip_address]/snapshot.cgi" + Fulicom: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Gadspot: + mjpeg: + - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" + - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" + Goscam: + mjpeg: + - "http://[ip_address]/cgi-bin/Stream?Video?Acc=[username]?Pwd=[password]?webcamPWD=RootCookies00000" + Hamlet: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Hikvision: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg?cam=1&quality=3&size=2" + h264: + - "rtsp://[username]:[password]@[ip_address]/h264/ch1/sub/" + - "rtsp://[username]:[password]@[ip_address]:554/Streaming/Channels/1" + - "rtsp://[username]:[password]@[ip_address]:554/ch0_0.h264" + IQeye: + mjpeg: + - "http://[username]:[password]@[ip_address]/now.jpg?snap=spush" + h264: + - "rtsp://[username]:[password]@[ip_address]/stream1" + - "rtsp://[username]:[password]@[ip_address]/now.mp4&res=high" + Intellinet: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + JVC: + mjpeg: + - "http://[username]:[password]@[ip_address]/api/video?encode=jpeg&framerate=15&boundary=on" + Kingnow: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Linksys: + mjpeg: + - "http://[username]:[password]@[ip_address]/img/video.mjpeg" + - "http://[username]:[password]@[ip_address]/img/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/img/snapshot.cgi?size=2" + - "http://[username]:[password]@[ip_address]/adm/file.cgi?h_videotype=mjpeg&todo=save" + Linudix: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/nph-update_4ch.cgi?ch=1" + Lumenera: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/nph-video" + Lumens: + h264: + - "rtsp://[username]:[password]@[ip_address]:8557/h264" + Marmitek: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + Mobotix: + mjpeg: + - "http://[username]:[password]@[ip_address]/record/current.jpg" + - "http://[username]:[password]@[ip_address]/control/faststream.jpg?stream=full" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=1.0 (1 fps)" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=3.0 (1 fps)" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=0 (max frame rate)" + Moxa: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + PLANET: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + Panasonic: + mjpeg: + - "http://[username]:[password]@[ip_address]/nphMotionJpeg?Resolution=640x480&Quality=Clarity" + - "http://[username]:[password]@[ip_address]/cgi-bin/nphContinuousServerPush" + - "http://[username]:[password]@[ip_address]/SnapshotJPEG?mode=Refresh" + - "http://[username]:[password]@[ip_address]/cgi-bin/camera" + h264: + - "rtsp://[username]:[password]@[ip_address]/MediaInput/h264/stream_1" + Pixord: + mjpeg: + - "http://[username]:[password]@[ip_address]/Getimage.cgi" + - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=full" + - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=qsif" + Qnap: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + Samsung: + mjpeg: + - "http://[username]:[password]@[ip_address]/video?submenu=mjpg" + - "http://[username]:[password]@[ip_address]/video?submenu=jpg" + h264: + - "rtsp://[ip_address]/profile1/media.smp" + Sanyo: + mjpeg: + - "http://[username]:[password]@[ip_address]/liveimg.cgi?serverpush=1" + Sharkx: + mjpeg: + - "http://[username]:[password]@[ip_address]/stream.jpg" + Shenzen_Sunsky: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Skyway_Security: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" + - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" + Sony: + mjpeg: + - "http://[username]:[password]@[ip_address]/image" + - "http://[username]:[password]@[ip_address]/image?speed=0" + - "http://[username]:[password]@[ip_address]/oneshotimage.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/media/video1" + Surecom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Swann: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" + TP-Link: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + - "http://[username]:[password]@[ip_address]/video.mjpg" + Topcom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Toshiba: + mjpeg: + - "http://[username]:[password]@[ip_address]/__live.jpg?&&&" + - "http://[username]:[password]@[ip_address]getstream.cgi?10&10&&&10&0&0&0&0" + Trendnet: + mjpeg: + - "http://[username]:[password]@[ip_address]/goform/video" + - "http://[username]:[password]@[ip_address]/goform/video2" + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpg.cgi" + - "http://[username]:[password]@[ip_address]/GetData.cgi" + - "http://[username]:[password]@[ip_address]/image.jpg" + Vilar: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Vivotek: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.mjpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/viewer/video.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/live.sdp" + Y-Cam: + mjpeg: + - "http://[username]:[password]@[ip_address]/stream.jpg" + Zavio: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" diff --git a/src/android/assets/runtime_data/config/au.conf b/src/android/assets/runtime_data/config/au.conf index 9b15467..db6c071 100644 --- a/src/android/assets/runtime_data/config/au.conf +++ b/src/android/assets/runtime_data/config/au.conf @@ -1,46 +1,46 @@ -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 1.6; - -plate_width_mm = 372 -plate_height_mm = 135 - -multiline = 0 - -char_height_mm = 82 -char_width_mm = 45 -char_whitespace_top_mm = 18 -char_whitespace_bot_mm = 30 - -template_max_width_px = 165 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 22 -plateline_sensitivity_horizontal = 50 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 85 -min_plate_size_height_px = 28 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -ocr_language = lau - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 1.6; + +plate_width_mm = 372 +plate_height_mm = 135 + +multiline = 0 + +char_height_mm = 82 +char_width_mm = 45 +char_whitespace_top_mm = 18 +char_whitespace_bot_mm = 30 + +template_max_width_px = 165 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 22 +plateline_sensitivity_horizontal = 50 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 85 +min_plate_size_height_px = 28 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +ocr_language = lau + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/auwide.conf b/src/android/assets/runtime_data/config/auwide.conf index 93314c5..4f7c30d 100644 --- a/src/android/assets/runtime_data/config/auwide.conf +++ b/src/android/assets/runtime_data/config/auwide.conf @@ -1,48 +1,48 @@ - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 -min_plate_size_height_px = 20 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lau - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 +min_plate_size_height_px = 20 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lau + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/br.conf b/src/android/assets/runtime_data/config/br.conf index ef1a5d4..0e1c42e 100644 --- a/src/android/assets/runtime_data/config/br.conf +++ b/src/android/assets/runtime_data/config/br.conf @@ -1,46 +1,46 @@ -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.4 -segmentation_min_box_width_px = 2 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 400 -plate_height_mm = 130 - -multiline = 0 - -char_height_mm = 63 -char_width_mm = 54 -char_whitespace_top_mm = 20 -char_whitespace_bot_mm = 10 - -template_max_width_px = 150 -template_max_height_px = 49 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 22 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 7 - -ocr_language = lbr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto \ No newline at end of file +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.4 +segmentation_min_box_width_px = 2 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 400 +plate_height_mm = 130 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 50 +char_whitespace_top_mm = 45 +char_whitespace_bot_mm = 20 + +template_max_width_px = 150 +template_max_height_px = 49 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 21 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 7 + +ocr_language = lbr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/android/assets/runtime_data/config/br2.conf b/src/android/assets/runtime_data/config/br2.conf new file mode 100644 index 0000000..9896732 --- /dev/null +++ b/src/android/assets/runtime_data/config/br2.conf @@ -0,0 +1,30 @@ +char_analysis_min_pct =0.15 +char_analysis_height_range =0.30 +char_analysis_height_step_size =0.20 +char_analysis_height_num_steps =6 +segmentation_min_box_width_px =6 +segmentation_min_charheight_percent =0.4; +segmentation_max_segment_width_percent_vs_average =2.0; +plate_width_mm =200 +plate_height_mm =170 +multiline =1 +char_height_mm =53 +char_width_mm =29 +char_height_mm =53 +char_width_mm =29 +char_whitespace_top_mm =10 +char_whitespace_bot_mm =10 +char_whitespace_between_lines_mm =10 +template_max_width_px =118 +template_max_height_px =100 +plateline_sensitivity_vertical =50 +plateline_sensitivity_horizontal =50 +min_plate_size_width_px =59 +min_plate_size_height_px =50 +postprocess_min_characters =5 +postprocess_max_characters =7 +detector_file =br2.xml +ocr_language =lbr +postprocess_regex_letters =[A-Z] +postprocess_regex_numbers =[0-9] +invert =auto diff --git a/src/android/assets/runtime_data/config/eu.conf b/src/android/assets/runtime_data/config/eu.conf index c45e64d..1f8e693 100644 --- a/src/android/assets/runtime_data/config/eu.conf +++ b/src/android/assets/runtime_data/config/eu.conf @@ -1,48 +1,48 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -ocr_language = leu - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +ocr_language = leu + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/fr.conf b/src/android/assets/runtime_data/config/fr.conf index a4b52bc..62cc679 100644 --- a/src/android/assets/runtime_data/config/fr.conf +++ b/src/android/assets/runtime_data/config/fr.conf @@ -1,50 +1,50 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lfr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lfr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/android/assets/runtime_data/config/gb.conf b/src/android/assets/runtime_data/config/gb.conf index 99b1b5e..460a10d 100644 --- a/src/android/assets/runtime_data/config/gb.conf +++ b/src/android/assets/runtime_data/config/gb.conf @@ -1,50 +1,50 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lgb - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lgb + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/android/assets/runtime_data/config/in.conf b/src/android/assets/runtime_data/config/in.conf new file mode 100644 index 0000000..e0fee2f --- /dev/null +++ b/src/android/assets/runtime_data/config/in.conf @@ -0,0 +1,45 @@ +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 4 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.5; +segmentation_max_segment_width_percent_vs_average = 1.35; + +plate_width_mm = 520 +plate_height_mm = 120 + +multiline = 0 + +char_height_mm = 65 +char_width_mm = 30 +char_whitespace_top_mm = 24 +char_whitespace_bot_mm = 24 + +template_max_width_px = 120 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 70 +min_plate_size_height_px = 35 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 10 + +ocr_language = lin + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/kr.conf b/src/android/assets/runtime_data/config/kr.conf index dd45778..eff5f1d 100644 --- a/src/android/assets/runtime_data/config/kr.conf +++ b/src/android/assets/runtime_data/config/kr.conf @@ -1,48 +1,48 @@ - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.15 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.2 -segmentation_max_segment_width_percent_vs_average = 2.0 - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 43 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 -min_plate_size_height_px = 20 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 7 - -detector_file = eu.xml - -ocr_language = lkr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = \pL -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.15 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.2 +segmentation_max_segment_width_percent_vs_average = 2.0 + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 43 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 +min_plate_size_height_px = 20 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 7 + +detector_file = eu.xml + +ocr_language = lkr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = \pL +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/kr2.conf b/src/android/assets/runtime_data/config/kr2.conf index c1900fc..51e7241 100755 --- a/src/android/assets/runtime_data/config/kr2.conf +++ b/src/android/assets/runtime_data/config/kr2.conf @@ -1,51 +1,51 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.15 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.2 ;0.5; -segmentation_max_segment_width_percent_vs_average = 1.65 ;1.35; - -plate_width_mm = 335 -plate_height_mm = 170 - -multiline = 1 - -char_height_mm = 48 -char_width_mm = 38 - -char_height_mm = 92 -char_width_mm = 62 - -char_whitespace_top_mm = 5 -char_whitespace_bot_mm = 5 - -char_whitespace_between_lines_mm = 13 - -template_max_width_px = 258 -template_max_height_px = 131 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 55 ;25 -plateline_sensitivity_horizontal = 85 ;45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 ;70 -min_plate_size_height_px = 50 ;35 - -; Results with fewer characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 9 - -ocr_language = lkr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = \pL -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.15 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.2 ;0.5; +segmentation_max_segment_width_percent_vs_average = 1.65 ;1.35; + +plate_width_mm = 335 +plate_height_mm = 170 + +multiline = 1 + +char_height_mm = 48 +char_width_mm = 38 + +char_height_mm = 92 +char_width_mm = 62 + +char_whitespace_top_mm = 5 +char_whitespace_bot_mm = 5 + +char_whitespace_between_lines_mm = 13 + +template_max_width_px = 258 +template_max_height_px = 131 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 55 ;25 +plateline_sensitivity_horizontal = 85 ;45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 ;70 +min_plate_size_height_px = 50 ;35 + +; Results with fewer characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 9 + +ocr_language = lkr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = \pL +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = always \ No newline at end of file diff --git a/src/android/assets/runtime_data/config/mx.conf b/src/android/assets/runtime_data/config/mx.conf index 0293529..c0dc035 100644 --- a/src/android/assets/runtime_data/config/mx.conf +++ b/src/android/assets/runtime_data/config/mx.conf @@ -1,47 +1,47 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 4 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.5; -segmentation_max_segment_width_percent_vs_average = 1.35; - -plate_width_mm = 304.8 -plate_height_mm = 152.4 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 35 -char_whitespace_top_mm = 38 -char_whitespace_bot_mm = 38 - -template_max_width_px = 120 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 70 -min_plate_size_height_px = 35 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 7 - -detector_file = us.xml - -ocr_language = lus - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 4 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.5; +segmentation_max_segment_width_percent_vs_average = 1.35; + +plate_width_mm = 304.8 +plate_height_mm = 152.4 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 35 +char_whitespace_top_mm = 38 +char_whitespace_bot_mm = 38 + +template_max_width_px = 120 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 70 +min_plate_size_height_px = 35 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 7 + +detector_file = us.xml + +ocr_language = lus + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/android/assets/runtime_data/config/sg.conf b/src/android/assets/runtime_data/config/sg.conf index 7bc24cf..4feebe8 100644 --- a/src/android/assets/runtime_data/config/sg.conf +++ b/src/android/assets/runtime_data/config/sg.conf @@ -1,45 +1,45 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 52 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 226 -template_max_height_px = 48 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 70 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -detector_file = eu.xml - -ocr_language = lsg - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-HJ-NP-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 52 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 226 +template_max_height_px = 48 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 70 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +detector_file = eu.xml + +ocr_language = lsg + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-HJ-NP-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/android/assets/runtime_data/config/us.conf b/src/android/assets/runtime_data/config/us.conf index 437b097..19add48 100644 --- a/src/android/assets/runtime_data/config/us.conf +++ b/src/android/assets/runtime_data/config/us.conf @@ -1,45 +1,45 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 4 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.5; -segmentation_max_segment_width_percent_vs_average = 1.35; - -plate_width_mm = 304.8 -plate_height_mm = 152.4 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 35 -char_whitespace_top_mm = 38 -char_whitespace_bot_mm = 38 - -template_max_width_px = 120 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 70 -min_plate_size_height_px = 35 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -ocr_language = lus - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 4 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.5; +segmentation_max_segment_width_percent_vs_average = 1.35; + +plate_width_mm = 304.8 +plate_height_mm = 152.4 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 35 +char_whitespace_top_mm = 38 +char_whitespace_bot_mm = 38 + +template_max_width_px = 120 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 70 +min_plate_size_height_px = 35 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +ocr_language = lus + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/android/assets/runtime_data/keypoints/eu/pl2000.jpg b/src/android/assets/runtime_data/keypoints/eu/pl2000.jpg deleted file mode 100755 index 4efecef..0000000 Binary files a/src/android/assets/runtime_data/keypoints/eu/pl2000.jpg and /dev/null differ diff --git a/src/android/assets/runtime_data/keypoints/eu/pl2006.jpg b/src/android/assets/runtime_data/keypoints/eu/pl2006.jpg deleted file mode 100755 index 71e48e8..0000000 Binary files a/src/android/assets/runtime_data/keypoints/eu/pl2006.jpg and /dev/null differ diff --git a/src/android/assets/runtime_data/keypoints/eu/pt1992.jpg b/src/android/assets/runtime_data/keypoints/eu/pt1992.jpg deleted file mode 100755 index 9a54e30..0000000 Binary files a/src/android/assets/runtime_data/keypoints/eu/pt1992.jpg and /dev/null differ diff --git a/src/android/assets/runtime_data/keypoints/eu/pt1998.jpg b/src/android/assets/runtime_data/keypoints/eu/pt1998.jpg deleted file mode 100755 index cdb8788..0000000 Binary files a/src/android/assets/runtime_data/keypoints/eu/pt1998.jpg and /dev/null differ diff --git a/src/android/assets/runtime_data/ocr/tessdata/lbr.traineddata b/src/android/assets/runtime_data/ocr/tessdata/lbr.traineddata index dd82f9d..f9b67b1 100644 Binary files a/src/android/assets/runtime_data/ocr/tessdata/lbr.traineddata and b/src/android/assets/runtime_data/ocr/tessdata/lbr.traineddata differ diff --git a/src/android/assets/runtime_data/ocr/tessdata/lin.traineddata b/src/android/assets/runtime_data/ocr/tessdata/lin.traineddata new file mode 100644 index 0000000..bb11eae Binary files /dev/null and b/src/android/assets/runtime_data/ocr/tessdata/lin.traineddata differ diff --git a/src/android/assets/runtime_data/postprocess/au.patterns b/src/android/assets/runtime_data/postprocess/au.patterns index 6d5f2bf..c499423 100644 --- a/src/android/assets/runtime_data/postprocess/au.patterns +++ b/src/android/assets/runtime_data/postprocess/au.patterns @@ -1,14 +1,14 @@ -act [Y]@@##@ -act [T]##### -nsw @@##@@ -nsw @@@##@ -nsw [T][AR]##@@ -nt @@##@@ -nt [T]@#### -qld ###@@@ -sa [S]###@@@ -tas @##@@ -vic @@@### -vic #@@#@@ -vic @##### +act [Y]@@##@ +act [T]##### +nsw @@##@@ +nsw @@@##@ +nsw [T][AR]##@@ +nt @@##@@ +nt [T]@#### +qld ###@@@ +sa [S]###@@@ +tas @##@@ +vic @@@### +vic #@@#@@ +vic @##### wa [1]@@@### \ No newline at end of file diff --git a/src/android/assets/runtime_data/postprocess/br.patterns b/src/android/assets/runtime_data/postprocess/br.patterns index 0fdfba3..92e9463 100644 --- a/src/android/assets/runtime_data/postprocess/br.patterns +++ b/src/android/assets/runtime_data/postprocess/br.patterns @@ -1 +1 @@ -br @@@#### +br @@@#### diff --git a/src/android/assets/runtime_data/postprocess/eu.patterns b/src/android/assets/runtime_data/postprocess/eu.patterns index e88949b..3e92450 100644 --- a/src/android/assets/runtime_data/postprocess/eu.patterns +++ b/src/android/assets/runtime_data/postprocess/eu.patterns @@ -1,199 +1,218 @@ -ad @#### - -al @@###@@ - -am ###@@### -am ##@@### -am ###@@## -am ##@@## - -at @@??? -at @@???? -at @@????? -at @@?????? -at @??? -at @???? -at @????? -at @?????? - -az ##@@### - -ba [AEJKMOT]##[AEJKMOT]### -ba [T][A]###### -ba [T][T]###### -ba ######[AEJKT] - -be #@@@### -be ###@@@ - -bg @@####@@ -bg @####@@ - -by ####@@# - -ch @@###### -ch [APM]###### - -cy @@@### - -cz #@##### -cz #@@#### - -de @@@@#### -de @@@@### -de @@@@## -de @@@@# -de @@@#### -de @@@### -de @@@## -de @@@# -de @@@@####[HE] -de @@@@###[HE] -de @@@@##[HE] -de @@@####[HE] -de @@@###[HE] -de @@@##[HE] -de @@@#[HE] - -dk @@##### - -ee ###@@@ - -es ####@@@ -es @####@@@ - -fi @@@### - -fr @@###@@ - -gb @@##@@@ - -ge @@###@@ - -gi [G]####@ - -gr @@@#### - -hr @@###@@ -hr @@####@@ -hr @@###@ -hr @@####@ - -hu @@@### - -ie ##[12][CDGLTW]###### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]###### -ie ##[12][CDGLTW]##### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]##### -ie ##[12][CDGLTW]#### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]#### -ie ##[12][CDGLTW]### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]### -ie ##[CDGLTW]###### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]###### -ie ##[CDGLTW]##### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]##### -ie ##[CDGLTW]#### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]#### -ie ##[CDGLTW]### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]### - -is @@@## - -it @@###@@ - -kz ###@@@ - -li @@##### -li @@#### -li @@### - -lt @@@### - -lu @@#### - -lv @@#### -lv @@### -lv @#### -lv @### - -mc ???? - -md @@@@### -md [CK]@@### -md @@@@## -md [CK]@@## -md @@@@# -md [CK]@@# - -me @@@@### - -mk @@####@@ -mt @@@### - -nl @@#### -nl ####@@ -nl ##@@## -nl @@##@@ -nl @@@@## -nl ##@@@@ -nl ##@@@# -nl #@@@## -nl @@###@ -nl @###@@ -nl @@@##@ -nl @##@@@ -nl #@@### -nl ###@@# - -no @@##### -no ##### - -pl @@##### -pl @@####@ -pl @@###@@ -pl @@#@### -pl @@#@@## -pl @@@@### -pl @@@##@@ -pl @@@#@## -pl @@@##@# -pl @@@#@@# -pl @@@@@## -pl @@@##### -pl @@@####@ -pl @@@###@@ - -pt @@#### -pt ####@@ -pt ##@@## - -ro @@###@@@ -ro @@##@@@ -ro @###@@@ -ro @##@@@ - -rs @@###@@ - -ru @###@@## -ru @###@@### - -se @@@### - -si @@@@### - -sk @@###@@ - -sm @#### -sm @### - -tr ##@#### -tr ##@##### -tr ##@@### -tr ##@@#### -tr ##@@@## - -ua @@####@@ - -va [S][C][V]##### -va [C][V]##### +ad @#### + +al @@###@@ + +am ###@@### +am ##@@### +am ###@@## +am ##@@## + +at @@??? +at @@???? +at @@????? +at @@?????? +at @??? +at @???? +at @????? +at @?????? + +az ##@@### + +ba [AEJKMOT]##[AEJKMOT]### +ba [T][A]###### +ba [T][T]###### +ba ######[AEJKT] + +be @@@@### +be #@@@### +be ###@@@ +be @@@### + +bg @@####@@ +bg @####@@ + +by ####@@# + +ch @@###### +ch @@##### +ch @@#### +ch @@### +ch @@## +ch @@# +ch [APM]###### +ch [APM]##### +ch [APM]#### +ch [APM]### +ch [APM]## +ch [APM]# + +cy @@@### + +cz #@##### +cz #@@#### + +de @@@@#### +de @@@@### +de @@@@## +de @@@@# +de @@@#### +de @@@### +de @@@## +de @@@# +de @@@@####[HE] +de @@@@###[HE] +de @@@@##[HE] +de @@@####[HE] +de @@@###[HE] +de @@@##[HE] +de @@@#[HE] + +dk @@##### + +ee ###@@@ + +es ####@@@ +es @####@@@ + +fi @@@### + +fr @@###@@ +fr ###@@@## +fr ####@@## + +gb @@##@@@ + +ge @@###@@ + +gi [G]####@ + +gr @@@#### + +hr @@###@@ +hr @@####@@ +hr @@###@ +hr @@####@ + +hu @@@### + +ie ##[12][CDGLTW]###### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]###### +ie ##[12][CDGLTW]##### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]##### +ie ##[12][CDGLTW]#### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]#### +ie ##[12][CDGLTW]### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]### +ie ##[CDGLTW]###### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]###### +ie ##[CDGLTW]##### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]##### +ie ##[CDGLTW]#### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]#### +ie ##[CDGLTW]### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]### + +is @@@## + +it @@###@@ + +kz ###@@@ + +li @@##### +li @@#### +li @@### + +lt @@@### + +lu #### +lu ##### +lu @@### +lu @#### +lu @@#### + +lv @@#### +lv @@### +lv @#### +lv @### + +mc ???? + +md @@@@### +md [CK]@@### +md @@@@## +md [CK]@@## +md @@@@# +md [CK]@@# + +me @@@@### + +mk @@####@@ +mk @@###@@ + +mt @@@### + +nl @@#### +nl ####@@ +nl ##@@## +nl @@##@@ +nl @@@@## +nl ##@@@@ +nl ##@@@# +nl #@@@## +nl @@###@ +nl @###@@ +nl @@@##@ +nl @##@@@ +nl #@@### +nl ###@@# + +no @@##### +no ##### + +pl @@##### +pl @@####@ +pl @@###@@ +pl @@#@### +pl @@#@@## +pl @@@@### +pl @@@##@@ +pl @@@#@## +pl @@@##@# +pl @@@#@@# +pl @@@@@## +pl @@@##### +pl @@@####@ +pl @@@###@@ + +pt @@#### +pt ####@@ +pt ##@@## + +ro @@##@@@ +ro [B]###@@@ +ro [B]##@@@ + +rs @@###@@ + +ru @###@@## +ru @###@@### + +se @@@### + +si @@@@### + +sk @@###@@ + +sm @#### +sm @### + +tr ##@#### +tr ##@##### +tr ##@@### +tr ##@@#### +tr ##@@@## + +ua @@####@@ + +va [S][C][V]##### +va [C][V]##### diff --git a/src/android/assets/runtime_data/postprocess/gb.patterns b/src/android/assets/runtime_data/postprocess/gb.patterns index 7b2214d..0f1dd4d 100644 --- a/src/android/assets/runtime_data/postprocess/gb.patterns +++ b/src/android/assets/runtime_data/postprocess/gb.patterns @@ -1 +1 @@ -gb @@##@@@ +gb @@##@@@ diff --git a/src/android/assets/runtime_data/postprocess/mx.patterns b/src/android/assets/runtime_data/postprocess/mx.patterns index d5b4401..5b0091e 100644 --- a/src/android/assets/runtime_data/postprocess/mx.patterns +++ b/src/android/assets/runtime_data/postprocess/mx.patterns @@ -1,5 +1,5 @@ -mx @@@#### -mx @##@@@ -mx @@@###@ -mx @@##### -mx ####@@ +mx @@@#### +mx @##@@@ +mx @@@###@ +mx @@##### +mx ####@@ diff --git a/src/android/assets/runtime_data/postprocess/readme.txt b/src/android/assets/runtime_data/postprocess/readme.txt index 68676d8..92013a2 100644 --- a/src/android/assets/runtime_data/postprocess/readme.txt +++ b/src/android/assets/runtime_data/postprocess/readme.txt @@ -1,7 +1,7 @@ -Each line is a possible lp pattern organized by region/state and then likelihood. - -The parser goes through each line and tries to match -@ = any letter -# = any number -? = a skip position (can be anything, but remove it if encountered) -[A-FGZ] is just a single char position with specific letter requirements. In this example, the regex defines characters ABCDEFGZ +Each line is a possible lp pattern organized by region/state and then likelihood. + +The parser goes through each line and tries to match +@ = any letter +# = any number +? = a skip position (can be anything, but remove it if encountered) +[A-FGZ] is just a single char position with specific letter requirements. In this example, the regex defines characters ABCDEFGZ diff --git a/src/android/assets/runtime_data/postprocess/sg.patterns b/src/android/assets/runtime_data/postprocess/sg.patterns index b9dab71..a4841f6 100644 --- a/src/android/assets/runtime_data/postprocess/sg.patterns +++ b/src/android/assets/runtime_data/postprocess/sg.patterns @@ -1 +1 @@ -sg @[A-HJ-NP-Z][A-HJ-NP-Z]####[A-EGHJ-MPR-UX-Z] +sg @[A-HJ-NP-Z][A-HJ-NP-Z]####[A-EGHJ-MPR-UX-Z] diff --git a/src/android/assets/runtime_data/postprocess/us.patterns b/src/android/assets/runtime_data/postprocess/us.patterns index 5da6e91..510a295 100644 --- a/src/android/assets/runtime_data/postprocess/us.patterns +++ b/src/android/assets/runtime_data/postprocess/us.patterns @@ -1,233 +1,234 @@ -base @@@#### -base @@@### -base ###@@@ -al #@@#### -al ##@@### -al #@##@## -al ##@##@# -al @@##### -al #####@@ -al #@####@ -al ##@###@ -al ##@#@#@ -ak @@@### -as #### -az @@@#### -az ###@@@ -ar ###@@@ -ar @@@### -ca #@@@### -ca #@@@### -ca #@##### -ca #####@# -ca ###@@@ -co ###@@@ -co @@#### -co @@@### -co @@@#### -ct #@@@@# -ct ###@@@ -ct ##### -ct ###### -ct @### -ct @@### -ct @@#### -de ###### -de ##### -de #### -de ### -dc @@#### -dc ###### -fl @@@@## -fl ####[GH]@ -fl ###[H-Y]@@ -fl @###@@ -fl @##@@@ -fl @###@@ -fl @@@@## -fl ####[GH]@ -fl ###[H-Y]@@ -fl @###@@ -fl @##@@@ -fl @###@@ -ga @@@#### -ga ####@@@ -ga ####@@ -ga #####[Q]@ -ga ###@@@ -gu @@#### -gu @@@#### -gu @@@###@ -hi [A-HJKNMPR-Z]@@### -id @###### -id #@##### -id #@@#### -id #@@@### -id [A]#####[T] -id [A]@####[T] -id #[A]####[T] -id #[A]@###[T] -id [BU]#### -id ####[BEFGHIJKLMNPRSTUXYZ] -id ##[S][A][S] -id #@@#[S] -id [J]@### -id #####[BCS] -id ###@[E] -id ##@@[E] -id ##### -il @###### -il ##### -il ###### -il @@#### -il @@@### -il @##### -il ####### -il ####@ -il #####@ -in ###@ -in ###@@ -in ###@@@ -in #### -ia @@@### -ia ###@@@ -ia ####@@ -ks ###@@@ -ks @@@### -ky ###@@@ -la @@@### -me ####@@ -me ###@@ -me ##@@ -me ###@@@ -ms @@@@@# -ms @@@### -ms ##[W]## -md #@@@## -md #[AB]#### -md @@@### -md [A]###### -md ##### -md ###[AB][A-N][A-MY] -md [AB][A-E][A-Y]##@ -md @##### -ma ###@@# -ma #@@### -ma #@@@## -ma ###### -ma ###@@@ -ma ####@@ -ma ##@@## -mi @@@#### -mi #@@@## -mn ###@@@ -mn @@@### -mo @@#@#@ -mo ###@@@ -mo #@@##@ -mt ######[A] -mt #####@ -mt ####@ -ne #@#### -ne #@@### -ne ##@### -ne ##@@## -nv ###@@@ -nv @##### -nv @@#### -nv @@@### -nh ###### -nh ####### -nh @@@### -nj @##@@@ -nj @@@##@ -nj @@###@ -nj @@@#### -nm @@@### -nm ###@@@ -nm @@@### -nm @@### -nm @### -ny @@@#### -ny @@@### -ny #@@### -ny @#@### -ny @###@@ -ny @@###@ -nc @@@#### -nd @@@### -mp @@@### -oh @@@#### -oh @@##@@ -ok ###@@@ -or ###@@@ -or @@@### -pa @@@#### -pr @@@### -ri @@### -ri ###### -ri ##### -sc @@@### -sc ####@@ -sd #@@### -sd ##@### -sd ##@@## -sd ##@@@# -tn ###@@@ -tx @@@#### -tx @##@@@ -tx ###@@@ -tx @@@### -tx @@#@### -ut @###@@ -ut ###@# -ut ###@@@ -ut @@@### -vt @@@### -vt ###@### -vt ##[B]## -vi @@@### -va @@@#### -va [J-Z]@@#### -va @@@### -va @@#### -va ####@@ -va #####[JY] -wa ###@@@ -wa @@@#### -wi ###@@@ -wi @@@### -wv [1-9DON]@@### -wv [1-9DON]@#### -wy ###### -wy ####### -wy ##### -wy ####@ -wy ###@@ -wy ##@@@ -ab @@@#### -ab @@@### -bc @@###@ -bc @@#### -bc @@@### -bc ####@@ -bc ###@@@ -mb @@@### -nl @@@### -ns @@@### -nt @@@### -nu [M][L][A]### -nu @@@### -on @@@@### -on @@##### -on [G][V]@@### -on @@@### -on ###@@@ -pe @@### -qc @##@@@ -qc ###@### -qc @@@### -qc ###@@@ -sk ###@@@ -sk @@@### -yt @@@## +base @@@#### +base @@@### +base ###@@@ +al #@@#### +al ##@@### +al #@##@## +al ##@##@# +al @@##### +al #####@@ +al #@####@ +al ##@###@ +al ##@#@#@ +ak @@@### +as #### +az @@@#### +az ###@@@ +ar ###@@@ +ar @@@### +ca #@@@### +ca #@@@### +ca #@##### +ca #####@# +ca ###@@@ +co ###@@@ +co @@#### +co @@@### +co @@@#### +ct #@@@@# +ct ###@@@ +ct ##### +ct ###### +ct @### +ct @@### +ct @@#### +de ###### +de ##### +de #### +de ### +dc @@#### +dc ###### +fl @@@@## +fl ####[GH]@ +fl ###[H-Y]@@ +fl @###@@ +fl @##@@@ +fl @###@@ +fl @@@@## +fl ####[GH]@ +fl ###[H-Y]@@ +fl @###@@ +fl @##@@@ +fl @###@@ +ga @@@#### +ga ####@@@ +ga ####@@ +ga #####[Q]@ +ga ###@@@ +gu @@#### +gu @@@#### +gu @@@###@ +hi [A-HJKNMPR-Z]@@### +id @###### +id #@##### +id #@@#### +id #@@@### +id [A]#####[T] +id [A]@####[T] +id #[A]####[T] +id #[A]@###[T] +id [BU]#### +id ####[BEFGHIJKLMNPRSTUXYZ] +id ##[S][A][S] +id #@@#[S] +id [J]@### +id #####[BCS] +id ###@[E] +id ##@@[E] +id ##### +il @###### +il ##### +il ###### +il @@#### +il @@@### +il @##### +il ####### +il ####@ +il #####@ +in ###@ +in ###@@ +in ###@@@ +in #### +ia @@@### +ia ###@@@ +ia ####@@ +ks ###@@@ +ks @@@### +ky ###@@@ +la @@@### +me ####@@ +me ###@@ +me ##@@ +me ###@@@ +ms @@@@@# +ms @@@### +ms ##[W]## +md #@@@## +md #[AB]#### +md @@@### +md [A]###### +md ##### +md ###[AB][A-N][A-MY] +md [AB][A-E][A-Y]##@ +md @##### +ma ###@@# +ma #@@### +ma #@@@## +ma ###### +ma ###@@@ +ma ####@@ +ma ##@@## +mi @@@#### +mi #@@@## +mn ###@@@ +mn @@@### +mo @@#@#@ +mo ###@@@ +mo #@@##@ +mt ######[A] +mt #####@ +mt ####@ +ne #@#### +ne #@@### +ne ##@### +ne ##@@## +nv ###@@@ +nv @##### +nv @@#### +nv @@@### +nh ###### +nh ####### +nh @@@### +nj @##@@@ +nj @@@##@ +nj @@###@ +nj @@@#### +nm @@@### +nm ###@@@ +nm @@@### +nm @@### +nm @### +ny @@@#### +ny @@@### +ny #@@### +ny @#@### +ny @###@@ +ny @@###@ +nc @@@#### +nd @@@### +mp @@@### +oh @@@#### +oh @@##@@ +ok ###@@@ +or ###@@@ +or @@@### +pa @@@#### +pr @@@### +ri @@### +ri ###### +ri ##### +sc @@@### +sc ####@@ +sd #@@### +sd ##@### +sd ##@@## +sd ##@@@# +tn ###@@@ +tx @@@#### +tx @##@@@ +tx ###@@@ +tx @@@### +tx @@#@### +ut @###@@ +ut ###@# +ut ###@@@ +ut @@@### +vt @@@### +vt ###@### +vt ##[B]## +vi @@@### +va @@@#### +va [J-Z]@@#### +va @@@### +va @@#### +va ####@@ +va #####[JY] +wa ###@@@ +wa @@@#### +wa @#####@ +wi ###@@@ +wi @@@### +wv [1-9DON]@@### +wv [1-9DON]@#### +wy ###### +wy ####### +wy ##### +wy ####@ +wy ###@@ +wy ##@@@ +ab @@@#### +ab @@@### +bc @@###@ +bc @@#### +bc @@@### +bc ####@@ +bc ###@@@ +mb @@@### +nl @@@### +ns @@@### +nt @@@### +nu [M][L][A]### +nu @@@### +on @@@@### +on @@##### +on [G][V]@@### +on @@@### +on ###@@@ +pe @@### +qc @##@@@ +qc ###@### +qc @@@### +qc ###@@@ +sk ###@@@ +sk @@@### +yt @@@## diff --git a/src/android/assets/runtime_data/region/au.xml b/src/android/assets/runtime_data/region/au.xml index 640ffba..e837c71 100644 --- a/src/android/assets/runtime_data/region/au.xml +++ b/src/android/assets/runtime_data/region/au.xml @@ -1,855 +1,855 @@ - - - - BOOST - LBP - 16 - 44 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 12 - - - <_> - 3 - -8.9822268486022949e-01 - - <_> - - 0 -1 49 -611788592 -573485032 -117253679 1594429461 - -1971287878 -22527862 -1979021157 -1626733427 - - -7.5738126039505005e-01 7.0481771230697632e-01 - <_> - - 0 -1 67 -6294750 -244874989 -2130526208 1938772839 - -148114893 268845060 855894827 1937767359 - - -8.3813470602035522e-01 5.8474522829055786e-01 - <_> - - 0 -1 11 -1677699056 -36618160 403725789 1595490577 - -1207940968 -7794569 -1911899905 -1154826022 - - -6.8870306015014648e-01 6.9729328155517578e-01 - - <_> - 5 - -1.1421134471893311e+00 - - <_> - - 0 -1 57 -1119506 -708121466 -612065092 -743202 -1193508626 - -23197524 -2118161 -2098177 - - -7.4267381429672241e-01 5.3053784370422363e-01 - <_> - - 0 -1 7 -1677572080 -1074181040 506615293 1597720656 - -1640363268 -1077966123 436928508 -1088695875 - - -7.4100035429000854e-01 4.8635581135749817e-01 - <_> - - 0 -1 23 -84414770 583066006 -931127296 575594756 54857728 - 23068739 1263612160 -134220801 - - -6.7841631174087524e-01 5.1256632804870605e-01 - <_> - - 0 -1 44 -787854184 -573318064 789683645 488446228 - -1155351302 -2439010 -1375170676 -552942435 - - -6.5471035242080688e-01 5.3409981727600098e-01 - <_> - - 0 -1 53 -800595898 -621366522 -620510633 -749743337 - -1034952182 -928062974 6801775 1074262595 - - -7.0143872499465942e-01 4.8587721586227417e-01 - - <_> - 5 - -9.6150821447372437e-01 - - <_> - - 0 -1 40 -541371172 -589667 1602442749 -43619 -124991250 - 2008760573 -123154482 -72627255 - - -6.7388784885406494e-01 5.1606619358062744e-01 - <_> - - 0 -1 8 -72646400 -80015225 394858760 -14727777 -1145332839 - -1145335621 992677307 -1077936129 - - -6.5934449434280396e-01 4.8057270050048828e-01 - <_> - - 0 -1 41 -1060918 -12000442 453118984 -549920786 1542418820 - 352678917 1610051308 -2098177 - - -6.0796922445297241e-01 5.1345926523208618e-01 - <_> - - 0 -1 34 -1749417744 1364332732 1493720573 1595610484 - -1700261638 1970278583 1040904142 -74943796 - - -6.7741453647613525e-01 4.4649848341941833e-01 - <_> - - 0 -1 24 -1089741678 -6597552 1090668753 -1626320880 - -548872518 -5633400 184583099 -636825123 - - -5.6575518846511841e-01 5.3567945957183838e-01 - - <_> - 6 - -1.7560020685195923e+00 - - <_> - - 0 -1 22 -167773201 -2360353 -541076993 -10289 -251920405 - 1082327050 -529793297 1083171531 - - -6.7891544103622437e-01 4.0690261125564575e-01 - <_> - - 0 -1 76 -2 998962142 -1148940788 1070267870 2035936504 - 958419688 1975383548 2147483647 - - -6.8827730417251587e-01 4.0660688281059265e-01 - <_> - - 0 -1 16 4276 1431657684 1035952127 1571231228 -1733272834 - -15402508 446622687 -1163383595 - - -7.0099341869354248e-01 4.0688174962997437e-01 - <_> - - 0 -1 61 1195896586 2145385823 -2129967732 1339936015 - 1338232714 1627381991 -82321841 2144329695 - - -6.2260180711746216e-01 4.3509158492088318e-01 - <_> - - 0 -1 26 -285737074 580841251 -2006785528 584047371 - 1502441728 577284943 2135905038 1677721599 - - -6.5793162584304810e-01 3.7901020050048828e-01 - <_> - - 0 -1 52 -676619022 -573206503 453763057 487281681 -276129030 - -5726556 -1970630945 -1742028395 - - -5.5209952592849731e-01 4.6138554811477661e-01 - - <_> - 7 - -1.2151374816894531e+00 - - <_> - - 0 -1 66 -85 -211815617 -268444926 -739289265 -134221270 - 1082119455 -208666710 1476395007 - - -7.2162574529647827e-01 3.6626848578453064e-01 - <_> - - 0 -1 1 -286265718 -999299098 -391593396 -523769430 - -404792576 1157058627 -244452604 -167772161 - - -6.0357534885406494e-01 4.5322033762931824e-01 - <_> - - 0 -1 60 -255793462 -70257709 -254351630 -70320397 1909288463 - -45121 -721424433 -754984085 - - -5.4790908098220825e-01 4.7318786382675171e-01 - <_> - - 0 -1 71 -33554436 -1812277562 2119891740 334164958 - 2147349968 287338979 1936016656 2139095039 - - -7.0448672771453857e-01 3.6576277017593384e-01 - <_> - - 0 -1 78 -828176 -604415011 -1717332707 463297429 -361047880 - -623162369 -1433736440 -1163985015 - - -5.1334244012832642e-01 5.0787007808685303e-01 - <_> - - 0 -1 83 -68161830 799997919 -1356582888 -1113522566 - 734945480 364392665 1400706424 -1 - - -5.3373581171035767e-01 4.6751043200492859e-01 - <_> - - 0 -1 20 -1103673124 -548322284 1074454045 1360249113 - 1310589182 1429537920 -1979578680 1932215757 - - -6.9125539064407349e-01 3.8719448447227478e-01 - - <_> - 7 - -1.3708573579788208e+00 - - <_> - - 0 -1 70 -524289 1431323989 -39460867 1437687765 -45228340 - 990927545 -270731060 -1 - - -5.7995080947875977e-01 4.9767187237739563e-01 - <_> - - 0 -1 9 655623184 -10511395 -4259843 -34268773 -540755556 - -1078503171 -604497410 -4583798 - - -6.1646574735641479e-01 3.9822673797607422e-01 - <_> - - 0 -1 48 -538188118 1608358907 1025101263 1604179967 - -597894689 224255963 1576926959 1574829791 - - -6.2925642728805542e-01 3.6492335796356201e-01 - <_> - - 0 -1 21 -939276798 -257753089 -489952064 -169349429 - 1858071503 -94705729 -213130489 1088938791 - - -6.5357398986816406e-01 3.3915162086486816e-01 - <_> - - 0 -1 19 -552936270 523391216 -100696577 -543732683 -11891462 - 523689429 -6100737 184703099 - - -6.0573673248291016e-01 3.5936927795410156e-01 - <_> - - 0 -1 28 -422589434 -423691488 -938504690 -490755185 - -318770933 1647010671 1467924480 1132459647 - - -6.4206576347351074e-01 3.4757497906684875e-01 - <_> - - 0 -1 69 -783944702 -214179085 1931721521 858993458 - -404040966 -17077 1668546218 -11028208 - - -5.5039256811141968e-01 3.7237152457237244e-01 - - <_> - 7 - -1.1579054594039917e+00 - - <_> - - 0 -1 13 -4272908 -571236 -1696923651 456132792 -83965188 - -12545 -1363481468 -318769923 - - -6.9065040349960327e-01 2.7564468979835510e-01 - <_> - - 0 -1 31 -581968114 -540299265 -1727069430 2142976778 - -287318193 -1055025 -22282321 -32965 - - -5.8724719285964966e-01 3.7282180786132812e-01 - <_> - - 0 -1 50 -6038341 -640165672 463208439 421485845 -269825286 - -33620748 -1708470305 -620048939 - - -4.1684821248054504e-01 5.3800636529922485e-01 - <_> - - 0 -1 3 -6430 -286266012 -287322898 -319895826 1606896711 - 1948587903 1467434225 -184549377 - - -5.9499925374984741e-01 3.7343171238899231e-01 - <_> - - 0 -1 75 -1071192570 1138221878 -46664013 2005367587 - -352330769 -97783513 -905969969 1075299911 - - -6.4896816015243530e-01 3.2506215572357178e-01 - <_> - - 0 -1 85 -7340034 -1549099046 843056536 1000387532 1341479372 - 730346793 2110204140 -68421681 - - -4.5823952555656433e-01 4.5764750242233276e-01 - <_> - - 0 -1 46 -402653794 -782245121 314947160 398323455 1436373236 - 293425369 372627928 1946156991 - - -5.9321647882461548e-01 3.5472938418388367e-01 - - <_> - 8 - -1.6782619953155518e+00 - - <_> - - 0 -1 10 873553151 2004180213 -2228225 -58913 -1125475105 - -983116 -1090846721 -1157632065 - - -5.4920834302902222e-01 4.2633989453315735e-01 - <_> - - 0 -1 80 -681844738 1056975922 561003192 2146500470 214478076 - 202376324 767075576 -131073 - - -5.7025521993637085e-01 3.7582042813301086e-01 - <_> - - 0 -1 55 -125150774 -8730 -545267713 -10494133 720038827 - 1610612715 -270345237 -344997758 - - -5.1887893676757812e-01 4.0973290801048279e-01 - <_> - - 0 -1 38 -584001028 489741808 -42207235 503252372 -1657349640 - -1723926019 -1680196609 153796781 - - -6.3692367076873779e-01 3.1177058815956116e-01 - <_> - - 0 -1 82 -286265654 547679875 -1400445950 -1059936821 - 930072066 1180585997 -258477310 1941960687 - - -6.5258508920669556e-01 3.1520101428031921e-01 - <_> - - 0 -1 30 -542221264 -64290 -115418115 -542109068 -1884628452 - -6644857 782818812 -1205688280 - - -5.6938469409942627e-01 3.5461488366127014e-01 - <_> - - 0 -1 18 -15734801 1032825246 -687726584 297774843 - -1498729557 66534254 1715609562 1946157055 - - -5.5432200431823730e-01 3.2321223616600037e-01 - <_> - - 0 -1 35 -1065096062 -84943881 -570294785 -1045448925 - -353914625 -128196145 -273751377 -2113150457 - - -4.6718406677246094e-01 4.1839256882667542e-01 - - <_> - 9 - -1.8586442470550537e+00 - - <_> - - 0 -1 62 -1039938489 -36489 -348127361 -513 -88084689 - -3411553 -285475073 -230950913 - - -5.2433896064758301e-01 4.3869677186012268e-01 - <_> - - 0 -1 47 -68160017 -67112461 -269750015 -1576601 -69209890 - 289042673 -271590433 2012741631 - - -5.0064951181411743e-01 4.2426300048828125e-01 - <_> - - 0 -1 74 -1 2003850580 -1108279300 389044597 2136800716 - 1027633524 517520350 -4194305 - - -4.2682534456253052e-01 4.7421252727508545e-01 - <_> - - 0 -1 58 -1213068112 -536915939 -1080057863 1595874817 - -433959436 -5054980 -341144337 -550875515 - - -5.4924941062927246e-01 3.6996433138847351e-01 - <_> - - 0 -1 17 -570425850 991534916 855818035 2063621960 1785546766 - 1062771928 -32834882 -11535521 - - -5.3338468074798584e-01 3.7742823362350464e-01 - <_> - - 0 -1 65 1755451637 -1953609758 -4228609 -37791274 - -1466384897 -1348535297 -1161896257 -1549632026 - - -4.7544640302658081e-01 3.8450938463211060e-01 - <_> - - 0 -1 6 -232593430 -1307839544 -1343531197 1094448996 - -90448405 -299175006 -348390929 1076097603 - - -6.0394722223281860e-01 3.0843117833137512e-01 - <_> - - 0 -1 29 -8394754 1073531900 196423260 755082090 2111333900 - 2034519740 836572127 -9 - - -4.8120620846748352e-01 3.7419813871383667e-01 - <_> - - 0 -1 25 -137374758 319557367 -568726642 64821167 861795555 - 14684406 -1354713171 464377851 - - -5.6392318010330200e-01 3.4628465771675110e-01 - - <_> - 9 - -1.1646637916564941e+00 - - <_> - - 0 -1 14 -1 -76292 -857749057 -593901347 -290799697 -1090401 - -1999699413 -1963987201 - - -5.4174631834030151e-01 3.7251868844032288e-01 - <_> - - 0 -1 64 -8705 -537207489 -4239937 -541254337 1531993580 - -4956764 -269291571 -12884219 - - -3.9605358242988586e-01 5.0030308961868286e-01 - <_> - - 0 -1 59 -1073495033 -76581641 -171966465 -8396801 -117455345 - -67108865 -1062207745 -803473873 - - -3.6505150794982910e-01 4.9429062008857727e-01 - <_> - - 0 -1 73 -514 1071182842 -269553700 196673532 -539004706 - 942702557 2138922334 2147483647 - - -5.8632147312164307e-01 2.8380626440048218e-01 - <_> - - 0 -1 42 -168165409 956350580 1433794553 335084340 - -1997487890 134781876 -841695318 226286586 - - -5.1184880733489990e-01 3.7335854768753052e-01 - <_> - - 0 -1 36 -8417330 -201338881 -1615940728 254748635 -54790209 - 348076479 638561215 2013248319 - - -5.6350380182266235e-01 2.8398692607879639e-01 - <_> - - 0 -1 81 -587260784 -576749575 -1669606123 453170521 - -83953252 -623125537 -90477824 -1706049971 - - -4.9625855684280396e-01 3.4869700670242310e-01 - <_> - - 0 -1 84 -9938 696398318 1070208736 967486022 670776829 - 434662137 872353116 1811674871 - - -5.8320373296737671e-01 2.6583945751190186e-01 - <_> - - 0 -1 5 -363141622 -239875254 -1432323398 464676619 - -656156600 -655048034 -391188993 -84412465 - - -5.2150756120681763e-01 3.4631469845771790e-01 - - <_> - 10 - -1.2043844461441040e+00 - - <_> - - 0 -1 43 -571488022 -570436133 -281030916 -583199483 - -641536514 -1615143425 -116326401 -550844145 - - -6.6361653804779053e-01 1.9604672491550446e-01 - <_> - - 0 -1 12 -262145 -705568772 -175415297 -178392083 -1437799681 - -1258629332 1000844015 21979147 - - -5.6519657373428345e-01 3.0456781387329102e-01 - <_> - - 0 -1 51 -1342172400 -191617 -643 -36603918 -91291650 - -17053217 -1577783044 -1260963209 - - -5.8604788780212402e-01 2.9618346691131592e-01 - <_> - - 0 -1 54 -806359297 -4121 -1513370873 736620259 196577104 - -405277098 -34120841 -1048973 - - -3.6587005853652954e-01 4.7734427452087402e-01 - <_> - - 0 -1 63 1967936212 -71692 -14222346 -1345844538 -11780 - -1077960993 -1615157796 791500233 - - -6.5954190492630005e-01 2.5595691800117493e-01 - <_> - - 0 -1 68 -531634558 865068942 -214445902 2138308467 81786719 - -5247442 -1057227777 1080554471 - - -5.7511496543884277e-01 2.8192704916000366e-01 - <_> - - 0 -1 4 -1042088222 -285753242 2012049383 -245161914 - -314395669 -213939586 621805471 1114071675 - - -6.1220860481262207e-01 2.3731665313243866e-01 - <_> - - 0 -1 56 -1443145485 1988102498 534740469 1327645410 - -342172998 -1145315953 2064154367 -232077321 - - -3.7831282615661621e-01 4.3669494986534119e-01 - <_> - - 0 -1 32 -10553354 1878801516 166209754 799550440 1033640828 - 757621993 206579948 1610612567 - - -5.7260602712631226e-01 2.6549491286277771e-01 - <_> - - 0 -1 2 -335546834 -552104052 -158802433 1929566028 180870239 - 1601293336 -366221073 -2892043 - - -4.6849688887596130e-01 3.5707718133926392e-01 - - <_> - 10 - -1.7368365526199341e+00 - - <_> - - 0 -1 72 -113 -817 -140552306 -3145873 1732237303 1981281703 - -134750257 -134217729 - - -5.4474252462387085e-01 3.1632161140441895e-01 - <_> - - 0 -1 39 -72655696 2013224444 -1111523331 1606092792 - -341115654 2146036667 -1129779250 -4456739 - - -5.3460186719894409e-01 3.2928371429443359e-01 - <_> - - 0 -1 0 -2097169 -825229530 -269562298 -831523257 -301990081 - 1082130175 1937224823 -134219785 - - -4.0298810601234436e-01 4.2096018791198730e-01 - <_> - - 0 -1 77 -30158608 -571467276 -1168352803 429370257 - -631056196 -16855555 719990476 -1968224636 - - -4.8689436912536621e-01 3.4727278351783752e-01 - <_> - - 0 -1 33 1433925623 354472528 1433785845 87126399 -570561537 - 186816912 1572383037 229432799 - - -5.1943379640579224e-01 3.3485844731330872e-01 - <_> - - 0 -1 27 -1112651588 -1109424130 1597931517 825755554 -90440 - -7087629 -553719032 -659554565 - - -5.0690883398056030e-01 3.0206778645515442e-01 - <_> - - 0 -1 45 -537308019 401852740 2137390506 1474785670 - 1724184559 1733253107 -119477265 1942486011 - - -4.7200435400009155e-01 3.4845206141471863e-01 - <_> - - 0 -1 15 -827403230 1380898820 -1171928688 1594721160 - 1794931804 142497885 -626327570 -88430851 - - -6.2450623512268066e-01 2.4470937252044678e-01 - <_> - - 0 -1 37 1998842498 -639640488 1392994901 1600123220 - -771092838 -51660481 176868063 -636760815 - - -4.9276769161224365e-01 3.0157554149627686e-01 - <_> - - 0 -1 79 -1060970492 -201327841 -1883509605 -2049 -941883442 - -90457258 1188654255 1096937603 - - -6.1707288026809692e-01 2.6061785221099854e-01 - - <_> - - 0 2 1 1 - <_> - - 0 2 1 3 - <_> - - 0 3 14 1 - <_> - - 0 5 2 3 - <_> - - 1 0 2 2 - <_> - - 1 8 12 1 - <_> - - 2 0 2 3 - <_> - - 2 0 9 1 - <_> - - 2 7 14 2 - <_> - - 3 0 3 1 - <_> - - 3 0 5 1 - <_> - - 3 0 9 1 - <_> - - 3 1 5 2 - <_> - - 3 1 9 1 - <_> - - 3 1 9 2 - <_> - - 3 4 11 1 - <_> - - 4 0 5 1 - <_> - - 4 3 13 1 - <_> - - 4 6 2 2 - <_> - - 4 13 7 1 - <_> - - 5 1 11 1 - <_> - - 6 0 1 3 - <_> - - 6 0 3 3 - <_> - - 6 6 1 3 - <_> - - 6 13 10 1 - <_> - - 7 1 3 5 - <_> - - 7 3 1 4 - <_> - - 8 1 6 1 - <_> - - 8 2 1 3 - <_> - - 8 7 1 3 - <_> - - 9 0 6 1 - <_> - - 9 2 11 4 - <_> - - 9 7 1 3 - <_> - - 9 10 5 2 - <_> - - 10 0 8 1 - <_> - - 11 0 1 2 - <_> - - 11 2 3 4 - <_> - - 11 12 10 1 - <_> - - 11 13 5 1 - <_> - - 12 0 7 1 - <_> - - 12 1 7 1 - <_> - - 12 4 2 4 - <_> - - 12 10 4 2 - <_> - - 12 12 7 1 - <_> - - 12 13 8 1 - <_> - - 13 2 6 1 - <_> - - 13 3 3 4 - <_> - - 13 4 6 3 - <_> - - 13 6 6 3 - <_> - - 13 13 8 1 - <_> - - 13 13 9 1 - <_> - - 14 0 2 1 - <_> - - 14 13 8 1 - <_> - - 15 0 2 3 - <_> - - 15 3 4 3 - <_> - - 16 0 4 2 - <_> - - 16 0 8 1 - <_> - - 17 7 3 3 - <_> - - 17 13 6 1 - <_> - - 18 0 1 2 - <_> - - 18 0 2 3 - <_> - - 18 1 3 4 - <_> - - 19 0 1 2 - <_> - - 20 1 1 5 - <_> - - 20 13 4 1 - <_> - - 21 0 3 1 - <_> - - 21 3 3 3 - <_> - - 21 4 3 3 - <_> - - 23 0 2 3 - <_> - - 23 0 4 3 - <_> - - 23 10 2 2 - <_> - - 24 4 2 4 - <_> - - 24 6 3 2 - <_> - - 24 7 2 3 - <_> - - 24 10 2 2 - <_> - - 25 0 2 3 - <_> - - 26 7 2 3 - <_> - - 26 13 5 1 - <_> - - 26 13 6 1 - <_> - - 27 0 2 3 - <_> - - 27 10 2 2 - <_> - - 29 13 5 1 - <_> - - 30 5 1 2 - <_> - - 30 7 1 3 - <_> - - 34 7 1 3 - <_> - - 35 7 1 3 - + + + + BOOST + LBP + 16 + 44 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 12 + + + <_> + 3 + -8.9822268486022949e-01 + + <_> + + 0 -1 49 -611788592 -573485032 -117253679 1594429461 + -1971287878 -22527862 -1979021157 -1626733427 + + -7.5738126039505005e-01 7.0481771230697632e-01 + <_> + + 0 -1 67 -6294750 -244874989 -2130526208 1938772839 + -148114893 268845060 855894827 1937767359 + + -8.3813470602035522e-01 5.8474522829055786e-01 + <_> + + 0 -1 11 -1677699056 -36618160 403725789 1595490577 + -1207940968 -7794569 -1911899905 -1154826022 + + -6.8870306015014648e-01 6.9729328155517578e-01 + + <_> + 5 + -1.1421134471893311e+00 + + <_> + + 0 -1 57 -1119506 -708121466 -612065092 -743202 -1193508626 + -23197524 -2118161 -2098177 + + -7.4267381429672241e-01 5.3053784370422363e-01 + <_> + + 0 -1 7 -1677572080 -1074181040 506615293 1597720656 + -1640363268 -1077966123 436928508 -1088695875 + + -7.4100035429000854e-01 4.8635581135749817e-01 + <_> + + 0 -1 23 -84414770 583066006 -931127296 575594756 54857728 + 23068739 1263612160 -134220801 + + -6.7841631174087524e-01 5.1256632804870605e-01 + <_> + + 0 -1 44 -787854184 -573318064 789683645 488446228 + -1155351302 -2439010 -1375170676 -552942435 + + -6.5471035242080688e-01 5.3409981727600098e-01 + <_> + + 0 -1 53 -800595898 -621366522 -620510633 -749743337 + -1034952182 -928062974 6801775 1074262595 + + -7.0143872499465942e-01 4.8587721586227417e-01 + + <_> + 5 + -9.6150821447372437e-01 + + <_> + + 0 -1 40 -541371172 -589667 1602442749 -43619 -124991250 + 2008760573 -123154482 -72627255 + + -6.7388784885406494e-01 5.1606619358062744e-01 + <_> + + 0 -1 8 -72646400 -80015225 394858760 -14727777 -1145332839 + -1145335621 992677307 -1077936129 + + -6.5934449434280396e-01 4.8057270050048828e-01 + <_> + + 0 -1 41 -1060918 -12000442 453118984 -549920786 1542418820 + 352678917 1610051308 -2098177 + + -6.0796922445297241e-01 5.1345926523208618e-01 + <_> + + 0 -1 34 -1749417744 1364332732 1493720573 1595610484 + -1700261638 1970278583 1040904142 -74943796 + + -6.7741453647613525e-01 4.4649848341941833e-01 + <_> + + 0 -1 24 -1089741678 -6597552 1090668753 -1626320880 + -548872518 -5633400 184583099 -636825123 + + -5.6575518846511841e-01 5.3567945957183838e-01 + + <_> + 6 + -1.7560020685195923e+00 + + <_> + + 0 -1 22 -167773201 -2360353 -541076993 -10289 -251920405 + 1082327050 -529793297 1083171531 + + -6.7891544103622437e-01 4.0690261125564575e-01 + <_> + + 0 -1 76 -2 998962142 -1148940788 1070267870 2035936504 + 958419688 1975383548 2147483647 + + -6.8827730417251587e-01 4.0660688281059265e-01 + <_> + + 0 -1 16 4276 1431657684 1035952127 1571231228 -1733272834 + -15402508 446622687 -1163383595 + + -7.0099341869354248e-01 4.0688174962997437e-01 + <_> + + 0 -1 61 1195896586 2145385823 -2129967732 1339936015 + 1338232714 1627381991 -82321841 2144329695 + + -6.2260180711746216e-01 4.3509158492088318e-01 + <_> + + 0 -1 26 -285737074 580841251 -2006785528 584047371 + 1502441728 577284943 2135905038 1677721599 + + -6.5793162584304810e-01 3.7901020050048828e-01 + <_> + + 0 -1 52 -676619022 -573206503 453763057 487281681 -276129030 + -5726556 -1970630945 -1742028395 + + -5.5209952592849731e-01 4.6138554811477661e-01 + + <_> + 7 + -1.2151374816894531e+00 + + <_> + + 0 -1 66 -85 -211815617 -268444926 -739289265 -134221270 + 1082119455 -208666710 1476395007 + + -7.2162574529647827e-01 3.6626848578453064e-01 + <_> + + 0 -1 1 -286265718 -999299098 -391593396 -523769430 + -404792576 1157058627 -244452604 -167772161 + + -6.0357534885406494e-01 4.5322033762931824e-01 + <_> + + 0 -1 60 -255793462 -70257709 -254351630 -70320397 1909288463 + -45121 -721424433 -754984085 + + -5.4790908098220825e-01 4.7318786382675171e-01 + <_> + + 0 -1 71 -33554436 -1812277562 2119891740 334164958 + 2147349968 287338979 1936016656 2139095039 + + -7.0448672771453857e-01 3.6576277017593384e-01 + <_> + + 0 -1 78 -828176 -604415011 -1717332707 463297429 -361047880 + -623162369 -1433736440 -1163985015 + + -5.1334244012832642e-01 5.0787007808685303e-01 + <_> + + 0 -1 83 -68161830 799997919 -1356582888 -1113522566 + 734945480 364392665 1400706424 -1 + + -5.3373581171035767e-01 4.6751043200492859e-01 + <_> + + 0 -1 20 -1103673124 -548322284 1074454045 1360249113 + 1310589182 1429537920 -1979578680 1932215757 + + -6.9125539064407349e-01 3.8719448447227478e-01 + + <_> + 7 + -1.3708573579788208e+00 + + <_> + + 0 -1 70 -524289 1431323989 -39460867 1437687765 -45228340 + 990927545 -270731060 -1 + + -5.7995080947875977e-01 4.9767187237739563e-01 + <_> + + 0 -1 9 655623184 -10511395 -4259843 -34268773 -540755556 + -1078503171 -604497410 -4583798 + + -6.1646574735641479e-01 3.9822673797607422e-01 + <_> + + 0 -1 48 -538188118 1608358907 1025101263 1604179967 + -597894689 224255963 1576926959 1574829791 + + -6.2925642728805542e-01 3.6492335796356201e-01 + <_> + + 0 -1 21 -939276798 -257753089 -489952064 -169349429 + 1858071503 -94705729 -213130489 1088938791 + + -6.5357398986816406e-01 3.3915162086486816e-01 + <_> + + 0 -1 19 -552936270 523391216 -100696577 -543732683 -11891462 + 523689429 -6100737 184703099 + + -6.0573673248291016e-01 3.5936927795410156e-01 + <_> + + 0 -1 28 -422589434 -423691488 -938504690 -490755185 + -318770933 1647010671 1467924480 1132459647 + + -6.4206576347351074e-01 3.4757497906684875e-01 + <_> + + 0 -1 69 -783944702 -214179085 1931721521 858993458 + -404040966 -17077 1668546218 -11028208 + + -5.5039256811141968e-01 3.7237152457237244e-01 + + <_> + 7 + -1.1579054594039917e+00 + + <_> + + 0 -1 13 -4272908 -571236 -1696923651 456132792 -83965188 + -12545 -1363481468 -318769923 + + -6.9065040349960327e-01 2.7564468979835510e-01 + <_> + + 0 -1 31 -581968114 -540299265 -1727069430 2142976778 + -287318193 -1055025 -22282321 -32965 + + -5.8724719285964966e-01 3.7282180786132812e-01 + <_> + + 0 -1 50 -6038341 -640165672 463208439 421485845 -269825286 + -33620748 -1708470305 -620048939 + + -4.1684821248054504e-01 5.3800636529922485e-01 + <_> + + 0 -1 3 -6430 -286266012 -287322898 -319895826 1606896711 + 1948587903 1467434225 -184549377 + + -5.9499925374984741e-01 3.7343171238899231e-01 + <_> + + 0 -1 75 -1071192570 1138221878 -46664013 2005367587 + -352330769 -97783513 -905969969 1075299911 + + -6.4896816015243530e-01 3.2506215572357178e-01 + <_> + + 0 -1 85 -7340034 -1549099046 843056536 1000387532 1341479372 + 730346793 2110204140 -68421681 + + -4.5823952555656433e-01 4.5764750242233276e-01 + <_> + + 0 -1 46 -402653794 -782245121 314947160 398323455 1436373236 + 293425369 372627928 1946156991 + + -5.9321647882461548e-01 3.5472938418388367e-01 + + <_> + 8 + -1.6782619953155518e+00 + + <_> + + 0 -1 10 873553151 2004180213 -2228225 -58913 -1125475105 + -983116 -1090846721 -1157632065 + + -5.4920834302902222e-01 4.2633989453315735e-01 + <_> + + 0 -1 80 -681844738 1056975922 561003192 2146500470 214478076 + 202376324 767075576 -131073 + + -5.7025521993637085e-01 3.7582042813301086e-01 + <_> + + 0 -1 55 -125150774 -8730 -545267713 -10494133 720038827 + 1610612715 -270345237 -344997758 + + -5.1887893676757812e-01 4.0973290801048279e-01 + <_> + + 0 -1 38 -584001028 489741808 -42207235 503252372 -1657349640 + -1723926019 -1680196609 153796781 + + -6.3692367076873779e-01 3.1177058815956116e-01 + <_> + + 0 -1 82 -286265654 547679875 -1400445950 -1059936821 + 930072066 1180585997 -258477310 1941960687 + + -6.5258508920669556e-01 3.1520101428031921e-01 + <_> + + 0 -1 30 -542221264 -64290 -115418115 -542109068 -1884628452 + -6644857 782818812 -1205688280 + + -5.6938469409942627e-01 3.5461488366127014e-01 + <_> + + 0 -1 18 -15734801 1032825246 -687726584 297774843 + -1498729557 66534254 1715609562 1946157055 + + -5.5432200431823730e-01 3.2321223616600037e-01 + <_> + + 0 -1 35 -1065096062 -84943881 -570294785 -1045448925 + -353914625 -128196145 -273751377 -2113150457 + + -4.6718406677246094e-01 4.1839256882667542e-01 + + <_> + 9 + -1.8586442470550537e+00 + + <_> + + 0 -1 62 -1039938489 -36489 -348127361 -513 -88084689 + -3411553 -285475073 -230950913 + + -5.2433896064758301e-01 4.3869677186012268e-01 + <_> + + 0 -1 47 -68160017 -67112461 -269750015 -1576601 -69209890 + 289042673 -271590433 2012741631 + + -5.0064951181411743e-01 4.2426300048828125e-01 + <_> + + 0 -1 74 -1 2003850580 -1108279300 389044597 2136800716 + 1027633524 517520350 -4194305 + + -4.2682534456253052e-01 4.7421252727508545e-01 + <_> + + 0 -1 58 -1213068112 -536915939 -1080057863 1595874817 + -433959436 -5054980 -341144337 -550875515 + + -5.4924941062927246e-01 3.6996433138847351e-01 + <_> + + 0 -1 17 -570425850 991534916 855818035 2063621960 1785546766 + 1062771928 -32834882 -11535521 + + -5.3338468074798584e-01 3.7742823362350464e-01 + <_> + + 0 -1 65 1755451637 -1953609758 -4228609 -37791274 + -1466384897 -1348535297 -1161896257 -1549632026 + + -4.7544640302658081e-01 3.8450938463211060e-01 + <_> + + 0 -1 6 -232593430 -1307839544 -1343531197 1094448996 + -90448405 -299175006 -348390929 1076097603 + + -6.0394722223281860e-01 3.0843117833137512e-01 + <_> + + 0 -1 29 -8394754 1073531900 196423260 755082090 2111333900 + 2034519740 836572127 -9 + + -4.8120620846748352e-01 3.7419813871383667e-01 + <_> + + 0 -1 25 -137374758 319557367 -568726642 64821167 861795555 + 14684406 -1354713171 464377851 + + -5.6392318010330200e-01 3.4628465771675110e-01 + + <_> + 9 + -1.1646637916564941e+00 + + <_> + + 0 -1 14 -1 -76292 -857749057 -593901347 -290799697 -1090401 + -1999699413 -1963987201 + + -5.4174631834030151e-01 3.7251868844032288e-01 + <_> + + 0 -1 64 -8705 -537207489 -4239937 -541254337 1531993580 + -4956764 -269291571 -12884219 + + -3.9605358242988586e-01 5.0030308961868286e-01 + <_> + + 0 -1 59 -1073495033 -76581641 -171966465 -8396801 -117455345 + -67108865 -1062207745 -803473873 + + -3.6505150794982910e-01 4.9429062008857727e-01 + <_> + + 0 -1 73 -514 1071182842 -269553700 196673532 -539004706 + 942702557 2138922334 2147483647 + + -5.8632147312164307e-01 2.8380626440048218e-01 + <_> + + 0 -1 42 -168165409 956350580 1433794553 335084340 + -1997487890 134781876 -841695318 226286586 + + -5.1184880733489990e-01 3.7335854768753052e-01 + <_> + + 0 -1 36 -8417330 -201338881 -1615940728 254748635 -54790209 + 348076479 638561215 2013248319 + + -5.6350380182266235e-01 2.8398692607879639e-01 + <_> + + 0 -1 81 -587260784 -576749575 -1669606123 453170521 + -83953252 -623125537 -90477824 -1706049971 + + -4.9625855684280396e-01 3.4869700670242310e-01 + <_> + + 0 -1 84 -9938 696398318 1070208736 967486022 670776829 + 434662137 872353116 1811674871 + + -5.8320373296737671e-01 2.6583945751190186e-01 + <_> + + 0 -1 5 -363141622 -239875254 -1432323398 464676619 + -656156600 -655048034 -391188993 -84412465 + + -5.2150756120681763e-01 3.4631469845771790e-01 + + <_> + 10 + -1.2043844461441040e+00 + + <_> + + 0 -1 43 -571488022 -570436133 -281030916 -583199483 + -641536514 -1615143425 -116326401 -550844145 + + -6.6361653804779053e-01 1.9604672491550446e-01 + <_> + + 0 -1 12 -262145 -705568772 -175415297 -178392083 -1437799681 + -1258629332 1000844015 21979147 + + -5.6519657373428345e-01 3.0456781387329102e-01 + <_> + + 0 -1 51 -1342172400 -191617 -643 -36603918 -91291650 + -17053217 -1577783044 -1260963209 + + -5.8604788780212402e-01 2.9618346691131592e-01 + <_> + + 0 -1 54 -806359297 -4121 -1513370873 736620259 196577104 + -405277098 -34120841 -1048973 + + -3.6587005853652954e-01 4.7734427452087402e-01 + <_> + + 0 -1 63 1967936212 -71692 -14222346 -1345844538 -11780 + -1077960993 -1615157796 791500233 + + -6.5954190492630005e-01 2.5595691800117493e-01 + <_> + + 0 -1 68 -531634558 865068942 -214445902 2138308467 81786719 + -5247442 -1057227777 1080554471 + + -5.7511496543884277e-01 2.8192704916000366e-01 + <_> + + 0 -1 4 -1042088222 -285753242 2012049383 -245161914 + -314395669 -213939586 621805471 1114071675 + + -6.1220860481262207e-01 2.3731665313243866e-01 + <_> + + 0 -1 56 -1443145485 1988102498 534740469 1327645410 + -342172998 -1145315953 2064154367 -232077321 + + -3.7831282615661621e-01 4.3669494986534119e-01 + <_> + + 0 -1 32 -10553354 1878801516 166209754 799550440 1033640828 + 757621993 206579948 1610612567 + + -5.7260602712631226e-01 2.6549491286277771e-01 + <_> + + 0 -1 2 -335546834 -552104052 -158802433 1929566028 180870239 + 1601293336 -366221073 -2892043 + + -4.6849688887596130e-01 3.5707718133926392e-01 + + <_> + 10 + -1.7368365526199341e+00 + + <_> + + 0 -1 72 -113 -817 -140552306 -3145873 1732237303 1981281703 + -134750257 -134217729 + + -5.4474252462387085e-01 3.1632161140441895e-01 + <_> + + 0 -1 39 -72655696 2013224444 -1111523331 1606092792 + -341115654 2146036667 -1129779250 -4456739 + + -5.3460186719894409e-01 3.2928371429443359e-01 + <_> + + 0 -1 0 -2097169 -825229530 -269562298 -831523257 -301990081 + 1082130175 1937224823 -134219785 + + -4.0298810601234436e-01 4.2096018791198730e-01 + <_> + + 0 -1 77 -30158608 -571467276 -1168352803 429370257 + -631056196 -16855555 719990476 -1968224636 + + -4.8689436912536621e-01 3.4727278351783752e-01 + <_> + + 0 -1 33 1433925623 354472528 1433785845 87126399 -570561537 + 186816912 1572383037 229432799 + + -5.1943379640579224e-01 3.3485844731330872e-01 + <_> + + 0 -1 27 -1112651588 -1109424130 1597931517 825755554 -90440 + -7087629 -553719032 -659554565 + + -5.0690883398056030e-01 3.0206778645515442e-01 + <_> + + 0 -1 45 -537308019 401852740 2137390506 1474785670 + 1724184559 1733253107 -119477265 1942486011 + + -4.7200435400009155e-01 3.4845206141471863e-01 + <_> + + 0 -1 15 -827403230 1380898820 -1171928688 1594721160 + 1794931804 142497885 -626327570 -88430851 + + -6.2450623512268066e-01 2.4470937252044678e-01 + <_> + + 0 -1 37 1998842498 -639640488 1392994901 1600123220 + -771092838 -51660481 176868063 -636760815 + + -4.9276769161224365e-01 3.0157554149627686e-01 + <_> + + 0 -1 79 -1060970492 -201327841 -1883509605 -2049 -941883442 + -90457258 1188654255 1096937603 + + -6.1707288026809692e-01 2.6061785221099854e-01 + + <_> + + 0 2 1 1 + <_> + + 0 2 1 3 + <_> + + 0 3 14 1 + <_> + + 0 5 2 3 + <_> + + 1 0 2 2 + <_> + + 1 8 12 1 + <_> + + 2 0 2 3 + <_> + + 2 0 9 1 + <_> + + 2 7 14 2 + <_> + + 3 0 3 1 + <_> + + 3 0 5 1 + <_> + + 3 0 9 1 + <_> + + 3 1 5 2 + <_> + + 3 1 9 1 + <_> + + 3 1 9 2 + <_> + + 3 4 11 1 + <_> + + 4 0 5 1 + <_> + + 4 3 13 1 + <_> + + 4 6 2 2 + <_> + + 4 13 7 1 + <_> + + 5 1 11 1 + <_> + + 6 0 1 3 + <_> + + 6 0 3 3 + <_> + + 6 6 1 3 + <_> + + 6 13 10 1 + <_> + + 7 1 3 5 + <_> + + 7 3 1 4 + <_> + + 8 1 6 1 + <_> + + 8 2 1 3 + <_> + + 8 7 1 3 + <_> + + 9 0 6 1 + <_> + + 9 2 11 4 + <_> + + 9 7 1 3 + <_> + + 9 10 5 2 + <_> + + 10 0 8 1 + <_> + + 11 0 1 2 + <_> + + 11 2 3 4 + <_> + + 11 12 10 1 + <_> + + 11 13 5 1 + <_> + + 12 0 7 1 + <_> + + 12 1 7 1 + <_> + + 12 4 2 4 + <_> + + 12 10 4 2 + <_> + + 12 12 7 1 + <_> + + 12 13 8 1 + <_> + + 13 2 6 1 + <_> + + 13 3 3 4 + <_> + + 13 4 6 3 + <_> + + 13 6 6 3 + <_> + + 13 13 8 1 + <_> + + 13 13 9 1 + <_> + + 14 0 2 1 + <_> + + 14 13 8 1 + <_> + + 15 0 2 3 + <_> + + 15 3 4 3 + <_> + + 16 0 4 2 + <_> + + 16 0 8 1 + <_> + + 17 7 3 3 + <_> + + 17 13 6 1 + <_> + + 18 0 1 2 + <_> + + 18 0 2 3 + <_> + + 18 1 3 4 + <_> + + 19 0 1 2 + <_> + + 20 1 1 5 + <_> + + 20 13 4 1 + <_> + + 21 0 3 1 + <_> + + 21 3 3 3 + <_> + + 21 4 3 3 + <_> + + 23 0 2 3 + <_> + + 23 0 4 3 + <_> + + 23 10 2 2 + <_> + + 24 4 2 4 + <_> + + 24 6 3 2 + <_> + + 24 7 2 3 + <_> + + 24 10 2 2 + <_> + + 25 0 2 3 + <_> + + 26 7 2 3 + <_> + + 26 13 5 1 + <_> + + 26 13 6 1 + <_> + + 27 0 2 3 + <_> + + 27 10 2 2 + <_> + + 29 13 5 1 + <_> + + 30 5 1 2 + <_> + + 30 7 1 3 + <_> + + 34 7 1 3 + <_> + + 35 7 1 3 + diff --git a/src/android/assets/runtime_data/region/br.xml b/src/android/assets/runtime_data/region/br.xml index e3cd367..0bc30c5 100644 --- a/src/android/assets/runtime_data/region/br.xml +++ b/src/android/assets/runtime_data/region/br.xml @@ -3,8 +3,8 @@ BOOST LBP - 14 - 42 + 13 + 40 GAB 9.9500000476837158e-001 @@ -15,769 +15,1843 @@ 256 1 - 12 + 18 <_> - 3 - -8.2853245735168457e-001 + 5 + -2.2059321403503418e+000 <_> - 0 -1 37 285216984 -583724588 1359073759 -585301731 - -1207919366 -4685672 -1744271105 -1693972344 + 0 -1 85 1561351388 -33728004 -537332225 -2158083 -1665606402 + -4261126 -1197948929 -1079371380 - -8.2473558187484741e-001 7.9090112447738647e-001 + -8.2558047771453857e-001 6.4892250299453735e-001 <_> - 0 -1 23 269504592 -707788396 419500415 2132086785 - -2138529618 -1164967776 402655407 -1960181752 + 0 -1 28 352326908 -4710940 -1124549123 -1076226996 + -1095180802 -500483 -1145372673 -1146483474 - -7.4675083160400391e-001 7.1070402860641479e-001 + -7.1161091327667236e-001 5.5507826805114746e-001 <_> - 0 -1 39 -202378098 -251670049 -1903268086 -537928017 - -1263013447 -252423748 -272171121 -572523877 + 0 -1 98 -167907442 -235088961 -1355896056 -135296089 + -174864474 1880437965 -150302833 -138416145 - -6.7105877399444580e-001 7.4295401573181152e-001 + -5.3800177574157715e-001 6.7141634225845337e-001 + <_> + + 0 -1 104 268439888 -36363 -8929293 -33606147 -1229389829 + -99457 -1078018305 -1078459992 + + -6.3097971677780151e-001 5.5359894037246704e-001 + <_> + + 0 -1 5 -422582750 720301799 -219155866 -1494224282 + 1173844807 1157620175 1977996615 1206117703 + + -7.0917737483978271e-001 4.5936250686645508e-001 <_> - 3 - -8.1748569011688232e-001 + 6 + -1.4644955396652222e+000 <_> - 0 -1 17 287364601 -584025864 -720897 -537571911 -1117732865 - -1073948680 1069072383 -1081602328 + 0 -1 62 1433460221 -34244611 -2228225 -163843 -196609 + -475137 -196609 -1078326017 + + -7.1215671300888062e-001 6.8203002214431763e-001 + <_> + + 0 -1 96 286266869 -174593 -1 -188417 -1092813057 -131073 + -1145372673 -1078448707 + + -5.9869700670242310e-001 6.2674057483673096e-001 + <_> + + 0 -1 16 -285217042 -420492305 -286331358 -285282326 + 2147448679 1190622199 -2239 -134217729 - -7.6333057880401611e-001 8.1242781877517700e-001 + -5.8786678314208984e-001 5.7215690612792969e-001 <_> - 0 -1 31 -203434240 -2121399 352571791 -134749749 -3556389 - -360480633 -1198814209 13625999 + 0 -1 115 2108710352 -426529 -2490881 -2155075 -1078436612 + -268566531 -1611072513 -1078457928 - -7.8441995382308960e-001 6.5391725301742554e-001 + -5.9803569316864014e-001 5.3530043363571167e-001 <_> - 0 -1 15 285250768 -1657798636 152180093 420675585 - -1207926532 -8257400 419960987 -1148256087 + 0 -1 135 -529537534 -1062210289 -488375578 -490738757 + -85202330 -616569597 -228076761 1076356515 - -6.5546298027038574e-001 7.3026490211486816e-001 + -6.1870849132537842e-001 4.6477171778678894e-001 + <_> + + 0 -1 34 201326796 -6270248 608447869 936445547 -802109188 + -53425956 -90644481 -553123441 + + -5.5705696344375610e-001 5.1763296127319336e-001 <_> 6 - -1.3338762521743774e+000 + -1.5516430139541626e+000 <_> - 0 -1 16 -581922373 -572703591 1025064957 -42623043 - -587923713 -204836 -1646481409 -1651654770 + 0 -1 100 -1048593 -100663297 -810569841 -536870929 -524289 + -239077889 -2097201 -1 - -6.9488149881362915e-001 7.8489482402801514e-001 + -6.5842545032501221e-001 7.5478929281234741e-001 <_> - 0 -1 39 -100663297 -201985617 -7361009 -67108881 -138543185 - 1106571701 -11538609 -134221109 + 0 -1 27 -571417092 -237571 -459265 -1076347716 -1108803585 + -206339 -1141317633 -1078326086 - -5.4936617612838745e-001 8.1860017776489258e-001 + -5.9410470724105835e-001 5.8537662029266357e-001 <_> - 0 -1 54 356516348 1431327064 337204735 2138898649 - -2004301634 -1081597799 218630399 -1196418592 + 0 -1 181 -246 -391127314 -30410240 -1023410257 -37748973 + 16252399 -256 -134217729 - -7.7375411987304688e-001 5.7966601848602295e-001 + -5.4639428853988647e-001 6.0828882455825806e-001 <_> - 0 -1 55 -200875316 -209338238 139778 -249847670 -1269438517 - 8659008 -1572371798 -213966709 + 0 -1 125 268440784 -164364 -3 -4227331 -1079328773 -71434242 + -1095303169 -1147660232 - -6.1659812927246094e-001 6.5415656566619873e-001 + -6.3400131464004517e-001 4.2709890007972717e-001 <_> - 0 -1 10 -6450 -122097666 -553865708 951648254 1878088704 - 1291608053 2147118876 -1 + 0 -1 10 -420483546 -487658770 -291508702 -865145654 + 1392473157 854979431 2146957172 -219154457 - -5.5839419364929199e-001 6.7460024356842041e-001 + -5.6688904762268066e-001 5.2953493595123291e-001 <_> - 0 -1 59 -229644094 -740913019 402653736 1595499402 - 1629027160 537135104 -339090710 1376477103 + 0 -1 81 766019832 -12821008 1069201919 2142910973 + -1346699525 -1075175559 -1074610193 715787336 - -6.9653308391571045e-001 5.0569772720336914e-001 + -6.8458378314971924e-001 3.8707160949707031e-001 <_> 6 - -1.3329070806503296e+000 + -1.4123144149780273e+000 + + <_> + + 0 -1 113 -1048661 -754990401 1258621185 -806368625 -3934301 + 1883762871 -83373301 -1 + + -7.1403747797012329e-001 6.2246745824813843e-001 + <_> + + 0 -1 174 -487595262 -1026893077 -838025174 -491786354 + -478153978 34361967 -362025470 -1029963797 + + -6.1794960498809814e-001 5.5281740427017212e-001 + <_> + + 0 -1 128 1498471932 1574248413 -143363 -33539 -1921458756 + -1078190083 -21053512 -1079296256 + + -5.1443111896514893e-001 5.5010509490966797e-001 + <_> + + 0 -1 91 -276828658 -493885850 -957701632 -252974354 + -135314430 24343879 -214968830 -205522945 + + -4.8749122023582458e-001 5.7354146242141724e-001 + <_> + + 0 -1 83 268439704 -38334246 2010460639 -541115685 + -1165837585 -1080047400 747680443 436797608 + + -5.9777128696441650e-001 4.3888664245605469e-001 + <_> + + 0 -1 149 -1033387518 -516972413 1083175434 -152317497 + -525932885 1852809762 -502881233 1073997323 + + -5.4353684186935425e-001 4.8270839452743530e-001 + + <_> + 8 + -2.0970504283905029e+000 + + <_> + + 0 -1 100 -1 -71304193 -15741041 -1048577 -5 -235145217 + -545259617 -1 + + -6.0631048679351807e-001 7.2640037536621094e-001 + <_> + + 0 -1 182 -5243222 -2036154710 -810419072 -1347485790 + -4457040 128253886 -4048 -1048581 + + -5.1800543069839478e-001 5.6827902793884277e-001 + <_> + + 0 -1 68 452989072 -541254319 487330585 1065164701 + -1747411206 -1074525700 456661951 530128184 + + -6.0343402624130249e-001 4.6828967332839966e-001 + <_> + + 0 -1 42 -521935358 15192806 -283519958 -1695547698 + -1034950969 -2135047505 -999820989 -1023948985 + + -5.7293874025344849e-001 4.5507067441940308e-001 + <_> + + 0 -1 57 1102885560 1572117968 420423995 1608190903 451865339 + -1672431883 302713771 524222473 + + -4.8377829790115356e-001 5.2814304828643799e-001 + <_> + + 0 -1 89 -520101374 -143932414 -416306389 -210508026 + -428345878 1802363906 -671090769 -1034427901 + + -4.4041708111763000e-001 5.5660778284072876e-001 + <_> + + 0 -1 122 -1653287463 -131075 1442594813 -35709443 + -1078416135 -1080050451 -558301185 -1078326987 + + -4.2181575298309326e-001 5.8730918169021606e-001 + <_> + + 0 -1 167 -291314688 -460397696 -292673024 -488053018 + -674766528 1180517 -214699518 -205525009 + + -5.3458100557327271e-001 4.6336498856544495e-001 + + <_> + 8 + -1.4894635677337646e+000 + + <_> + + 0 -1 59 -784271363 -2171683 -6848513 -6353009 -215942146 + -1528084 -1416982593 -1358297078 + + -6.4323192834854126e-001 5.5662912130355835e-001 + <_> + + 0 -1 152 -6 -1146568712 -1619482440 -1088931592 -4653060 + 822088156 1073004476 -4194305 + + -5.0202572345733643e-001 5.4142653942108154e-001 + <_> + + 0 -1 147 75497968 -194691 -133121 -53539 -1078280449 -1 + -275058689 -1346690897 + + -5.0791001319885254e-001 5.0952428579330444e-001 + <_> + + 0 -1 17 -332150 -17498377 -824539510 -83956002 1399937796 + 1090839597 -145663988 -201326593 + + -5.0033283233642578e-001 4.8059618473052979e-001 + <_> + + 0 -1 55 488639640 -576902168 492572159 -1111670851 + -547865091 -4710404 800604063 -1358414403 + + -6.0949635505676270e-001 3.9852270483970642e-001 + <_> + + 0 -1 158 -940838878 -1028469592 -1668767744 11453452 + 1694553360 3183363 1259635074 2009071375 + + -6.0897284746170044e-001 3.6162802577018738e-001 + <_> + + 0 -1 47 -352656442 82488494 -1460764502 552378594 -134774956 + 562055942 -67232844 1996487615 + + -6.1084610223770142e-001 3.3747026324272156e-001 + <_> + + 0 -1 51 491075519 -2245665 -2017182753 -10641593 -1177752129 + -2818356 -456003909 -108156352 + + -4.0351900458335876e-001 5.1473224163055420e-001 + + <_> + 8 + -1.6725406646728516e+000 + + <_> + + 0 -1 134 -521673209 -201328641 -124000257 -136314913 + -17045505 -85204509 -201327617 -489951505 + + -6.3230335712432861e-001 5.1736354827880859e-001 + <_> + + 0 -1 170 -84 1057292204 -4508256 1059717030 -68 705458860 + -1540 1069547519 + + -6.6297966241836548e-001 3.4861809015274048e-001 + <_> + + 0 -1 75 -717422595 2113723645 -570621953 -172675 -67305473 + -71499847 -1073775617 -1079374599 + + -4.8819395899772644e-001 4.7195026278495789e-001 + <_> + + 0 -1 3 -957356510 -420548949 -288634206 -286331360 + 1191142919 1104666401 1392506179 -455084281 + + -5.5349969863891602e-001 4.1086035966873169e-001 + <_> + + 0 -1 93 -22018 -1556484 1073486008 1004060668 368846300 + 417881853 535564524 -17 + + -4.1352465748786926e-001 4.8219370841979980e-001 + <_> + + 0 -1 151 -151001342 -1067194846 -492092926 -741347377 + -222366013 7763807 -201984331 -201326593 + + -4.0152969956398010e-001 4.5363888144493103e-001 + <_> + + 0 -1 133 355734748 -13353988 -1074249735 2147048829 + -1111998984 -16946185 -1078452225 178261260 + + -7.2032541036605835e-001 3.1326821446418762e-001 + <_> + + 0 -1 43 -16777794 283163134 -950237954 284752862 1744662493 + 1049717736 -2151720 2113927167 + + -5.4231750965118408e-001 3.3973744511604309e-001 + + <_> + 8 + -1.4416458606719971e+000 <_> - 0 -1 38 -17 -235014145 -273698930 -1 -655361 -252578305 - -1048689 -1 + 0 -1 118 -981997773 -524297 -4194305 -786433 -524289 -524289 + -524293 -76286189 + + -6.3837432861328125e-001 5.8197933435440063e-001 + <_> + + 0 -1 131 -16385 1073545215 1073495548 -1073824018 2080190461 + 519863805 1065163772 -1 + + -4.4101983308792114e-001 5.5826210975646973e-001 + <_> + + 0 -1 26 -823242754 -1143016453 -1098973441 1073233584 + 1333022207 -67585 -66049 -18710570 + + -5.0551694631576538e-001 4.5312264561653137e-001 + <_> + + 0 -1 180 -268439801 15400943 -276902400 -1058021397 + -209715449 1107295229 -252 -134217729 + + -5.2299499511718750e-001 3.7318477034568787e-001 + <_> + + 0 -1 39 1075052699 -9064767 -1391091777 -44230102 -925040641 + -537067555 -572661761 -582637398 + + -3.9277845621109009e-001 5.2537852525711060e-001 + <_> + + 0 -1 20 -69634 -1728520194 -16847106 -1159005954 32525212 + 1240751612 -4302855 -18808833 + + -4.7312712669372559e-001 3.9182522892951965e-001 + <_> + + 0 -1 160 -2113602 801914812 -1074517380 1073626616 + 1073491964 228358101 1039413756 2147483580 + + -5.5665540695190430e-001 3.2366693019866943e-001 + <_> + + 0 -1 50 10617856 -139267 -593923 -524289 -335649298 -5123 + -1141453845 -1947238400 + + -5.1571136713027954e-001 3.4354647994041443e-001 + + <_> + 10 + -1.6534610986709595e+000 + + <_> + + 0 -1 100 -81 -67108865 -275796209 -67108865 -144705537 + -234883073 -33 -1 + + -6.6397964954376221e-001 5.7575756311416626e-001 + <_> + + 0 -1 37 1165237758 1072434454 -1073938433 -1078059682 + 1568210943 -4424707 -65537 -1431654482 + + -6.4136123657226563e-001 3.1682160496711731e-001 + <_> + + 0 -1 12 -353374609 -823203866 -328274206 -286331350 + 1987540855 1448572277 2004318199 -150997129 + + -5.5081850290298462e-001 4.0213811397552490e-001 + <_> + + 0 -1 97 -1070612473 -35652161 -139067459 -173158225 + -194515793 -125831781 -302003026 -1060651001 + + -3.9085510373115540e-001 4.6990257501602173e-001 + <_> + + 0 -1 173 83492869 1610039295 2143289279 -6324227 -2129 + -67637267 -17842433 -1430382533 + + -4.4559049606323242e-001 4.3264123797416687e-001 + <_> + + 0 -1 183 -100667477 615514111 -805310720 -860889169 + -671088889 33554159 -3840 -137363457 + + -4.5740145444869995e-001 3.7074878811836243e-001 + <_> + + 0 -1 108 212 -8429699 -1073741825 -57345 -4444673 -74241 + -1141572097 958401980 + + -7.0837682485580444e-001 2.6604530215263367e-001 + <_> + + 0 -1 73 -16386 -1073951300 939278076 1073233916 1742485960 + 536640876 2139893756 -65538 + + -4.2629688978195190e-001 3.6537826061248779e-001 + <_> + + 0 -1 56 1499282399 -2867241 730413917 1609867231 -574032897 + -11214916 -544419891 -591338622 + + -3.2917565107345581e-001 4.6441465616226196e-001 + <_> + + 0 -1 42 -1058543837 552599279 -301990023 -1736446177 + -941637643 -1191182689 -1546275036 -260577417 + + -4.1120386123657227e-001 3.7657707929611206e-001 + + <_> + 11 + -2.0716788768768311e+000 + + <_> + + 0 -1 113 -2097153 -220204289 -821047537 -806891569 -67635205 + -788795137 -145754353 -1 + + -6.3591754436492920e-001 5.3186190128326416e-001 + <_> + + 0 -1 1 -1058610185 -1025 -176193537 -136843281 -141033473 + -2113 -136314881 -403712137 + + -3.6152586340904236e-001 5.8020901679992676e-001 + <_> + + 0 -1 140 1433666044 -537053703 1605910399 -165377 427317503 + -255047 -38469633 -1346888696 + + -5.8524936437606812e-001 3.0378106236457825e-001 + <_> + + 0 -1 139 -673206338 448573438 -738447364 -1075310648 + 536363004 485244924 1073557244 2147483647 + + -5.1090979576110840e-001 3.2787251472473145e-001 + <_> + + 0 -1 86 1080287234 -172623034 -799017549 -178788505 + -1072959828 -925045114 -1041505873 -1057495410 + + -4.2160958051681519e-001 3.9181047677993774e-001 + <_> + + 0 -1 179 -335548634 15716327 -17039840 -2131046662 + 1878523138 1089994737 -269486336 -520622353 + + -5.4490488767623901e-001 2.7775236964225769e-001 + <_> + + 0 -1 153 -1970797296 1509847677 -1524695425 -1075376705 + 2145001471 -33793 -1682526723 -1440218325 + + -5.1685762405395508e-001 2.9982602596282959e-001 + <_> + + 0 -1 54 -69634 1035777535 -1208172546 872200958 1862115324 + 435705840 -1411563524 -69633 + + -4.0428158640861511e-001 3.6875179409980774e-001 + <_> + + 0 -1 77 1964504751 1375207407 -305673425 2008022955 + -520118130 -202939393 -38821142 -269497686 + + -3.1806364655494690e-001 4.8525118827819824e-001 + <_> + + 0 -1 15 -419434642 -387027281 -352860122 -354489138 + 1734866758 1711234877 -202116283 1995700223 + + -5.9747940301895142e-001 2.2811535000801086e-001 + <_> + + 0 -1 99 -696203326 -136259759 -722504462 -17313860 + -267061560 -798994392 -1032605768 857829674 + + -5.1942723989486694e-001 2.5452747941017151e-001 + + <_> + 10 + -1.7257841825485229e+000 + + <_> + + 0 -1 127 1576861181 -131073 -81923 -16387 1610407933 -214019 + -81921 -81921 + + -6.8091350793838501e-001 3.4414958953857422e-001 + <_> + + 0 -1 64 -537526791 -570564611 1039866815 -574636097 + 1610534911 1565843453 535440319 536806318 + + -4.6496266126632690e-001 4.2407321929931641e-001 + <_> + + 0 -1 130 -2147482155 -188929 -536870913 -163843 -1074085889 + -1025 -65537 -1079497796 + + -4.8651787638664246e-001 3.6669605970382690e-001 + <_> + + 0 -1 49 -1087372136 -4448360 1035738679 2145328955 + -1076355073 -1078453249 -1091944449 -5759490 + + -5.0146460533142090e-001 3.2934013009071350e-001 + <_> + + 0 -1 18 -286527762 -1394020353 -269488146 -286327041 + 2004309767 1635122167 -134217913 -134217729 + + -4.7354671359062195e-001 3.6931258440017700e-001 + <_> + + 0 -1 162 -1128 824228543 -537968872 530689787 -4194896 + 842068661 -8389328 991427575 + + -5.7790082693099976e-001 2.3575535416603088e-001 + <_> + + 0 -1 124 1074110978 -482082897 2144982975 -8527873 + -135790597 -16783377 -195625729 1145431622 + + -5.9902256727218628e-001 2.6036697626113892e-001 + <_> + + 0 -1 123 -268413611 -50496515 -1 -32769 -1073825795 -1 + -65537 -1073795765 + + -3.4895190596580505e-001 4.1869163513183594e-001 + <_> + + 0 -1 70 1659888162 -1241514837 -286261365 -754980061 + -486817857 -1358968833 -134217777 1080288034 + + -4.3774437904357910e-001 3.2316094636917114e-001 + <_> + + 0 -1 178 -989864177 1086324703 -10504668 -788529409 + -704677054 1040186295 -34078976 -52428801 + + -4.0298467874526978e-001 3.5668191313743591e-001 + + <_> + 12 + -1.6008259057998657e+000 + + <_> + + 0 -1 78 1468006399 -1 2013265919 -1 -4114 -4178 -536871169 + -1054038 + + -5.6673562526702881e-001 6.0633486509323120e-001 + <_> + + 0 -1 36 -11247619 -1074495491 -537330179 -1074118659 + 2143064062 -537355270 -16875521 -1074118657 + + -4.5532488822937012e-001 4.3594542145729065e-001 + <_> + + 0 -1 2 -353423377 -269490177 -268481537 -1063185 1986490359 + -117710985 -8912897 -2049 + + -3.0179327726364136e-001 5.4179322719573975e-001 + <_> + + 0 -1 132 286265528 494213629 1062738749 1072242141 532422076 + -33932626 1043864575 1001929116 + + -7.0045799016952515e-001 1.9997505843639374e-001 + <_> + + 0 -1 156 -1069357041 -205521425 -84426785 -103940129 + -294391877 -84938833 -134479905 -805117173 + + -3.1163915991783142e-001 4.4845655560493469e-001 + <_> + + 0 -1 148 -16386 1066188728 1056190392 -1079230532 -70434836 + 991196381 1073492984 -1 + + -4.1121381521224976e-001 3.2420134544372559e-001 + <_> + + 0 -1 109 -185576360 -1645650840 1040186621 -46402291 + -119623492 -13075909 809291946 951540320 + + -4.5703861117362976e-001 2.9347121715545654e-001 + <_> + + 0 -1 142 -1071185406 -71307313 -289682565 1476376503 + -621024593 -3147573 1869868927 1917304835 + + -4.7164782881736755e-001 2.3968656361103058e-001 + <_> + + 0 -1 185 -4194383 -1356267524 -146834128 1035992484 + -1074266699 -1614807202 -541622860 -843055875 + + -3.1201976537704468e-001 3.9286631345748901e-001 + <_> + + 0 -1 33 1232438266 -550129666 26740739 156444166 1313627385 + -1674514016 -2131349585 226430638 + + -4.3718740344047546e-001 2.8047958016395569e-001 + <_> + + 0 -1 0 -269490841 200273647 -18361865 -136971038 -1048055331 + -268439603 -170027101 1693972212 + + -3.7469965219497681e-001 3.0717009305953979e-001 + <_> + + 0 -1 80 -5198150 -1088811012 -1951134572 2105126033 + -1090679704 -1661199105 533900527 498401023 + + -5.2905166149139404e-001 2.2012051939964294e-001 + + <_> + 13 + -1.9205129146575928e+000 + + <_> + + 0 -1 87 -50342883 -8865 -37748737 -8422081 -184746755 + -33554945 -50529025 -50332225 + + -6.0000002384185791e-001 4.5359525084495544e-001 + <_> + + 0 -1 24 -66305 -98313 -1095074053 1018706424 1610506236 + -98313 -200705 2134015999 + + -4.8690414428710938e-001 3.6150613427162170e-001 + <_> + + 0 -1 166 2102357 -131585 -8388617 -9 -285212673 -147553 + -1094726401 1035472878 + + -6.0755223035812378e-001 2.5850912928581238e-001 + <_> + + 0 -1 121 -229891 2147287039 1069072317 972818389 532422140 + -98307 -196612 -1346732035 + + -4.5246949791908264e-001 3.1187608838081360e-001 + <_> + + 0 -1 161 -764942525 -204734609 -1343239670 -184555609 + -20453395 323876582 -235407457 -487602450 + + -2.7629959583282471e-001 4.5853719115257263e-001 + <_> + + 0 -1 184 -85 -1884749844 -303039712 -1582694406 -1076101196 + 440663751 -1082263792 -771752481 + + -3.7864053249359131e-001 3.0783155560493469e-001 + <_> + + 0 -1 74 288887673 489955233 503058653 1039990901 888943615 + -1355007300 1039939583 -1074218308 + + -4.2957478761672974e-001 2.9841592907905579e-001 + <_> + + 0 -1 89 -494934526 -135166975 -1480856977 1937236770 + -352330334 -269556698 -975445205 1097327363 + + -4.2543512582778931e-001 2.8419882059097290e-001 + <_> + + 0 -1 30 -459024521 -202375169 -8388673 -576192523 -51134721 + -8193 -1241522177 -320611277 + + -2.2042599320411682e-001 5.5913400650024414e-001 + <_> + + 0 -1 8 1564748511 -143288340 -270260497 132394664 -25102596 + -8585508 -848001031 -2758455 + + -3.4897232055664063e-001 3.3536911010742188e-001 + <_> + + 0 -1 35 -286792026 -320080020 -420811026 -319881490 + 1895264055 1643605823 1979184887 2004317778 + + -6.6432660818099976e-001 1.5332631766796112e-001 + <_> + + 0 -1 60 -82948 1563704764 1031577596 1069299704 1526529020 + 536612445 -1074483524 -65537 + + -4.1885235905647278e-001 2.5934544205665588e-001 + <_> + + 0 -1 138 -18105688 796541940 -22566112 268330254 241496248 + 239632253 633812865 1608515575 + + -4.7989422082901001e-001 2.2369465231895447e-001 + + <_> + 15 + -1.7882676124572754e+000 + + <_> + + 0 -1 100 -1 -71306241 -542638193 -262145 -1025 -236202497 + -33 -1 + + -6.0684454441070557e-001 5.5322861671447754e-001 + <_> + + 0 -1 106 1426063357 472971221 -1073908993 -1648363811 + 1761607675 -1967263745 678637451 721382031 + + -4.2795598506927490e-001 3.3990189433097839e-001 + <_> + + 0 -1 4 -269490398 751822572 -92350798 -17632270 1742174054 + 1951851365 -143132682 -134744073 + + -4.8568534851074219e-001 2.7661311626434326e-001 + <_> + + 0 -1 102 -212996 500727292 -247811 -237571 -4653059 + -1073989127 -17285123 -1078301315 + + -4.8473656177520752e-001 2.6134452223777771e-001 + <_> + + 0 -1 164 -12714220 419755325 -1077937391 964685813 -75641539 + 440397180 -1074007628 447740380 + + -4.8669299483299255e-001 2.6242053508758545e-001 + <_> + + 0 -1 117 268702033 -34819 -4202505 -172065 -4409345 -271877 + -541261829 -1113049192 + + -4.6116250753402710e-001 2.5778469443321228e-001 + <_> + + 0 -1 163 -278417666 -1107514564 250380852 1073624732 + -1208158211 1038105583 1072965852 2080374767 + + -4.3745991587638855e-001 2.5203874707221985e-001 + <_> + + 0 -1 177 -392220921 163576791 -16777720 14610431 1912602435 + 1610087871 -924324608 -738197537 + + -3.8432821631431580e-001 2.6108586788177490e-001 + <_> + + 0 -1 90 -178945281 -11411234 -705380354 -170526737 -61561669 + -4926531 -585842742 -648686848 + + -2.6648128032684326e-001 4.1246628761291504e-001 + <_> + + 0 -1 150 -290528246 -1070924442 1789690912 15379490 + -730138728 90191717 393581869 1946154447 + + -4.9659931659698486e-001 1.8755485117435455e-001 + <_> + + 0 -1 46 -721407760 -36947929 -188608589 -552915154 654368202 + -8341660 1519160477 -550894961 + + -3.1798857450485229e-001 3.1803134083747864e-001 + <_> + + 0 -1 48 -1375801682 136056829 117214954 416853708 1305280509 + 737705533 2123894492 -84082691 + + -4.7515583038330078e-001 2.2444275021553040e-001 + <_> + + 0 -1 19 -289411157 1154121446 2091885806 -563154966 + 1199003503 -160344225 -143663113 -13117441 + + -3.4701234102249146e-001 2.9402580857276917e-001 + <_> + + 0 -1 101 -1619227716 469549055 -1614893896 1073078173 + 1542477288 230592105 -1092732452 1031471039 + + -4.9646034836769104e-001 1.9390052556991577e-001 + <_> + + 0 -1 154 -1463940096 -624987401 -1402226881 966359499 + -1535214692 -83920456 -1427666776 707284251 + + -5.5271774530410767e-001 1.6742622852325439e-001 + + <_> + 16 + -1.9192950725555420e+000 + + <_> + + 0 -1 119 -792589 -786433 -524297 -1033 -2621441 -529241 + -262177 -268963849 + + -5.6610435247421265e-001 5.6078433990478516e-001 + <_> + + 0 -1 168 -789184853 -1 -524289 -1 -1061889 -68422785 + -251658513 -790626305 + + -3.3353686332702637e-001 4.9356549978256226e-001 + <_> + + 0 -1 82 -805218991 -1 -1 -524289 -1075871745 -22533 -45057 + -4494210 + + -2.8185382485389709e-001 4.2225864529609680e-001 + <_> + + 0 -1 45 -8855555 -1073840641 -1095041537 -1073824265 + -813760516 -540475393 -1078001665 -327969 + + -3.1645154953002930e-001 3.6003640294075012e-001 + <_> + + 0 -1 126 -578945034 535082942 771670012 1572704254 234364908 + 436014586 1025859071 1610612735 - -6.2613362073898315e-001 8.3587586879730225e-001 + -4.0988036990165710e-001 2.8143650293350220e-001 <_> - 0 -1 1 -822088017 -1494220817 -286627166 -521146870 - -438311098 1148141431 2004874787 -452986937 + 0 -1 171 -4194552 77458647 -570435840 14024671 -8915200 + 12517231 -1520 33029559 - -6.2483572959899902e-001 7.0758932828903198e-001 + -6.8118953704833984e-001 1.7440743744373322e-001 <_> - 0 -1 19 1433731065 1567710713 -33685505 -4358209 -1073954819 - -745475 -409601 -1080029252 + 0 -1 32 -12969509 -1107570737 -1086657415 1069223462 + -706388516 -537948803 -4701955 -276873121 - -5.6460815668106079e-001 6.4405161142349243e-001 + -2.8572362661361694e-001 3.6879491806030273e-001 <_> - 0 -1 72 -289409534 572709774 -2136751520 -1605438470 - 1541534464 538170499 1653335808 -521666585 + 0 -1 84 -201333086 -168165510 -1140873578 -156846097 + -1598322706 -1365250713 -999062802 1080288427 - -5.9405732154846191e-001 5.3030282258987427e-001 + -3.2669910788536072e-001 3.0241185426712036e-001 <_> - 0 -1 47 284718389 1442395637 -1181229569 -4235459 - -1466270465 -4196097 -71385857 -1733811012 + 0 -1 9 -441538553 -924143742 -421089818 -487657498 + 1903514423 1681119607 -1276149891 -157024417 - -5.5647981166839600e-001 5.8203917741775513e-001 + -3.9508256316184998e-001 2.4040374159812927e-001 <_> - 0 -1 30 1081598594 1419768706 -1017120245 -83364286 - -389044566 -467664864 -1068501878 -800590846 + 0 -1 69 502542965 -4714543 1274896381 2139045885 1006140349 + -1078706177 2146713599 681052468 - -5.8518677949905396e-001 4.9468857049942017e-001 - - <_> - 6 - -1.2980090379714966e+000 - + -5.2714240550994873e-001 1.8013860285282135e-001 <_> - 0 -1 69 -184550649 -8913025 -50331649 -201326593 -18874625 - -32897 -218103829 -520093713 + 0 -1 175 -8422137 1609563911 -8388747 -134742145 -67109106 + -540673 -469827877 -96577957 - -5.9198069572448730e-001 7.8156101703643799e-001 + -2.5926300883293152e-001 3.7889996170997620e-001 <_> - 0 -1 46 -2097153 -788860673 1309495053 -974139641 -252709717 - -789389193 1996738051 -33 + 0 -1 67 -286265557 -1565655217 -419459294 -227848274 + 930608951 6354783 921154795 -167775281 - -5.4641300439834595e-001 6.8572372198104858e-001 + -3.0875918269157410e-001 3.2574757933616638e-001 <_> - 0 -1 14 21242301 -539159755 -1122222113 -2280651 -36897815 - -73606052 -79118609 -3630132 + 0 -1 137 -598454124 -170373806 -230787081 -34578983 + -1781285135 -338624514 -1313273857 -1157481285 - -6.3102430105209351e-001 5.3388547897338867e-001 + -2.8985816240310669e-001 3.3638575673103333e-001 <_> - 0 -1 74 -339745273 1137177294 -532159998 -2139162777 - -149423358 -449095354 -272110076 -218628233 + 0 -1 40 -796609814 2056988898 1625256063 1440313762 + -754984449 -718353734 -1812463633 1164947082 - -5.4400163888931274e-001 5.3200685977935791e-001 + -3.4438478946685791e-001 2.7231806516647339e-001 <_> - 0 -1 42 1030755448 -1073872995 -69569291 -4501512 968236024 - -16486 -541393926 -1145553976 + 0 -1 178 81477379 29360031 2128555018 15727359 -906496255 + 1426029946 -1213272252 -255328769 - -7.3628991842269897e-001 4.0775153040885925e-001 + -4.3185618519783020e-001 2.2283333539962769e-001 <_> - 0 -1 53 -521673725 -9447329 2147450855 -134217929 -457195601 - -671622077 -872415777 -1073233405 + 0 -1 58 1386280898 -711936371 1031617907 -577016881 + -2003247648 -1798244104 1233878955 1494895247 - -4.6834933757781982e-001 6.1143130064010620e-001 - + -3.6808815598487854e-001 2.6348024606704712e-001 + <_> - 6 - -1.4600841999053955e+000 + 17 + -1.6384667158126831e+000 <_> - 0 -1 40 -2 -71436289 -1081374964 -17409 -132129 -252646597 - -9249 -131073 + 0 -1 112 -4206849 -62209 -32769 -536935169 -9175041 -1 + -13304897 -8705 - -7.0482200384140015e-001 6.1317390203475952e-001 + -5.3728371858596802e-001 6.6736513376235962e-001 <_> - 0 -1 27 1431568351 1977614335 2144862207 2013231039 - -419434578 -4370 -16848146 -67114870 + 0 -1 113 -5247077 -666897729 -904951035 -909129075 + 2068575147 -253071113 -548940533 -17 - -5.3594231605529785e-001 6.7189788818359375e-001 + -3.6703088879585266e-001 4.0338560938835144e-001 <_> - 0 -1 3 -286265553 -288883729 -274870686 -353375034 - 2045506919 1690041199 2147481445 -1048761 + 0 -1 172 -576718152 420282172 -71304011 1069512381 + 2030025720 -1080402051 -1094726468 800576692 - -5.9768378734588623e-001 5.4696100950241089e-001 + -4.4541954994201660e-001 2.6759427785873413e-001 <_> - 0 -1 4 -134545410 -5703686 -71540238 -1349334278 1580745724 - 1308117213 1202520827 1308512223 + 0 -1 63 -4631043 -75522949 -1145398245 859561343 -303016743 + -1083486159 -54260520 994000962 - -7.4109089374542236e-001 3.6831066012382507e-001 + -3.3632522821426392e-001 3.1928580999374390e-001 <_> - 0 -1 44 425729245 -8972291 -38019073 -164417 -1079459842 - -67200001 -1143324737 -1092082948 + 0 -1 176 788491535 1073735511 -276824257 -671612929 + -352327922 2129657855 218103502 -67108865 - -5.6800931692123413e-001 5.0094425678253174e-001 + -2.4006241559982300e-001 4.0503886342048645e-001 <_> - 0 -1 71 -66 990687228 -67125972 1069285308 -50332163 - 1044315645 -2571 -41943041 + 0 -1 88 -1069309438 -145266942 -159645705 -803756285 + -997200197 -323557570 2113798139 1963456002 - -4.9089109897613525e-001 5.5790531635284424e-001 - - <_> - 8 - -1.3831173181533813e+000 - + -4.3331962823867798e-001 2.1208211779594421e-001 <_> - 0 -1 11 -681731073 -2246209 -1208139777 -2752580 -37879809 - -196643 -572661761 -1075970081 + 0 -1 71 1367342079 2012741319 -2110795937 2147479463 + -56638518 -1050641 -71303510 -3153238 - -5.6764817237854004e-001 7.4003648757934570e-001 + -1.9893048703670502e-001 4.7693827748298645e-001 <_> - 0 -1 43 -1057 -754982214 168807941 -1919979961 -253496143 - -252514096 -553126561 -68157441 + 0 -1 30 -1541155021 -339 -193 -526490 -319849731 -10493953 + -285212673 -525376925 - -5.1411336660385132e-001 6.2704712152481079e-001 + -2.5493767857551575e-001 3.7484326958656311e-001 <_> - 0 -1 29 -1349907204 -4903014 -1075574785 -5235820 -105006081 - -33809443 -475201 -22496840 + 0 -1 23 1155842302 27536607 1867763165 456795576 482647295 + 229511083 2080296891 1336600999 - -6.5674120187759399e-001 4.4796296954154968e-001 + -4.7114911675453186e-001 2.0197547972202301e-001 <_> - 0 -1 49 -1065900489 -1052761 -268435457 -1 -10273 -2177 - -524289 -9181689 + 0 -1 76 -259800958 -2626633 -39321665 -403197129 -403705969 + -37709 -1046294898 1094968962 - -4.3221050500869751e-001 6.1747372150421143e-001 + -3.4149444103240967e-001 2.6795396208763123e-001 <_> - 0 -1 75 -217 -1347420177 -608282330 -487605129 1910499078 - 1131571950 -3179776 -523763714 + 0 -1 144 5392 2138953693 -67174401 -181252 -1107628037 + -3281989 -131073 685770528 - -5.8398228883743286e-001 4.1473022103309631e-001 + -7.2787940502166748e-001 1.2180325388908386e-001 <_> - 0 -1 51 259264536 -1149902853 -753876995 2143254457 - -645378568 -5314406 -1080132867 -1078428268 + 0 -1 145 -1055998 1595749766 302257080 466399709 806822355 + 173548258 2005670911 2068836863 - -7.3157382011413574e-001 3.2581529021263123e-001 + -4.1571453213691711e-001 2.0857739448547363e-001 <_> - 0 -1 33 -1069030909 -905977946 -8913185 -1710847 -805331457 - -327790 -473968641 -1067981309 + 0 -1 155 -1107944416 1435545188 -374463656 1475087018 + -299724488 513554036 504366813 1568275455 - -4.4401237368583679e-001 5.3910166025161743e-001 + -4.8667240142822266e-001 1.6587641835212708e-001 <_> - 0 -1 8 -421008670 -279056550 -464391041 -539758432 - 1303335486 -353672409 1890057173 -195561501 + 0 -1 44 -487593362 785337935 -398760218 -387739962 553121643 + 930578263 -943466818 1408757591 - -4.8434647917747498e-001 4.7722080349922180e-001 - - <_> - 7 - -1.0721565485000610e+000 - + -5.4894161224365234e-001 1.4391185343265533e-001 <_> - 0 -1 15 -13041667 -294913 1060863999 1067139069 -15409924 - -8707 -546505217 -9761 + 0 -1 143 286261404 963718076 528222713 2101294077 1073232060 + -1145166668 1001142718 174078096 - -5.3846156597137451e-001 7.8067737817764282e-001 + -6.0666769742965698e-001 1.3923630118370056e-001 <_> - 0 -1 67 -4 1058889181 -1109576068 1061024607 -630597636 - 990968873 -338232644 2139094975 + 0 -1 65 -556269569 -734724163 -1611190725 -20513 -721568262 + -661613388 -1961160965 -537135233 - -6.1439883708953857e-001 5.0837707519531250e-001 + -1.7968930304050446e-001 5.4242342710494995e-001 <_> - 0 -1 21 1556954559 -44715049 1066999807 -34212897 -60490753 - -121838855 -590770181 1561712573 + 0 -1 21 -16855954 -1527846930 -286606210 1823626872 + -611432356 -568438987 1072619359 338837363 - -5.5671542882919312e-001 4.9533960223197937e-001 + -4.3688330054283142e-001 2.0569972693920135e-001 + + <_> + 19 + -1.6432296037673950e+000 + <_> - 0 -1 2 -421007634 -415770121 -15217666 -18423610 -739772201 - -1757702077 -138678277 2004318023 + 0 -1 120 -37748801 -33554947 -1 -1 -4194373 -513 -1077936197 + -65 - -6.7898088693618774e-001 3.6057698726654053e-001 + -5.1218336820602417e-001 7.4440699815750122e-001 <_> - 0 -1 56 1084745218 -134237397 1132975563 -3672349 -133303569 - -84217206 -353381665 -1064833534 + 0 -1 146 -673843201 -459810 -136357889 -378968 -537133057 + -65538 -67127041 -5338454 - -5.1906722784042358e-001 4.4790410995483398e-001 + -2.5160089135169983e-001 5.8271646499633789e-001 <_> - 0 -1 6 -12594 1985637327 -157620114 -386470066 -606119323 - 2111261223 -439408252 -168362257 + 0 -1 38 -134228169 871357879 -33557001 -67109057 -453327361 + -67109377 -704658185 -1309157897 - -5.6427675485610962e-001 4.1696536540985107e-001 + -2.6915127038955688e-001 4.2556142807006836e-001 <_> - 0 -1 18 287069429 1540717769 1504826367 -1082829027 - -56821761 -606297447 1049934591 -1620034247 + 0 -1 14 -286597510 -581378566 -293667400 -19464514 + 1558534864 1601464761 2138930392 2096103359 - -5.8802723884582520e-001 3.9574873447418213e-001 - - <_> - 8 - -1.2750341892242432e+000 - + -4.3442091345787048e-001 2.1993473172187805e-001 <_> - 0 -1 13 -8913413 -7012417 1060835131 2147041247 -589500419 - -587924228 -572588033 -536871425 + 0 -1 7 -299434962 -1090147833 -274530881 -165221818 + -836539099 -1170047964 -67764225 -92811401 - -5.0236552953720093e-001 7.6100629568099976e-001 + -3.3180844783782959e-001 2.8903234004974365e-001 <_> - 0 -1 41 -202381393 -242227537 -542398705 -173409041 - -771758709 -253364561 -80740469 -168428577 + 0 -1 79 -5263833 -76432721 -2010435829 -1615741527 + -1107917633 -707674371 2146953119 -167968769 - -5.4317152500152588e-001 5.6954395771026611e-001 + -2.3211990296840668e-001 3.8325443863868713e-001 <_> - 0 -1 24 1087881455 2113665003 -210894853 2146828223 - -1140851282 -18 -890437942 -4461558 + 0 -1 141 -1073512445 -682625025 -805568513 -4194345 + -67110209 -77041 -1048577 -1023164405 - -4.7311496734619141e-001 5.2226537466049194e-001 + -2.7058473229408264e-001 3.2406231760978699e-001 <_> - 0 -1 61 -16387 939276280 -1283703044 2143205076 -280183363 - 1034435276 1050948600 -35 + 0 -1 25 -537244166 535827454 -1468104961 999454430 + -805682182 1869780957 -604834849 708476767 - -4.6256715059280396e-001 4.9628910422325134e-001 + -4.0218099951744080e-001 2.3334722220897675e-001 <_> - 0 -1 26 171050035 -1221456399 -539869197 -1087169504 - -1922552099 -1361411 -281382437 -1410185933 + 0 -1 110 1649385986 1654913147 1112912626 -263271454 + 2009153195 1297598227 -146823949 -1041800249 - -5.3890913724899292e-001 3.8419398665428162e-001 + -4.1301506757736206e-001 2.0980355143547058e-001 <_> - 0 -1 73 -6137 1120918271 -1368794106 -2144358409 -83927551 - 1401633275 -775965916 -788529194 + 0 -1 13 1682195680 -235123986 69349375 531702373 -130229000 + -18068324 -546376291 -47623044 - -5.3902828693389893e-001 4.4206458330154419e-001 + -4.0672650933265686e-001 2.2794869542121887e-001 <_> - 0 -1 63 -1951234380 -1614915876 1698200827 2145161916 - -1355301121 -1141135941 -1145373697 -1074133536 + 0 -1 165 1499446556 486863068 2139037685 2111827583 + -71702088 779075576 1991951440 1023368464 - -5.5798375606536865e-001 3.4880429506301880e-001 + -4.7443622350692749e-001 1.6973347961902618e-001 <_> - 0 -1 70 -520096505 1984419111 -460858761 -1832389703 - -234095242 -1409595137 -366286102 -2131758089 + 0 -1 159 -402677082 1336163752 -4257148 134161664 135307481 + 745813992 91358435 1540358142 - -4.5353689789772034e-001 4.7646188735961914e-001 - - <_> - 8 - -1.1843473911285400e+000 - + -4.1310870647430420e-001 2.0664623379707336e-001 <_> - 0 -1 22 -88539393 -2622473 -67436545 -1078223497 -8694275 - -388 -276869121 -172161 + 0 -1 94 -86050 -214276 -1265670 500973532 2113706716 + 521945533 2104012782 -268500993 - -5.0693207979202271e-001 7.3959207534790039e-001 + -3.6063745617866516e-001 2.1921299397945404e-001 <_> - 0 -1 62 1382277871 -134223894 -1093669 -789270 2012932831 - -10771222 -878706965 -3153270 + 0 -1 129 16 -611331 -1083196417 -2277386 -40124449 + -1090523667 -136839169 508036272 - -4.2572146654129028e-001 6.5866845846176147e-001 + -7.2185653448104858e-001 1.2485391646623611e-001 <_> - 0 -1 46 -84936133 -799817490 201575681 -934553081 -730335557 - -1070448605 1359418891 -537919653 + 0 -1 105 1476390570 1585364599 -1318064693 1709964651 + 2100785568 -1142693855 -165456382 1097200448 - -5.4319930076599121e-001 4.7171792387962341e-001 + -4.3710902333259583e-001 1.7141909897327423e-001 <_> - 0 -1 25 1585000699 -111330383 303305717 2078094325 - -1344488514 -1086581044 847298555 -215041 + 0 -1 22 -822194506 -270390315 -1374548225 782411003 + 238635709 -876920077 -405611781 2138732543 - -4.5561578869819641e-001 4.9395501613616943e-001 + -4.0224075317382813e-001 2.0043475925922394e-001 <_> - 0 -1 36 -735850437 -5548997 -170426689 -41427919 -722534981 - -56665225 -794167809 -637809441 + 0 -1 53 -260902702 1365221384 2128088279 895297655 + -1486507602 -1384171985 829308671 535782095 - -3.9095941185951233e-001 6.1021536588668823e-001 + -2.8388926386833191e-001 2.9086777567863464e-001 <_> - 0 -1 65 201339189 -109363211 -131585 1601142655 -536940609 - -8880131 -1428402450 -1165357912 + 0 -1 92 -319820273 1806647054 113167908 1403043690 660430667 + 353394459 771163284 -210501657 - -4.4847896695137024e-001 4.8076605796813965e-001 + -3.2886692881584167e-001 2.4895632266998291e-001 <_> - 0 -1 34 -1024463798 -67440058 1412853760 -1292148966 - -357569761 1109114946 -235150709 1395639042 + 0 -1 11 -268491166 12986974 -473666582 683997766 1963284337 + 1950440428 -270107578 -139991169 - -5.9451353549957275e-001 3.2721316814422607e-001 + -4.5765051245689392e-001 1.8740060925483704e-001 + + <_> + 20 + -1.7327002286911011e+000 + <_> - 0 -1 66 -252447488 -686295729 -774513665 -2108929 -876294680 - -1888788333 -2067312392 1355546591 + 0 -1 136 -838860801 -805306369 -3 -641 1291845631 + -1895825409 -570425345 -536870977 - -5.9371763467788696e-001 3.0977559089660645e-001 - - <_> - 9 - -1.7721819877624512e+000 - + -5.2951431274414063e-001 6.3284516334533691e-001 <_> - 0 -1 52 1364590559 -6488196 2071953407 -304133 -4210689 - -16973858 -69222721 -318838 + 0 -1 107 -1052929 -107224385 -1911568115 -1884320593 + -1838093 -793521449 -10486305 -545268257 - -5.0053322315216064e-001 7.2953337430953979e-001 + -3.2829684019088745e-001 4.5297625660896301e-001 <_> - 0 -1 9 -1346390051 -1153975463 -168044545 -1073760400 - -603979812 -71570664 -78774824 -3146535 + 0 -1 157 2004351967 -679478273 458215935 -39850018 -1029 + -4203105 -1041 -7608182 - -4.7651672363281250e-001 5.5323666334152222e-001 + -1.7520354688167572e-001 5.8037400245666504e-001 <_> - 0 -1 48 -1073492989 -624955969 -629407821 -277350569 - -367002093 -1881174853 -370159189 1526981123 + 0 -1 184 -12582998 195817151 -224 -1053819475 -536871937 + -1962939141 -18768 -440401941 - -5.3586703538894653e-001 4.3482360243797302e-001 + -3.1779766082763672e-001 2.9805180430412292e-001 <_> - 0 -1 7 -268514049 -2182498 -557921026 -1143833520 1337869053 - 1595298893 -6356993 -1409037 + 0 -1 29 -139820838 -2210 -38618539 1037909964 -336385 -72710 + -537722889 2140048130 - -4.6753937005996704e-001 4.7871547937393188e-001 + -3.8719791173934937e-001 2.4800541996955872e-001 <_> - 0 -1 28 -4224337 -3210241 -1491399617 -177201 -1666217729 - -188466456 -37118977 -570621953 + 0 -1 2 -269521937 -536940706 -1593601 -12562 23553907 + -596123657 -8421377 -8394881 - -4.5714759826660156e-001 4.2808809876441956e-001 + -1.8954561650753021e-001 4.3200388550758362e-001 <_> - 0 -1 68 937426204 1025373468 -1189126255 2138821591 - -1700284228 -1216642872 -1158053604 805297404 + 0 -1 52 1490859451 -69337170 -168227465 -615203889 + -110582300 -53695260 -976380608 -522354687 - -5.4907804727554321e-001 3.8489469885826111e-001 + -3.0474671721458435e-001 2.6574173569679260e-001 <_> - 0 -1 0 -288366334 -825757274 -460792322 -291581722 - 1170695122 -884364 -415762442 -227019529 + 0 -1 72 -608418 2113708536 2037136492 426423294 2146274269 + 521943861 1575855102 2138799359 - -6.1079239845275879e-001 2.9559111595153809e-001 + -3.7270265817642212e-001 2.1172212064266205e-001 <_> - 0 -1 58 -540048250 322173639 -634957345 -679614881 -82855217 - -664080198 -945776257 1431534827 + 0 -1 103 1024 -537953829 -547364865 1442839990 -272510977 + -75890731 -1145946146 134228448 - -4.9022802710533142e-001 4.0082153677940369e-001 + -7.5749701261520386e-001 1.0885673761367798e-001 <_> - 0 -1 35 78730549 488199256 1405345655 1971282205 -1734690372 - -1398044024 700103675 -1735738837 + 0 -1 114 -298873841 -5053145 -1434563050 -236998942 + 1275022543 -1619894402 -290242404 -76027905 - -4.9552637338638306e-001 3.6625802516937256e-001 - - <_> - 9 - -1.6782010793685913e+000 - + -2.3406513035297394e-001 3.3599156141281128e-001 + <_> + + 0 -1 111 -298848766 -433659860 234884614 -1880898169 + -623459070 -1073594345 1464821259 -85985281 + + -3.5892826318740845e-001 2.2068901360034943e-001 <_> - 0 -1 45 -218370049 -31505 -8193 -1110514 -797769730 -2049 - -11010053 -8433 + 0 -1 6 -69206530 553316030 -672281354 -1147675428 857435771 + 951569881 1568243679 -572662322 - -4.4659072160720825e-001 7.9415500164031982e-001 + -2.9227516055107117e-001 2.8497108817100525e-001 <_> - 0 -1 12 -203689238 -11411516 395785395 905899519 -946933521 - 1479650435 1101129199 1468004095 + 0 -1 116 498089404 1064859100 1588868782 1071429112 + 1500536317 268180347 1068400639 1027243836 - -5.4474192857742310e-001 4.7251713275909424e-001 + -6.3993138074874878e-001 1.2821437418460846e-001 <_> - 0 -1 20 -496508273 -1048657 -4097 2146957074 -553652225 - -65713 -17 -179837374 + 0 -1 41 -305176331 81264589 -1296113666 -1260126247 + -302166571 -361169107 -840794663 -286001193 - -3.9359572529792786e-001 5.4971671104431152e-001 + -2.6271352171897888e-001 2.9894199967384338e-001 <_> - 0 -1 60 1358984660 -1210300454 404051839 -545474884 - 567032571 -1093952574 781125119 -5567960 + 0 -1 59 -236955406 -170467174 959659861 -1284701297 + -536694808 -1085085955 -1913770579 -282325751 - -4.8279407620429993e-001 4.3091443181037903e-001 + -2.8713181614875793e-001 2.7808821201324463e-001 <_> - 0 -1 57 1426068991 1601467897 992870367 2145386399 - 2038484222 -71778387 -341114881 -585061027 + 0 -1 66 -1140855158 -42021130 -330167348 1073326866 + 1610479176 2034503509 1409147804 1576401694 - -5.4100221395492554e-001 3.2671278715133667e-001 + -3.5052102804183960e-001 2.1350817382335663e-001 <_> - 0 -1 5 -35655857 1692374991 -453645532 -867243825 2042613767 - -467932117 -1149248511 -184552449 + 0 -1 169 -322970297 276756063 -1392509090 -764542977 + -58762396 -487671989 -889193886 -1191706633 - -5.2549248933792114e-001 4.0258836746215820e-001 + -2.5308734178543091e-001 2.9686897993087769e-001 <_> - 0 -1 32 1342691326 1475291005 -1055105 1073430447 -538386740 - -1048577 -270038549 -68424022 + 0 -1 95 1208161280 -549732421 -43516937 1975510217 + 1079562542 -1137710869 -141042441 1359184024 - -3.8929802179336548e-001 4.6440866589546204e-001 + -4.7310391068458557e-001 1.5836887061595917e-001 <_> - 0 -1 50 2071425138 166474750 2007511288 1015435772 - -743868420 449328296 323123188 1875607550 + 0 -1 31 -58537450 -1088287189 1663066073 1570552950 + -497558223 -814536319 -362484999 -2008585213 - -6.6830915212631226e-001 2.5718382000923157e-001 + -3.1321647763252258e-001 2.3874203860759735e-001 <_> - 0 -1 64 -198224875 2014237438 1368741745 823456091 -9455171 - -268766785 -760679910 -1970341089 + 0 -1 61 -1376776328 1027569591 2142527485 -1073748483 + 1064852988 -553918471 -1343570434 -1464172735 - -4.3688443303108215e-001 3.7087124586105347e-001 + -3.6929282546043396e-001 2.0340856909751892e-001 <_> - 0 2 2 2 + 0 0 2 3 + <_> + + 0 0 3 1 + <_> + + 0 1 1 1 + <_> + + 0 1 1 3 + <_> + + 0 1 2 2 + <_> + + 0 1 2 3 + <_> + + 0 1 2 4 <_> - 0 3 1 2 + 0 1 7 1 <_> - 0 3 3 2 + 0 1 12 2 <_> - 0 4 1 1 + 0 2 1 1 <_> - 0 5 3 3 + 0 2 1 2 + <_> + + 0 2 2 1 + <_> + + 0 3 1 1 + <_> + + 0 3 11 1 + <_> + + 0 4 1 3 + <_> + + 0 5 1 1 + <_> + + 0 6 1 1 + <_> + + 0 6 1 2 <_> 0 7 1 1 <_> - 0 7 1 2 + 0 7 2 1 + <_> + + 0 7 2 2 + <_> + + 0 9 1 1 + <_> + + 0 9 3 1 + <_> + + 0 9 7 1 + <_> + + 0 10 1 1 <_> 0 10 2 1 <_> - 1 1 2 3 + 0 10 3 1 + <_> + + 0 10 6 1 + <_> + + 0 10 9 1 + <_> + + 0 10 13 1 + <_> + + 1 0 2 1 + <_> + + 1 1 8 1 + <_> + + 1 2 8 1 + <_> + + 1 2 12 1 + <_> + + 1 3 11 1 + <_> + + 1 4 2 1 + <_> + + 1 10 2 1 + <_> + + 1 10 7 1 + <_> + + 2 0 1 3 <_> - 1 1 9 2 + 2 0 11 2 <_> - 1 5 1 3 + 2 1 12 1 <_> - 2 1 12 2 + 2 2 1 1 <_> - 2 2 13 1 + 2 2 1 2 <_> - 2 3 12 1 + 2 4 1 3 <_> - 3 0 12 3 + 2 5 2 1 <_> - 3 3 9 1 + 2 10 2 1 + <_> + + 3 4 11 1 + <_> + + 3 5 1 2 + <_> + + 3 6 1 2 + <_> + + 3 9 11 1 + <_> + + 4 0 3 1 + <_> + + 4 1 11 2 <_> 4 1 12 2 <_> - 4 11 7 1 + 4 5 9 1 + <_> + + 4 7 1 2 + <_> + + 4 9 8 1 + <_> + + 5 1 11 2 + <_> + + 5 2 11 1 + <_> + + 5 3 11 1 + <_> + + 5 4 10 1 + <_> + + 5 7 1 2 + <_> + + 5 10 2 1 + <_> + + 5 10 6 1 + <_> + + 6 2 5 1 <_> - 6 11 4 1 + 6 2 10 1 <_> - 6 11 5 1 + 6 3 11 1 + <_> + + 6 4 1 3 + <_> + + 6 5 1 1 + <_> + + 6 9 11 1 + <_> + + 6 10 3 1 <_> 7 1 1 3 <_> - 7 1 11 2 + 7 3 7 2 + <_> + + 7 4 1 3 + <_> + + 7 7 1 2 + <_> + + 7 9 3 1 + <_> + + 7 10 4 1 <_> - 7 2 6 1 + 8 0 1 3 <_> - 7 4 10 1 + 8 3 6 2 <_> - 8 2 7 3 + 8 3 8 2 <_> - 8 8 3 2 + 8 6 8 2 <_> - 9 1 5 1 + 8 7 6 2 <_> - 9 3 6 2 + 8 10 6 1 <_> - 10 7 6 2 + 9 0 1 1 <_> - 10 10 6 1 + 9 0 9 1 + <_> + + 9 1 1 3 + <_> + + 9 10 10 1 + <_> + + 10 0 1 3 + <_> + + 10 3 3 1 + <_> + + 11 0 1 3 <_> 11 1 1 3 <_> - 11 2 3 3 + 11 1 8 2 + <_> + + 11 6 1 1 <_> - 11 4 5 1 + 11 7 1 1 <_> - 12 1 1 3 + 11 7 1 2 <_> - 12 4 1 2 + 12 7 1 2 <_> - 13 0 9 1 + 13 0 2 2 + <_> + + 13 0 4 1 <_> 13 1 2 2 <_> - 13 11 9 1 + 13 3 3 3 + <_> + + 13 4 7 1 <_> - 14 4 3 3 + 13 5 3 2 <_> - 14 5 3 2 + 13 9 2 1 <_> - 14 5 3 3 + 13 10 2 1 <_> - 14 6 3 2 + 14 0 1 1 <_> - 14 11 6 1 + 14 0 4 1 + <_> + + 14 1 3 3 + <_> + + 14 2 8 1 + <_> + + 14 5 2 2 + <_> + + 15 0 2 1 + <_> + + 15 1 6 1 + <_> + + 15 4 2 1 + <_> + + 15 4 2 2 + <_> + + 15 5 1 2 <_> 15 5 2 2 <_> - 16 0 3 1 + 15 7 1 1 <_> - 16 5 1 2 + 15 10 5 1 <_> - 16 5 2 2 + 16 9 3 1 <_> - 17 0 6 1 + 17 0 2 1 <_> 17 1 2 2 + <_> + + 17 3 2 1 + <_> + + 17 5 1 2 + <_> + + 17 10 2 1 + <_> + + 17 10 6 1 + <_> + + 18 0 2 1 <_> 18 0 2 3 <_> - 19 7 2 2 + 18 0 3 1 + <_> + + 18 7 2 2 + <_> + + 18 10 2 1 + <_> + + 19 10 7 1 <_> - 19 11 5 1 + 20 0 1 1 <_> - 20 4 3 1 + 20 0 2 1 + <_> + + 20 7 1 2 + <_> + + 20 9 5 1 + <_> + + 20 10 4 1 + <_> + + 21 0 1 3 <_> 21 1 1 3 <_> - 21 11 6 1 + 21 1 6 1 + <_> + + 21 4 5 1 + <_> + + 21 6 1 2 + <_> + + 21 7 1 2 + <_> + + 21 10 5 1 + <_> + + 22 0 1 2 + <_> + + 22 0 1 3 + <_> + + 22 9 5 1 + <_> + + 23 0 1 1 + <_> + + 23 6 2 2 + <_> + + 24 4 3 1 + <_> + + 25 0 4 1 + <_> + + 25 7 1 2 + <_> + + 26 1 1 3 + <_> + + 26 5 1 2 + <_> + + 26 6 1 1 + <_> + + 26 7 1 2 + <_> + + 27 0 4 1 + <_> + + 28 0 4 1 + <_> + + 29 6 1 2 + <_> + + 30 0 1 3 + <_> + + 30 3 2 2 + <_> + + 30 5 1 2 + <_> + + 30 6 1 2 + <_> + + 30 7 1 2 + <_> + + 31 3 1 2 + <_> + + 31 4 3 3 + <_> + + 31 7 1 2 + <_> + + 31 9 3 1 <_> - 22 5 2 1 + 31 10 3 1 <_> - 23 0 1 4 + 32 0 1 1 <_> - 23 11 5 1 + 32 6 1 1 <_> - 24 3 2 2 + 33 0 2 3 <_> - 24 5 2 2 + 34 2 2 2 <_> - 25 4 3 1 + 34 7 2 2 <_> - 26 8 1 2 + 34 8 2 1 <_> - 27 3 2 2 + 34 10 2 1 <_> - 29 11 3 1 + 36 0 1 1 <_> - 30 2 4 2 + 36 3 1 2 <_> - 32 0 2 1 + 37 0 1 1 <_> - 33 1 3 3 + 37 1 1 1 <_> - 33 8 3 2 + 37 2 1 1 <_> - 33 11 3 1 + 37 3 1 1 <_> - 35 1 2 3 + 37 4 1 2 <_> - 36 1 2 3 + 37 6 1 1 <_> - 36 8 2 2 + 37 7 1 1 <_> - 39 2 1 3 + 37 7 1 2 <_> - 39 3 1 1 + 37 8 1 1 <_> - 39 3 1 2 + 37 9 1 1 <_> - 39 4 1 1 + 37 10 1 1 diff --git a/src/android/assets/runtime_data/region/br2.xml b/src/android/assets/runtime_data/region/br2.xml new file mode 100644 index 0000000..47aa4c4 --- /dev/null +++ b/src/android/assets/runtime_data/region/br2.xml @@ -0,0 +1,669 @@ + + + + BOOST + LBP + 24 + 28 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 12 + + + <_> + 4 + -2.0200068950653076e+00 + + <_> + + 0 -1 48 -67108865 -10486837 -1073684344 -8916981 -762584854 + -68435421 1073987722 -1 + + -9.2319446802139282e-01 1.7767988145351410e-01 + <_> + + 0 -1 26 -1049862 -202116904 -976568128 -205025158 -613560086 + -606353766 -539504246 -1057793 + + -8.6242151260375977e-01 4.1715285181999207e-01 + <_> + + 0 -1 50 -201326625 -657141281 1457538271 1366147551 + -522716165 1346657781 -506470657 1365245951 + + -7.9889923334121704e-01 5.2786636352539063e-01 + <_> + + 0 -1 1 -2080321318 -2145966 -1525811713 1566267615 + -2147420181 -1612756241 251913211 -67122177 + + -7.1385616064071655e-01 5.6450831890106201e-01 + + <_> + 5 + -2.6409916877746582e+00 + + <_> + + 0 -1 39 -2097153 -179060734 -3156481 1964237315 -100663553 + -1122244438 -16777217 -2049 + + -8.8834857940673828e-01 3.4894090890884399e-01 + <_> + + 0 -1 59 -556802558 -66330301 -1764503279 -716451053 + -38806322 -655637925 -739519269 -1 + + -8.1500864028930664e-01 3.9016029238700867e-01 + <_> + + 0 -1 12 -68159493 -150932942 -752124677 1392767813 + 2033449915 -822020479 -673914913 1396965375 + + -7.3737746477127075e-01 5.3011864423751831e-01 + <_> + + 0 -1 41 -73402118 -135042074 -1652375488 -136604716 + -10751346 -1661874722 -752959236 -13115649 + + -7.4220645427703857e-01 4.9306350946426392e-01 + <_> + + 0 -1 23 1091027714 -150158003 -582588673 -716712063 + 1342634686 -598815057 -477761553 -551827681 + + -6.9332039356231689e-01 4.8989033699035645e-01 + + <_> + 5 + -1.5841789245605469e+00 + + <_> + + 0 -1 19 -1 -211312478 -205531149 -75501245 -69468161 + -88087670 -34608129 -1 + + -8.8020581007003784e-01 2.8018224239349365e-01 + <_> + + 0 -1 55 -84935986 -94112054 -1731725174 -641208137 -22021489 + -360123190 -794037281 -611581953 + + -8.3080464601516724e-01 2.8177833557128906e-01 + <_> + + 0 -1 3 -420485502 -343179414 -2102728670 1375725283 + -12065086 -821570493 -947660801 -1050625 + + -7.3790472745895386e-01 4.4913527369499207e-01 + <_> + + 0 -1 30 -671350785 -541329517 -107086369 -682764394 + -540016641 -560398914 -573444130 1360127059 + + -7.0008111000061035e-01 5.0303238630294800e-01 + <_> + + 0 -1 63 -16777590 1836055226 -2032180702 1121974975 + -531676414 -2034049491 1364682256 -679477249 + + -7.3480564355850220e-01 5.0544387102127075e-01 + + <_> + 5 + -1.8767446279525757e+00 + + <_> + + 0 -1 24 -134220802 -67111937 -217058593 -2360333 -77332497 + -1715211301 -74448897 -2049 + + -9.0943157672882080e-01 -5.4036870598793030e-02 + <_> + + 0 -1 48 -202901505 -3133 -2147426304 2070931595 1921245386 + 1935663170 254602 -2081 + + -7.7308130264282227e-01 3.5273641347885132e-01 + <_> + + 0 -1 21 1343311888 -640331371 393592285 1604262175 + -1550600262 -1614807297 -1073759297 -16481 + + -7.0263242721557617e-01 4.9730697274208069e-01 + <_> + + 0 -1 4 -692852022 -671653334 1079345280 1998565839 + 1633155007 1363662362 1426560975 2002778111 + + -7.9796797037124634e-01 4.5096334815025330e-01 + <_> + + 0 -1 60 -2138 -271581587 -366239230 -1840775673 -12726 + 1245708134 1357836866 -87031841 + + -7.5023615360260010e-01 4.5097395777702332e-01 + + <_> + 5 + -1.9083664417266846e+00 + + <_> + + 0 -1 35 -1 -1053 -213647377 -2897 516746 51373706 324008399 + -2097153 + + -9.0389448404312134e-01 -1.1493546515703201e-01 + <_> + + 0 -1 43 -85200150 -203439167 -213385233 -70519857 -16844561 + -7342081 -687867921 -204474401 + + -7.6944518089294434e-01 2.7061909437179565e-01 + <_> + + 0 -1 36 -583475716 -539978244 -1143882241 1608080885 + -1615292161 -107464260 -1347638337 1000152024 + + -7.3831391334533691e-01 3.9326193928718567e-01 + <_> + + 0 -1 53 -672141329 -785925174 476361903 1363607470 + -234881025 1073899142 -1745889281 1364196239 + + -7.1722269058227539e-01 4.0664187073707581e-01 + <_> + + 0 -1 15 1950937176 -144695968 491822585 2036924433 + -1440700178 -1162316120 302570495 152573192 + + -7.5502556562423706e-01 4.3155083060264587e-01 + + <_> + 5 + -1.8426346778869629e+00 + + <_> + + 0 -1 31 -2099201 -140545 -2100225 -1 -6422532 -16220032 -1 + -2097233 + + -8.7742716073989868e-01 -1.1231603473424911e-01 + <_> + + 0 -1 14 1409332178 -40967 1069547519 -59973 -1456930817 + -29185 -1655967745 -37125 + + -7.4323379993438721e-01 2.0877787470817566e-01 + <_> + + 0 -1 49 -134217729 -8652929 -268673793 -1614020609 + -134218753 -57081873 1350549213 1431302623 + + -6.6647547483444214e-01 3.7794494628906250e-01 + <_> + + 0 -1 0 -22362622 -8978441 573201186 -625281229 -389376030 + 1202190598 -942673973 -11537413 + + -6.7364996671676636e-01 4.1429626941680908e-01 + <_> + + 0 -1 27 -203425281 2142185198 1073946624 1971314820 + -504372310 850992238 91334 1476393979 + + -6.9137978553771973e-01 4.3171164393424988e-01 + + <_> + 3 + -1.4129228591918945e+00 + + <_> + + 0 -1 22 957366269 -188651 -551298049 -9105031 -1097155585 + -1078068801 -1947668481 -1616377704 + + -9.1420644521713257e-01 3.7511521577835083e-01 + <_> + + 0 -1 25 16777304 -545323139 663987711 2140603605 -1346388485 + -9222 461939647 -1073868657 + + -9.1892683506011963e-01 3.4843826293945313e-01 + <_> + + 0 -1 18 -640681222 -35788040 -1879023576 -144739679 + -1196623634 -24846142 2085605339 -10485829 + + -8.3249509334564209e-01 4.2021048069000244e-01 + + <_> + 6 + -2.1827182769775391e+00 + + <_> + + 0 -1 16 -676291075 -59527 -131073 -2263043 -1615020289 + -1073766405 -1078264321 -1079501315 + + -8.7743735313415527e-01 -2.1265141665935516e-01 + <_> + + 0 -1 61 -129 -1573905 2080372337 -546308097 -631243253 + -817902017 1440728371 -1 + + -6.1447614431381226e-01 3.6167511343955994e-01 + <_> + + 0 -1 28 1034948984 1609908088 1072987613 2147039209 + -1699205633 -285600004 716750847 531633420 + + -7.3482316732406616e-01 2.9262691736221313e-01 + <_> + + 0 -1 35 -22020114 2144598374 -144867346 1811018927 33418 + 21194274 302971086 1607466975 + + -7.4089962244033813e-01 3.0215385556221008e-01 + <_> + + 0 -1 38 -1026 1361129472 -70254610 1460875274 -136318738 + 309207592 -136319265 2070377871 + + -6.9874203205108643e-01 3.6844456195831299e-01 + <_> + + 0 -1 37 426779060 -604029380 2145378271 -1073867285 + -1082233345 -1879228449 -71525379 -1078120705 + + -6.1097669601440430e-01 3.7921726703643799e-01 + + <_> + 6 + -2.1682424545288086e+00 + + <_> + + 0 -1 6 -1 -286284113 -1099170829 -352321537 -2049 -813695553 + -2057 -1 + + -8.7457454204559326e-01 -2.3045821487903595e-01 + <_> + + 0 -1 57 -408162814 -985411829 -31719629 -1053294785 + -37785825 722455391 -542115905 -67108865 + + -7.6206994056701660e-01 9.8814539611339569e-02 + <_> + + 0 -1 44 -8389633 1886388094 4218890 1346556559 -612371505 + -1472496520 302048458 -45089809 + + -5.8149963617324829e-01 3.4274771809577942e-01 + <_> + + 0 -1 8 -931083048 -540685315 -1102282785 1332862667 + 135301022 -578954028 2141962239 -543170837 + + -6.0673421621322632e-01 3.5551807284355164e-01 + <_> + + 0 -1 5 -212076574 -168573070 955490914 -134225178 -210700337 + 1997992999 1937191387 -134220801 + + -6.0471540689468384e-01 3.8508275151252747e-01 + <_> + + 0 -1 33 616832636 1006403029 -147971 2138922932 -1091518977 + -1073955908 534040575 230169732 + + -7.3513597249984741e-01 2.9909896850585938e-01 + + <_> + 7 + -1.8949753046035767e+00 + + <_> + + 0 -1 20 -1 -137370966 -167774209 -2229 -4194561 -85197073 + -570425345 -1 + + -8.6097538471221924e-01 -1.6319444775581360e-01 + <_> + + 0 -1 62 -161 -101712401 2079317025 -209717249 -17834161 + -27263873 -671091373 -1 + + -5.9411269426345825e-01 2.9929211735725403e-01 + <_> + + 0 -1 13 -866123600 -1655170800 -1736885253 -1648918063 + 245504216 -350743936 314350335 423237791 + + -6.5670984983444214e-01 2.9690742492675781e-01 + <_> + + 0 -1 56 -612370450 1380974540 1074058816 17104718 -68158465 + -1294206529 -250282246 1906310079 + + -7.4492782354354858e-01 2.6959604024887085e-01 + <_> + + 0 -1 29 -138946750 -1574079 1397979095 -680541311 -135792926 + -675356281 -142092801 -682376445 + + -5.5088245868682861e-01 4.0644043684005737e-01 + <_> + + 0 -1 2 -1360311293 -827388629 -26811149 3862143 1183309551 + -299892745 1181742259 -855646977 + + -5.4480969905853271e-01 3.8415440917015076e-01 + <_> + + 0 -1 40 438049821 -75942535 -107085825 2138256891 1072873469 + -1073874186 2130624509 -1073857859 + + -5.2291977405548096e-01 4.1930496692657471e-01 + + <_> + 7 + -1.6987801790237427e+00 + + <_> + + 0 -1 17 -1 -223612126 -237242629 -1575941 -68157505 + -1142163670 -335545617 -1 + + -8.6684393882751465e-01 -2.4625267088413239e-01 + <_> + + 0 -1 51 -1 -606601233 -1100223505 -2099377 -1303448950 + -1290584000 -85228822 -33 + + -6.0389131307601929e-01 2.8166931867599487e-01 + <_> + + 0 -1 11 -4202498 2145908715 2016557592 1378924759 1970778308 + -1553468441 89207837 2122317823 + + -6.3584578037261963e-01 2.6573029160499573e-01 + <_> + + 0 -1 58 -353371008 -657465966 1190133011 -721160335 + -167813235 -616047649 -285214779 -76546177 + + -6.1458301544189453e-01 2.9738888144493103e-01 + <_> + + 0 -1 7 255877118 -389314 -287264801 -15440458 913184767 + -276932747 443694079 705709936 + + -6.5274596214294434e-01 3.1795260310173035e-01 + <_> + + 0 -1 42 -135266337 1895883976 1079105624 1359177356 + -90443825 -1610439442 -985404722 -83099649 + + -5.0249767303466797e-01 3.9825597405433655e-01 + <_> + + 0 -1 34 -78653457 -214769462 -306843307 1460523471 + -716320632 1359073280 -1857207099 -950009897 + + -5.2148115634918213e-01 3.8696458935737610e-01 + + <_> + 8 + -1.8110905885696411e+00 + + <_> + + 0 -1 32 -136445953 -2229251 -570607617 -21190 -11468802 + -1265688 -335557377 -5529430 + + -8.6109679937362671e-01 -3.0958902835845947e-01 + <_> + + 0 -1 9 -1 -8929301 -1611404289 1459855291 -327702 -867972113 + -85 1400106939 + + -6.7157512903213501e-01 9.4840347766876221e-02 + <_> + + 0 -1 46 -2098996 -539625481 -206371 -3148089 -236982049 + 1977612257 -143142177 1598551887 + + -6.1250638961791992e-01 2.5699236989021301e-01 + <_> + + 0 -1 54 -33562882 1363716248 -151019272 1908489980 -37748740 + 269801148 -1778384898 1040056253 + + -6.3310855627059937e-01 2.6527416706085205e-01 + <_> + + 0 -1 47 2080374782 -539660939 -312771250 -42467763 + -136446209 -1099795848 -2078290738 1359299592 + + -6.2945646047592163e-01 2.8813731670379639e-01 + <_> + + 0 -1 45 -134218353 -145786421 1078087119 1392754671 + -161480798 508790636 -2136569202 511683 + + -5.7064145803451538e-01 3.1163769960403442e-01 + <_> + + 0 -1 52 1052521273 2106341237 -69369857 -8522771 -1653293317 + -1174602498 -1879244801 -1617412612 + + -4.3977555632591248e-01 4.2958027124404907e-01 + <_> + + 0 -1 10 -489984478 -1565602194 -962401229 -500564317 + 1677543368 -820056623 -84424987 -948045867 + + -6.1380976438522339e-01 3.0440369248390198e-01 + + <_> + + 0 0 2 8 + <_> + + 0 0 6 2 + <_> + + 0 5 1 4 + <_> + + 0 6 2 4 + <_> + + 0 8 3 5 + <_> + + 0 9 3 3 + <_> + + 0 11 1 2 + <_> + + 0 20 5 1 + <_> + + 1 0 7 3 + <_> + + 1 1 4 6 + <_> + + 1 9 1 2 + <_> + + 1 12 2 4 + <_> + + 3 2 3 6 + <_> + + 3 12 8 1 + <_> + + 4 0 5 2 + <_> + + 5 13 6 1 + <_> + + 5 20 6 1 + <_> + + 6 7 2 5 + <_> + + 6 8 3 3 + <_> + + 6 9 2 4 + <_> + + 6 10 2 3 + <_> + + 7 0 7 2 + <_> + + 7 21 4 1 + <_> + + 8 0 2 4 + <_> + + 8 0 2 6 + <_> + + 8 0 4 2 + <_> + + 8 6 2 4 + <_> + + 8 9 2 4 + <_> + + 8 20 3 1 + <_> + + 9 1 2 4 + <_> + + 9 1 3 6 + <_> + + 9 11 3 2 + <_> + + 9 13 3 1 + <_> + + 9 21 2 1 + <_> + + 10 7 2 4 + <_> + + 10 8 2 5 + <_> + + 10 18 5 2 + <_> + + 11 0 2 1 + <_> + + 12 8 2 5 + <_> + + 12 10 2 3 + <_> + + 13 0 2 1 + <_> + + 13 6 3 4 + <_> + + 13 9 2 3 + <_> + + 14 0 2 7 + <_> + + 14 8 2 4 + <_> + + 14 12 2 2 + <_> + + 15 0 2 7 + <_> + + 15 1 3 6 + <_> + + 15 8 2 4 + <_> + + 16 2 3 5 + <_> + + 16 5 3 4 + <_> + + 16 10 2 3 + <_> + + 16 21 2 1 + <_> + + 17 6 3 5 + <_> + + 18 15 3 3 + <_> + + 19 0 3 7 + <_> + + 19 8 3 5 + <_> + + 22 0 2 5 + <_> + + 22 0 2 6 + <_> + + 22 0 2 7 + <_> + + 22 8 2 4 + <_> + + 25 8 1 3 + <_> + + 25 10 1 2 + <_> + + 25 11 1 2 + diff --git a/src/android/assets/runtime_data/region/eu.xml b/src/android/assets/runtime_data/region/eu.xml index 52288d3..bffd66e 100644 --- a/src/android/assets/runtime_data/region/eu.xml +++ b/src/android/assets/runtime_data/region/eu.xml @@ -1,819 +1,819 @@ - - - - BOOST - LBP - 13 - 52 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 12 - - - <_> - 4 - -1.8097745180130005e+00 - - <_> - - 0 -1 40 805311953 -691727 2113524735 -2108461 -1078407169 - -4473889 -1146109953 -1074185492 - - -8.3389264345169067e-01 6.6482132673263550e-01 - <_> - - 0 -1 14 -1624723464 -4443984 -64703235 -1216868228 -7684673 - -1070151 -1618019585 -1433916280 - - -7.7608370780944824e-01 5.8700811862945557e-01 - <_> - - 0 -1 19 614727832 -1612616257 1745255677 -6475305 - -1366753605 -1079144802 1002113791 -1629746758 - - -6.9801986217498779e-01 5.1161581277847290e-01 - <_> - - 0 -1 45 -2147269630 -2099757 -772579841 -547884401 - -609488921 -76826409 -371196929 -1039424890 - - -6.3432163000106812e-01 4.9822175502777100e-01 - - <_> - 6 - -1.6889376640319824e+00 - - <_> - - 0 -1 37 823136753 -2542607 1599577599 -2237985 -1147536901 - -71591686 -1148470273 -1075901777 - - -7.8587698936462402e-01 5.9190028905868530e-01 - <_> - - 0 -1 22 1600978680 -33696264 -1084877327 -58928 -1146963009 - -5579557 -546776577 -1618474808 - - -6.5951651334762573e-01 5.8263260126113892e-01 - <_> - - 0 -1 21 -462951934 13628047 -509885886 -352329529 -899942545 - 1078690347 -202390009 -512232577 - - -6.3200807571411133e-01 5.2623480558395386e-01 - <_> - - 0 -1 51 487594460 -619080456 -1718052525 -1075865123 - -71540772 -76707172 -548220929 -128836 - - -5.7273632287979126e-01 5.5056226253509521e-01 - <_> - - 0 -1 60 -479993342 -527044089 -626798585 1653596839 - 1110959381 575397931 -77506010 1937757023 - - -6.4247721433639526e-01 5.0577211380004883e-01 - <_> - - 0 -1 46 268457040 -2138636 -6980099 -34121275 -1427580418 - -335560209 -1734673665 -1719069704 - - -6.7786401510238647e-01 4.5851442217826843e-01 - - <_> - 5 - -1.3629199266433716e+00 - - <_> - - 0 -1 78 -1270 -385885489 -1072442624 -101202993 -205784318 - 50579755 -223875328 -134217729 - - -8.0022150278091431e-01 4.2767858505249023e-01 - <_> - - 0 -1 43 805852408 -1240592 -1178348033 1566527989 - -1188320001 -67132721 -1148604417 -1077994501 - - -7.1916246414184570e-01 5.3092259168624878e-01 - <_> - - 0 -1 52 -2099542 279371931 570426146 25981188 -138186334 - 269492775 1459827403 2013265919 - - -7.1977400779724121e-01 4.2900100350379944e-01 - <_> - - 0 -1 17 -538974994 148694470 -1944156952 -1982269969 - 1299832780 267128979 -74908676 -1025 - - -6.0405021905899048e-01 5.2153891324996948e-01 - <_> - - 0 -1 39 928529624 -202827784 2018546933 -77671227 - -1633105201 -106405207 420279249 252182572 - - -7.9407596588134766e-01 4.4149830937385559e-01 - - <_> - 6 - -1.6914845705032349e+00 - - <_> - - 0 -1 74 -117447418 -203424957 -1333007190 -136315905 - -207628529 1527491074 -273419265 -469763089 - - -7.6240599155426025e-01 4.2571428418159485e-01 - <_> - - 0 -1 10 -881930242 -1081718372 759341055 -1079899620 - -9704705 -10834632 -80831553 -1366686534 - - -7.0847225189208984e-01 4.7101745009422302e-01 - <_> - - 0 -1 56 -65538 1059902300 1649449468 495195900 -1188287571 - 719866089 413712380 -17409 - - -6.0372650623321533e-01 5.1609545946121216e-01 - <_> - - 0 -1 34 -1073486846 -545265809 -2101249 -134217745 - -276824065 -538968073 -704659973 -1072701149 - - -5.2723455429077148e-01 5.9482514858245850e-01 - <_> - - 0 -1 59 -1744826288 -71879692 -1785233955 -323460 - -1164198417 -4576611 -1879442465 -1098374692 - - -6.6947019100189209e-01 4.8889532685279846e-01 - <_> - - 0 -1 5 -420483410 -1594899217 -532159314 -932782337 - 1943533343 1696295075 -134559905 -34078725 - - -6.8049335479736328e-01 4.5776519179344177e-01 - - <_> - 5 - -1.0514695644378662e+00 - - <_> - - 0 -1 0 -1899833345 -1060353 -545816577 -2369025 -1953517569 - -4200225 -1412707329 -1884303875 - - -7.1151864528656006e-01 4.1955834627151489e-01 - <_> - - 0 -1 26 470291672 1594456488 923230163 -2155043 -548005457 - -1156854119 -1148534817 -1074156579 - - -6.6359061002731323e-01 4.6632391214370728e-01 - <_> - - 0 -1 73 -2098180 1406937524 18879260 1072970683 1604073656 - 386138325 2141787068 -1 - - -6.0595369338989258e-01 4.8956662416458130e-01 - <_> - - 0 -1 48 -1065107456 -72363733 -83362849 -536886273 - -615521281 -73727349 -104368129 -1039669885 - - -5.7387554645538330e-01 5.1478314399719238e-01 - <_> - - 0 -1 30 -804220688 -604380848 93818999 1903284625 - -1837057622 -105322486 1001658814 146809632 - - -6.8071007728576660e-01 4.5826134085655212e-01 - - <_> - 7 - -1.2851260900497437e+00 - - <_> - - 0 -1 76 -469762302 -406855813 -900735066 -754977809 - -480248062 1467738447 -947127609 -738198529 - - -7.7277177572250366e-01 1.8757019937038422e-01 - <_> - - 0 -1 41 -1879043887 -697865 -8921089 -2661417 -1141637121 - -6917 -1080640513 -1077996323 - - -6.5664166212081909e-01 4.0080460906028748e-01 - <_> - - 0 -1 54 523766968 1071455224 930560885 -2098947 2106400509 - -1078052162 1591720959 -1075896931 - - -6.1509358882904053e-01 4.2310744524002075e-01 - <_> - - 0 -1 64 -8651778 -4277508 799804080 1006344958 -14402568 - 410268661 2147327960 -1 - - -4.9080836772918701e-01 5.2360612154006958e-01 - <_> - - 0 -1 24 1088939042 1810221070 -279576713 -404492753 - 1618469823 718008371 -149431041 1614276131 - - -6.7838019132614136e-01 3.8422819972038269e-01 - <_> - - 0 -1 58 -1073494493 -2129 -134254593 -134219777 -134217793 - -1 -306473026 -1018443994 - - -4.2494711279869080e-01 5.7714998722076416e-01 - <_> - - 0 -1 33 -5221000 -1114344044 -1099382275 -319523 1782890237 - -17110082 1000266751 -1909977844 - - -6.6518503427505493e-01 3.9107745885848999e-01 - - <_> - 7 - -1.3347427845001221e+00 - - <_> - - 0 -1 35 -1064835289 -262657 -304612481 -10753 -68160513 - -72365105 -337910785 -509876305 - - -6.8524187803268433e-01 3.7823274731636047e-01 - <_> - - 0 -1 6 -285278470 550824651 -1094793490 -1427444482 - -12229897 1936169977 -270537745 -1281 - - -6.9259029626846313e-01 3.6514124274253845e-01 - <_> - - 0 -1 50 -2 1072971740 1469594812 2147236670 1072445948 - 1071398300 258306045 2138439679 - - -6.4422893524169922e-01 3.5341870784759521e-01 - <_> - - 0 -1 77 -1065714 254791671 -731382782 -2101936449 1842282242 - 2013256162 1924135744 -469762069 - - -6.3399165868759155e-01 3.5231015086174011e-01 - <_> - - 0 -1 12 -561580302 -605386104 -1675307299 -35200410 - -1192691478 -7641158 -581569329 -1369166102 - - -5.7274460792541504e-01 4.2036578059196472e-01 - <_> - - 0 -1 55 -2138864126 -4201985 -642265613 -210241921 -19989761 - -3952177 -141558833 -2095331545 - - -5.2967888116836548e-01 4.3784245848655701e-01 - <_> - - 0 -1 8 -830297412 -7802014 1277567223 1068347800 2064507871 - -69260897 -70362181 -1083442246 - - -5.0855410099029541e-01 4.3978407979011536e-01 - - <_> - 7 - -1.1835207939147949e+00 - - <_> - - 0 -1 62 -1025 -4396129 1971420605 2147480543 -72745987 - 999057909 998865912 -1 - - -6.2991225719451904e-01 4.2762723565101624e-01 - <_> - - 0 -1 11 -1499277837 -1056769 -575146113 -3147017 -1906574593 - -4199525 -1409286145 -1360048899 - - -5.1901364326477051e-01 4.7817090153694153e-01 - <_> - - 0 -1 65 -1 1069088700 -42160132 2147384700 -216067 183271421 - 1070607356 -1 - - -3.9919072389602661e-01 5.6214183568954468e-01 - <_> - - 0 -1 7 -357904642 231662471 10134269 1534886015 1336724732 - 1600028668 939520767 -805610049 - - -5.3103089332580566e-01 4.1148453950881958e-01 - <_> - - 0 -1 27 1078457858 -137102849 -1002967209 -671383873 - 1475047263 1759237042 2053111259 1079494146 - - -6.8956327438354492e-01 3.1366679072380066e-01 - <_> - - 0 -1 69 1543485614 532452284 465371692 1071593917 805052841 - 114115064 801844479 2145353727 - - -6.5592241287231445e-01 3.1573730707168579e-01 - <_> - - 0 -1 70 -1621418188 -12621959 -1156064295 -1619035693 - -1147405636 -72399880 264178616 162469136 - - -6.0899454355239868e-01 3.2693719863891602e-01 - - <_> - 8 - -1.3792396783828735e+00 - - <_> - - 0 -1 63 -896547289 -69206021 -113517697 -1052225 -68420609 - -67116645 -262145 -746600513 - - -6.4787888526916504e-01 3.4486734867095947e-01 - <_> - - 0 -1 16 682098471 16776910 -37761185 -67637249 -10748929 - -224138833 -11537429 -356519169 - - -5.3469586372375488e-01 4.4898313283920288e-01 - <_> - - 0 -1 80 -2097156 -550503779 -136588804 -1507362 -71830028 - 356891563 -3596 -33554441 - - -4.7742679715156555e-01 4.9222531914710999e-01 - <_> - - 0 -1 31 -9447425 -18531 1463749625 1467983669 -1619632146 - -1088585865 1599745195 2066940426 - - -4.2506697773933411e-01 5.0970840454101562e-01 - <_> - - 0 -1 9 -554774785 469641207 -1631651073 1064967857 - -689152273 -591873 -71685 -10289665 - - -3.9916789531707764e-01 5.2942800521850586e-01 - <_> - - 0 -1 32 -460868 -1149758532 -1955583982 999878622 995457144 - 100663605 769463536 1609564143 - - -6.4832550287246704e-01 3.3265480399131775e-01 - <_> - - 0 -1 61 -525614592 -73410230 -1055140389 1397186271 - 1796729711 -81276894 -10489481 1393553927 - - -5.8127319812774658e-01 3.2805305719375610e-01 - <_> - - 0 -1 71 -69206083 2140951352 1605407413 1073482444 - -1166230804 984105561 265051901 -4202499 - - -4.3958845734596252e-01 4.4159027934074402e-01 - - <_> - 9 - -1.6337682008743286e+00 - - <_> - - 0 -1 49 -1 -254281737 -847263745 -704649317 -547359277 - -214437129 -137368609 -1025 - - -5.8612054586410522e-01 5.3436428308486938e-01 - <_> - - 0 -1 3 -1964573706 -2163202 -629999617 1724277282 - -1345454081 -54273 -1947226113 -134494477 - - -5.9594768285751343e-01 3.4550479054450989e-01 - <_> - - 0 -1 25 -33624106 1979243351 -1684228388 -1327580354 - 1869634120 1507656105 1004215260 -65537 - - -5.5408185720443726e-01 3.4455263614654541e-01 - <_> - - 0 -1 20 216 -273853464 -1746981891 2147439095 -1342177362 - -1882457730 535869183 -1892939286 - - -6.8447190523147583e-01 2.6072457432746887e-01 - <_> - - 0 -1 79 -9470 -881859202 -472124544 1722743726 2040260640 - 88788209 -311968000 -420088102 - - -5.8676868677139282e-01 3.3556821942329407e-01 - <_> - - 0 -1 47 2147466972 2069665750 405150428 1073037215 721199016 - 465318864 1859398396 2139054079 - - -6.0411739349365234e-01 2.8773531317710876e-01 - <_> - - 0 -1 44 -1073955720 2142794040 2033980733 -1107354732 - -1141629188 -5309192 -340984065 796396953 - - -7.0512706041336060e-01 2.0565895736217499e-01 - <_> - - 0 -1 1 -285218257 641662811 -317140617 -1615220229 - 1397455865 1830527419 -480512675 1879048055 - - -4.5888698101043701e-01 3.7875139713287354e-01 - <_> - - 0 -1 67 -136335093 1363122398 -1475206391 2001653675 - -275119445 1368433380 831138571 2132278783 - - -4.4568619132041931e-01 3.9391869306564331e-01 - - <_> - 9 - -1.6722478866577148e+00 - - <_> - - 0 -1 13 -2097665 285007871 -14702337 -1073745441 -603979783 - -12805 -7606276 -33 - - -6.4239740371704102e-01 3.0229949951171875e-01 - <_> - - 0 -1 68 -1297 -605028505 1663525735 -4983053 -1132728133 - -326122023 -1512309265 -1049601 - - -3.4561732411384583e-01 6.5836638212203979e-01 - <_> - - 0 -1 28 -1879027627 -11273 -38282337 -69730305 -1192231939 - -263686 -1109656581 -1142203922 - - -4.3300274014472961e-01 4.2989093065261841e-01 - <_> - - 0 -1 75 -50337789 2147446389 -16778341 1374150655 -134224126 - 2013265911 -285214754 -202385409 - - -3.8676849007606506e-01 4.9856430292129517e-01 - <_> - - 0 -1 18 120097976 1060086728 -1389487875 -1137790177 - 1602117610 -1619061910 -35668997 -1343251714 - - -5.7169276475906372e-01 3.2476642727851868e-01 - <_> - - 0 -1 57 -293082161 1154481003 1111976386 1447558455 - 1677190926 69697407 1417113986 -1553 - - -4.1726982593536377e-01 4.2075014114379883e-01 - <_> - - 0 -1 29 -1313845040 -4467728 1134850749 -175787547 - -1194534214 -878738628 1573022699 883187712 - - -6.9330018758773804e-01 2.6707106828689575e-01 - <_> - - 0 -1 38 -78190598 -19340938 -1491289896 1809372080 524079264 - 491799709 1996433399 -16778277 - - -4.9384438991546631e-01 3.3502304553985596e-01 - <_> - - 0 -1 2 -1562189238 -691542934 -1197225897 -421099968 - 198047231 -273967949 954460927 -161480843 - - -5.9740668535232544e-01 2.6929464936256409e-01 - - <_> - 9 - -1.4638713598251343e+00 - - <_> - - 0 -1 53 -1 -4262913 2134212095 2145352703 -1058817 993552889 - 1055702527 -1 - - -5.8213829994201660e-01 4.4301766157150269e-01 - <_> - - 0 -1 23 -528260318 -75500601 -579380737 -2099850 -1063233 - -72614673 -69469185 -948439049 - - -4.8428696393966675e-01 3.6954393982887268e-01 - <_> - - 0 -1 72 -62975984 -109063308 -220856875 -212370443 - -1694834769 -4560166 872043843 -1157812201 - - -4.9901553988456726e-01 3.3146089315414429e-01 - <_> - - 0 -1 42 497556920 532413304 -1102144617 501201365 1535916763 - 1594493624 2142156779 1876574201 - - -6.4244377613067627e-01 2.4512745440006256e-01 - <_> - - 0 -1 4 1120136910 -521672978 111862860 -806363025 -516557833 - -670045001 1709173499 -67114049 - - -5.2952063083648682e-01 3.0346292257308960e-01 - <_> - - 0 -1 36 -997733374 -206319209 -415124517 -406932517 - -746852645 -7087441 -395582722 1111744578 - - -5.4006469249725342e-01 3.0697867274284363e-01 - <_> - - 0 -1 15 -720467974 -541134070 -1319464207 -1162493988 - -922194945 -1146112565 -741476891 -1349606460 - - -5.7269197702407837e-01 2.6673358678817749e-01 - <_> - - 0 -1 81 -100667637 657118705 -1242872032 2016867655 - -541072749 63672337 -136122523 -182452739 - - -4.3601182103157043e-01 3.6583909392356873e-01 - <_> - - 0 -1 66 -938523136 -69889 -1720331847 -2371401 -347348081 - -81010021 -646974889 56092062 - - -5.2380156517028809e-01 2.9095169901847839e-01 - - <_> - - 0 0 4 1 - <_> - - 0 1 2 3 - <_> - - 0 1 5 2 - <_> - - 0 1 6 1 - <_> - - 0 3 10 1 - <_> - - 0 5 3 2 - <_> - - 0 6 2 2 - <_> - - 0 9 5 1 - <_> - - 0 9 11 1 - <_> - - 0 10 4 1 - <_> - - 0 10 8 1 - <_> - - 1 0 3 1 - <_> - - 1 1 14 1 - <_> - - 1 4 2 3 - <_> - - 2 10 11 1 - <_> - - 2 10 14 1 - <_> - - 3 1 1 2 - <_> - - 3 4 2 3 - <_> - - 3 9 12 1 - <_> - - 4 0 8 1 - <_> - - 4 0 13 1 - <_> - - 4 2 1 2 - <_> - - 4 10 13 1 - <_> - - 5 0 1 2 - <_> - - 5 0 2 3 - <_> - - 5 7 1 2 - <_> - - 7 9 13 1 - <_> - - 10 0 2 3 - <_> - - 10 0 3 1 - <_> - - 10 1 8 1 - <_> - - 10 1 13 1 - <_> - - 10 2 12 1 - <_> - - 11 4 1 3 - <_> - - 11 10 5 1 - <_> - - 12 0 1 2 - <_> - - 13 0 1 2 - <_> - - 13 0 1 3 - <_> - - 13 0 9 1 - <_> - - 14 4 2 3 - <_> - - 15 10 10 1 - <_> - - 16 0 7 1 - <_> - - 17 0 4 1 - <_> - - 18 9 8 1 - <_> - - 19 0 8 1 - <_> - - 19 10 4 1 - <_> - - 20 0 1 2 - <_> - - 20 0 4 1 - <_> - - 20 7 2 2 - <_> - - 21 0 1 2 - <_> - - 21 4 2 2 - <_> - - 21 7 2 2 - <_> - - 21 9 7 1 - <_> - - 22 3 2 3 - <_> - - 24 7 1 2 - <_> - - 24 9 8 1 - <_> - - 25 0 1 2 - <_> - - 25 7 1 2 - <_> - - 26 3 2 1 - <_> - - 27 0 1 2 - <_> - - 27 0 6 1 - <_> - - 27 1 1 3 - <_> - - 28 0 1 3 - <_> - - 28 7 1 2 - <_> - - 30 0 1 2 - <_> - - 30 4 2 3 - <_> - - 30 7 1 2 - <_> - - 31 0 1 2 - <_> - - 31 3 3 3 - <_> - - 33 3 4 2 - <_> - - 34 6 3 2 - <_> - - 34 10 6 1 - <_> - - 35 7 1 2 - <_> - - 37 0 5 1 - <_> - - 37 4 2 3 - <_> - - 49 0 1 2 - <_> - - 49 1 1 1 - <_> - - 49 1 1 2 - <_> - - 49 2 1 1 - <_> - - 49 3 1 2 - <_> - - 49 4 1 2 - <_> - - 49 4 1 3 - <_> - - 49 8 1 1 - + + + + BOOST + LBP + 13 + 52 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 12 + + + <_> + 4 + -1.8097745180130005e+00 + + <_> + + 0 -1 40 805311953 -691727 2113524735 -2108461 -1078407169 + -4473889 -1146109953 -1074185492 + + -8.3389264345169067e-01 6.6482132673263550e-01 + <_> + + 0 -1 14 -1624723464 -4443984 -64703235 -1216868228 -7684673 + -1070151 -1618019585 -1433916280 + + -7.7608370780944824e-01 5.8700811862945557e-01 + <_> + + 0 -1 19 614727832 -1612616257 1745255677 -6475305 + -1366753605 -1079144802 1002113791 -1629746758 + + -6.9801986217498779e-01 5.1161581277847290e-01 + <_> + + 0 -1 45 -2147269630 -2099757 -772579841 -547884401 + -609488921 -76826409 -371196929 -1039424890 + + -6.3432163000106812e-01 4.9822175502777100e-01 + + <_> + 6 + -1.6889376640319824e+00 + + <_> + + 0 -1 37 823136753 -2542607 1599577599 -2237985 -1147536901 + -71591686 -1148470273 -1075901777 + + -7.8587698936462402e-01 5.9190028905868530e-01 + <_> + + 0 -1 22 1600978680 -33696264 -1084877327 -58928 -1146963009 + -5579557 -546776577 -1618474808 + + -6.5951651334762573e-01 5.8263260126113892e-01 + <_> + + 0 -1 21 -462951934 13628047 -509885886 -352329529 -899942545 + 1078690347 -202390009 -512232577 + + -6.3200807571411133e-01 5.2623480558395386e-01 + <_> + + 0 -1 51 487594460 -619080456 -1718052525 -1075865123 + -71540772 -76707172 -548220929 -128836 + + -5.7273632287979126e-01 5.5056226253509521e-01 + <_> + + 0 -1 60 -479993342 -527044089 -626798585 1653596839 + 1110959381 575397931 -77506010 1937757023 + + -6.4247721433639526e-01 5.0577211380004883e-01 + <_> + + 0 -1 46 268457040 -2138636 -6980099 -34121275 -1427580418 + -335560209 -1734673665 -1719069704 + + -6.7786401510238647e-01 4.5851442217826843e-01 + + <_> + 5 + -1.3629199266433716e+00 + + <_> + + 0 -1 78 -1270 -385885489 -1072442624 -101202993 -205784318 + 50579755 -223875328 -134217729 + + -8.0022150278091431e-01 4.2767858505249023e-01 + <_> + + 0 -1 43 805852408 -1240592 -1178348033 1566527989 + -1188320001 -67132721 -1148604417 -1077994501 + + -7.1916246414184570e-01 5.3092259168624878e-01 + <_> + + 0 -1 52 -2099542 279371931 570426146 25981188 -138186334 + 269492775 1459827403 2013265919 + + -7.1977400779724121e-01 4.2900100350379944e-01 + <_> + + 0 -1 17 -538974994 148694470 -1944156952 -1982269969 + 1299832780 267128979 -74908676 -1025 + + -6.0405021905899048e-01 5.2153891324996948e-01 + <_> + + 0 -1 39 928529624 -202827784 2018546933 -77671227 + -1633105201 -106405207 420279249 252182572 + + -7.9407596588134766e-01 4.4149830937385559e-01 + + <_> + 6 + -1.6914845705032349e+00 + + <_> + + 0 -1 74 -117447418 -203424957 -1333007190 -136315905 + -207628529 1527491074 -273419265 -469763089 + + -7.6240599155426025e-01 4.2571428418159485e-01 + <_> + + 0 -1 10 -881930242 -1081718372 759341055 -1079899620 + -9704705 -10834632 -80831553 -1366686534 + + -7.0847225189208984e-01 4.7101745009422302e-01 + <_> + + 0 -1 56 -65538 1059902300 1649449468 495195900 -1188287571 + 719866089 413712380 -17409 + + -6.0372650623321533e-01 5.1609545946121216e-01 + <_> + + 0 -1 34 -1073486846 -545265809 -2101249 -134217745 + -276824065 -538968073 -704659973 -1072701149 + + -5.2723455429077148e-01 5.9482514858245850e-01 + <_> + + 0 -1 59 -1744826288 -71879692 -1785233955 -323460 + -1164198417 -4576611 -1879442465 -1098374692 + + -6.6947019100189209e-01 4.8889532685279846e-01 + <_> + + 0 -1 5 -420483410 -1594899217 -532159314 -932782337 + 1943533343 1696295075 -134559905 -34078725 + + -6.8049335479736328e-01 4.5776519179344177e-01 + + <_> + 5 + -1.0514695644378662e+00 + + <_> + + 0 -1 0 -1899833345 -1060353 -545816577 -2369025 -1953517569 + -4200225 -1412707329 -1884303875 + + -7.1151864528656006e-01 4.1955834627151489e-01 + <_> + + 0 -1 26 470291672 1594456488 923230163 -2155043 -548005457 + -1156854119 -1148534817 -1074156579 + + -6.6359061002731323e-01 4.6632391214370728e-01 + <_> + + 0 -1 73 -2098180 1406937524 18879260 1072970683 1604073656 + 386138325 2141787068 -1 + + -6.0595369338989258e-01 4.8956662416458130e-01 + <_> + + 0 -1 48 -1065107456 -72363733 -83362849 -536886273 + -615521281 -73727349 -104368129 -1039669885 + + -5.7387554645538330e-01 5.1478314399719238e-01 + <_> + + 0 -1 30 -804220688 -604380848 93818999 1903284625 + -1837057622 -105322486 1001658814 146809632 + + -6.8071007728576660e-01 4.5826134085655212e-01 + + <_> + 7 + -1.2851260900497437e+00 + + <_> + + 0 -1 76 -469762302 -406855813 -900735066 -754977809 + -480248062 1467738447 -947127609 -738198529 + + -7.7277177572250366e-01 1.8757019937038422e-01 + <_> + + 0 -1 41 -1879043887 -697865 -8921089 -2661417 -1141637121 + -6917 -1080640513 -1077996323 + + -6.5664166212081909e-01 4.0080460906028748e-01 + <_> + + 0 -1 54 523766968 1071455224 930560885 -2098947 2106400509 + -1078052162 1591720959 -1075896931 + + -6.1509358882904053e-01 4.2310744524002075e-01 + <_> + + 0 -1 64 -8651778 -4277508 799804080 1006344958 -14402568 + 410268661 2147327960 -1 + + -4.9080836772918701e-01 5.2360612154006958e-01 + <_> + + 0 -1 24 1088939042 1810221070 -279576713 -404492753 + 1618469823 718008371 -149431041 1614276131 + + -6.7838019132614136e-01 3.8422819972038269e-01 + <_> + + 0 -1 58 -1073494493 -2129 -134254593 -134219777 -134217793 + -1 -306473026 -1018443994 + + -4.2494711279869080e-01 5.7714998722076416e-01 + <_> + + 0 -1 33 -5221000 -1114344044 -1099382275 -319523 1782890237 + -17110082 1000266751 -1909977844 + + -6.6518503427505493e-01 3.9107745885848999e-01 + + <_> + 7 + -1.3347427845001221e+00 + + <_> + + 0 -1 35 -1064835289 -262657 -304612481 -10753 -68160513 + -72365105 -337910785 -509876305 + + -6.8524187803268433e-01 3.7823274731636047e-01 + <_> + + 0 -1 6 -285278470 550824651 -1094793490 -1427444482 + -12229897 1936169977 -270537745 -1281 + + -6.9259029626846313e-01 3.6514124274253845e-01 + <_> + + 0 -1 50 -2 1072971740 1469594812 2147236670 1072445948 + 1071398300 258306045 2138439679 + + -6.4422893524169922e-01 3.5341870784759521e-01 + <_> + + 0 -1 77 -1065714 254791671 -731382782 -2101936449 1842282242 + 2013256162 1924135744 -469762069 + + -6.3399165868759155e-01 3.5231015086174011e-01 + <_> + + 0 -1 12 -561580302 -605386104 -1675307299 -35200410 + -1192691478 -7641158 -581569329 -1369166102 + + -5.7274460792541504e-01 4.2036578059196472e-01 + <_> + + 0 -1 55 -2138864126 -4201985 -642265613 -210241921 -19989761 + -3952177 -141558833 -2095331545 + + -5.2967888116836548e-01 4.3784245848655701e-01 + <_> + + 0 -1 8 -830297412 -7802014 1277567223 1068347800 2064507871 + -69260897 -70362181 -1083442246 + + -5.0855410099029541e-01 4.3978407979011536e-01 + + <_> + 7 + -1.1835207939147949e+00 + + <_> + + 0 -1 62 -1025 -4396129 1971420605 2147480543 -72745987 + 999057909 998865912 -1 + + -6.2991225719451904e-01 4.2762723565101624e-01 + <_> + + 0 -1 11 -1499277837 -1056769 -575146113 -3147017 -1906574593 + -4199525 -1409286145 -1360048899 + + -5.1901364326477051e-01 4.7817090153694153e-01 + <_> + + 0 -1 65 -1 1069088700 -42160132 2147384700 -216067 183271421 + 1070607356 -1 + + -3.9919072389602661e-01 5.6214183568954468e-01 + <_> + + 0 -1 7 -357904642 231662471 10134269 1534886015 1336724732 + 1600028668 939520767 -805610049 + + -5.3103089332580566e-01 4.1148453950881958e-01 + <_> + + 0 -1 27 1078457858 -137102849 -1002967209 -671383873 + 1475047263 1759237042 2053111259 1079494146 + + -6.8956327438354492e-01 3.1366679072380066e-01 + <_> + + 0 -1 69 1543485614 532452284 465371692 1071593917 805052841 + 114115064 801844479 2145353727 + + -6.5592241287231445e-01 3.1573730707168579e-01 + <_> + + 0 -1 70 -1621418188 -12621959 -1156064295 -1619035693 + -1147405636 -72399880 264178616 162469136 + + -6.0899454355239868e-01 3.2693719863891602e-01 + + <_> + 8 + -1.3792396783828735e+00 + + <_> + + 0 -1 63 -896547289 -69206021 -113517697 -1052225 -68420609 + -67116645 -262145 -746600513 + + -6.4787888526916504e-01 3.4486734867095947e-01 + <_> + + 0 -1 16 682098471 16776910 -37761185 -67637249 -10748929 + -224138833 -11537429 -356519169 + + -5.3469586372375488e-01 4.4898313283920288e-01 + <_> + + 0 -1 80 -2097156 -550503779 -136588804 -1507362 -71830028 + 356891563 -3596 -33554441 + + -4.7742679715156555e-01 4.9222531914710999e-01 + <_> + + 0 -1 31 -9447425 -18531 1463749625 1467983669 -1619632146 + -1088585865 1599745195 2066940426 + + -4.2506697773933411e-01 5.0970840454101562e-01 + <_> + + 0 -1 9 -554774785 469641207 -1631651073 1064967857 + -689152273 -591873 -71685 -10289665 + + -3.9916789531707764e-01 5.2942800521850586e-01 + <_> + + 0 -1 32 -460868 -1149758532 -1955583982 999878622 995457144 + 100663605 769463536 1609564143 + + -6.4832550287246704e-01 3.3265480399131775e-01 + <_> + + 0 -1 61 -525614592 -73410230 -1055140389 1397186271 + 1796729711 -81276894 -10489481 1393553927 + + -5.8127319812774658e-01 3.2805305719375610e-01 + <_> + + 0 -1 71 -69206083 2140951352 1605407413 1073482444 + -1166230804 984105561 265051901 -4202499 + + -4.3958845734596252e-01 4.4159027934074402e-01 + + <_> + 9 + -1.6337682008743286e+00 + + <_> + + 0 -1 49 -1 -254281737 -847263745 -704649317 -547359277 + -214437129 -137368609 -1025 + + -5.8612054586410522e-01 5.3436428308486938e-01 + <_> + + 0 -1 3 -1964573706 -2163202 -629999617 1724277282 + -1345454081 -54273 -1947226113 -134494477 + + -5.9594768285751343e-01 3.4550479054450989e-01 + <_> + + 0 -1 25 -33624106 1979243351 -1684228388 -1327580354 + 1869634120 1507656105 1004215260 -65537 + + -5.5408185720443726e-01 3.4455263614654541e-01 + <_> + + 0 -1 20 216 -273853464 -1746981891 2147439095 -1342177362 + -1882457730 535869183 -1892939286 + + -6.8447190523147583e-01 2.6072457432746887e-01 + <_> + + 0 -1 79 -9470 -881859202 -472124544 1722743726 2040260640 + 88788209 -311968000 -420088102 + + -5.8676868677139282e-01 3.3556821942329407e-01 + <_> + + 0 -1 47 2147466972 2069665750 405150428 1073037215 721199016 + 465318864 1859398396 2139054079 + + -6.0411739349365234e-01 2.8773531317710876e-01 + <_> + + 0 -1 44 -1073955720 2142794040 2033980733 -1107354732 + -1141629188 -5309192 -340984065 796396953 + + -7.0512706041336060e-01 2.0565895736217499e-01 + <_> + + 0 -1 1 -285218257 641662811 -317140617 -1615220229 + 1397455865 1830527419 -480512675 1879048055 + + -4.5888698101043701e-01 3.7875139713287354e-01 + <_> + + 0 -1 67 -136335093 1363122398 -1475206391 2001653675 + -275119445 1368433380 831138571 2132278783 + + -4.4568619132041931e-01 3.9391869306564331e-01 + + <_> + 9 + -1.6722478866577148e+00 + + <_> + + 0 -1 13 -2097665 285007871 -14702337 -1073745441 -603979783 + -12805 -7606276 -33 + + -6.4239740371704102e-01 3.0229949951171875e-01 + <_> + + 0 -1 68 -1297 -605028505 1663525735 -4983053 -1132728133 + -326122023 -1512309265 -1049601 + + -3.4561732411384583e-01 6.5836638212203979e-01 + <_> + + 0 -1 28 -1879027627 -11273 -38282337 -69730305 -1192231939 + -263686 -1109656581 -1142203922 + + -4.3300274014472961e-01 4.2989093065261841e-01 + <_> + + 0 -1 75 -50337789 2147446389 -16778341 1374150655 -134224126 + 2013265911 -285214754 -202385409 + + -3.8676849007606506e-01 4.9856430292129517e-01 + <_> + + 0 -1 18 120097976 1060086728 -1389487875 -1137790177 + 1602117610 -1619061910 -35668997 -1343251714 + + -5.7169276475906372e-01 3.2476642727851868e-01 + <_> + + 0 -1 57 -293082161 1154481003 1111976386 1447558455 + 1677190926 69697407 1417113986 -1553 + + -4.1726982593536377e-01 4.2075014114379883e-01 + <_> + + 0 -1 29 -1313845040 -4467728 1134850749 -175787547 + -1194534214 -878738628 1573022699 883187712 + + -6.9330018758773804e-01 2.6707106828689575e-01 + <_> + + 0 -1 38 -78190598 -19340938 -1491289896 1809372080 524079264 + 491799709 1996433399 -16778277 + + -4.9384438991546631e-01 3.3502304553985596e-01 + <_> + + 0 -1 2 -1562189238 -691542934 -1197225897 -421099968 + 198047231 -273967949 954460927 -161480843 + + -5.9740668535232544e-01 2.6929464936256409e-01 + + <_> + 9 + -1.4638713598251343e+00 + + <_> + + 0 -1 53 -1 -4262913 2134212095 2145352703 -1058817 993552889 + 1055702527 -1 + + -5.8213829994201660e-01 4.4301766157150269e-01 + <_> + + 0 -1 23 -528260318 -75500601 -579380737 -2099850 -1063233 + -72614673 -69469185 -948439049 + + -4.8428696393966675e-01 3.6954393982887268e-01 + <_> + + 0 -1 72 -62975984 -109063308 -220856875 -212370443 + -1694834769 -4560166 872043843 -1157812201 + + -4.9901553988456726e-01 3.3146089315414429e-01 + <_> + + 0 -1 42 497556920 532413304 -1102144617 501201365 1535916763 + 1594493624 2142156779 1876574201 + + -6.4244377613067627e-01 2.4512745440006256e-01 + <_> + + 0 -1 4 1120136910 -521672978 111862860 -806363025 -516557833 + -670045001 1709173499 -67114049 + + -5.2952063083648682e-01 3.0346292257308960e-01 + <_> + + 0 -1 36 -997733374 -206319209 -415124517 -406932517 + -746852645 -7087441 -395582722 1111744578 + + -5.4006469249725342e-01 3.0697867274284363e-01 + <_> + + 0 -1 15 -720467974 -541134070 -1319464207 -1162493988 + -922194945 -1146112565 -741476891 -1349606460 + + -5.7269197702407837e-01 2.6673358678817749e-01 + <_> + + 0 -1 81 -100667637 657118705 -1242872032 2016867655 + -541072749 63672337 -136122523 -182452739 + + -4.3601182103157043e-01 3.6583909392356873e-01 + <_> + + 0 -1 66 -938523136 -69889 -1720331847 -2371401 -347348081 + -81010021 -646974889 56092062 + + -5.2380156517028809e-01 2.9095169901847839e-01 + + <_> + + 0 0 4 1 + <_> + + 0 1 2 3 + <_> + + 0 1 5 2 + <_> + + 0 1 6 1 + <_> + + 0 3 10 1 + <_> + + 0 5 3 2 + <_> + + 0 6 2 2 + <_> + + 0 9 5 1 + <_> + + 0 9 11 1 + <_> + + 0 10 4 1 + <_> + + 0 10 8 1 + <_> + + 1 0 3 1 + <_> + + 1 1 14 1 + <_> + + 1 4 2 3 + <_> + + 2 10 11 1 + <_> + + 2 10 14 1 + <_> + + 3 1 1 2 + <_> + + 3 4 2 3 + <_> + + 3 9 12 1 + <_> + + 4 0 8 1 + <_> + + 4 0 13 1 + <_> + + 4 2 1 2 + <_> + + 4 10 13 1 + <_> + + 5 0 1 2 + <_> + + 5 0 2 3 + <_> + + 5 7 1 2 + <_> + + 7 9 13 1 + <_> + + 10 0 2 3 + <_> + + 10 0 3 1 + <_> + + 10 1 8 1 + <_> + + 10 1 13 1 + <_> + + 10 2 12 1 + <_> + + 11 4 1 3 + <_> + + 11 10 5 1 + <_> + + 12 0 1 2 + <_> + + 13 0 1 2 + <_> + + 13 0 1 3 + <_> + + 13 0 9 1 + <_> + + 14 4 2 3 + <_> + + 15 10 10 1 + <_> + + 16 0 7 1 + <_> + + 17 0 4 1 + <_> + + 18 9 8 1 + <_> + + 19 0 8 1 + <_> + + 19 10 4 1 + <_> + + 20 0 1 2 + <_> + + 20 0 4 1 + <_> + + 20 7 2 2 + <_> + + 21 0 1 2 + <_> + + 21 4 2 2 + <_> + + 21 7 2 2 + <_> + + 21 9 7 1 + <_> + + 22 3 2 3 + <_> + + 24 7 1 2 + <_> + + 24 9 8 1 + <_> + + 25 0 1 2 + <_> + + 25 7 1 2 + <_> + + 26 3 2 1 + <_> + + 27 0 1 2 + <_> + + 27 0 6 1 + <_> + + 27 1 1 3 + <_> + + 28 0 1 3 + <_> + + 28 7 1 2 + <_> + + 30 0 1 2 + <_> + + 30 4 2 3 + <_> + + 30 7 1 2 + <_> + + 31 0 1 2 + <_> + + 31 3 3 3 + <_> + + 33 3 4 2 + <_> + + 34 6 3 2 + <_> + + 34 10 6 1 + <_> + + 35 7 1 2 + <_> + + 37 0 5 1 + <_> + + 37 4 2 3 + <_> + + 49 0 1 2 + <_> + + 49 1 1 1 + <_> + + 49 1 1 2 + <_> + + 49 2 1 1 + <_> + + 49 3 1 2 + <_> + + 49 4 1 2 + <_> + + 49 4 1 3 + <_> + + 49 8 1 1 + diff --git a/src/android/assets/runtime_data/region/in.xml b/src/android/assets/runtime_data/region/in.xml new file mode 100644 index 0000000..121dccc --- /dev/null +++ b/src/android/assets/runtime_data/region/in.xml @@ -0,0 +1,369 @@ + + + + BOOST + LBP + 12 + 50 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 9 + + + <_> + 4 + -2.4375419616699219e+00 + + <_> + + 0 -1 17 -711862307 -6467369 -654189059 -15360709 -661984517 + -1146500982 -880088641 -5518849 + + -9.7931182384490967e-01 3.1999999284744263e-01 + <_> + + 0 -1 15 294154741 -2354917 286332287 1604129237 -1467438853 + -7630696 1495972863 -1080353797 + + -9.5272296667098999e-01 3.4786596894264221e-01 + <_> + + 0 -1 4 -687825955 -40824682 -784316937 -34696823 402827518 + -74841973 -2013029377 -1073869685 + + -9.0185505151748657e-01 6.0434675216674805e-01 + <_> + + 0 -1 11 -1857080655 -1076821871 -1727967009 2010911121 + -1735722533 -1211629416 176851962 -551606099 + + -9.0424102544784546e-01 6.2337487936019897e-01 + + <_> + 4 + -2.2654516696929932e+00 + + <_> + + 0 -1 21 -69207041 -10497645 -1039951129 -135288581 + -511450625 -1182064488 -72627473 -1025 + + -9.7722482681274414e-01 2.4444444477558136e-01 + <_> + + 0 -1 10 -33 -145370661 1804163039 -10526371 -108028929 + -5275505 -1953649697 -1073799173 + + -9.3023735284805298e-01 4.1309589147567749e-01 + <_> + + 0 -1 3 -141623592 -138329769 -150906403 -6324793 -259851777 + -13959029 -367281153 -269665 + + -9.1387480497360229e-01 5.6577622890472412e-01 + <_> + + 0 -1 19 2031132664 -76541807 1526781439 -3149365 -1147623191 + -94732136 -74793985 -1111794756 + + -9.2376571893692017e-01 5.6228053569793701e-01 + + <_> + 3 + -2.0670957565307617e+00 + + <_> + + 0 -1 31 -1025 -27266077 -2121794152 -137372721 -74976289 + 1240189324 -3673093 -1 + + -9.7997015714645386e-01 -2.5531914830207825e-01 + <_> + + 0 -1 22 -17 -167773973 -1116481778 -254804585 -34606125 + 1400484267 -201344073 -134217729 + + -9.3677562475204468e-01 1.1821919679641724e-01 + <_> + + 0 -1 25 -472908945 -28314697 -267390321 -302519713 + -141564945 -359431182 -70257918 -764412317 + + -8.7500095367431641e-01 5.1194375753402710e-01 + + <_> + 4 + -2.3831017017364502e+00 + + <_> + + 0 -1 1 -8388609 -10496033 -67119105 -1 -1147536385 -4460549 + -6291457 -16389 + + -9.7346252202987671e-01 -2.5641025975346565e-02 + <_> + + 0 -1 8 -268656643 -10517 -4227073 -70657 -83886113 -2434561 + -1572866 -536988689 + + -9.5494621992111206e-01 -1.7653448879718781e-01 + <_> + + 0 -1 18 767049725 -1075871751 -42991617 2147057663 + -103809025 -4625 -2129921 -1082418820 + + -9.0908873081207275e-01 2.9635757207870483e-01 + <_> + + 0 -1 28 -1073807555 -205981188 -35651585 -1073750017 + -1107492875 -67125825 -2622099 -1946165796 + + -8.8837707042694092e-01 4.5439574122428894e-01 + + <_> + 3 + -2.0030426979064941e+00 + + <_> + + 0 -1 6 -69206017 -8261 -167772161 -2097153 -262145 -4195585 + -8193 -4113 + + -9.7144657373428345e-01 1.6666667163372040e-01 + <_> + + 0 -1 23 -1213890561 -1025 -138412545 -33 -1141310465 + -67109889 -1 -1078034433 + + -9.3520402908325195e-01 -9.6896685659885406e-02 + <_> + + 0 -1 12 499654525 -1116161 -2097153 -8225 -1612972035 + -67126785 2147450879 -583681 + + -9.3469941616058350e-01 2.0055486261844635e-01 + + <_> + 4 + -2.4179658889770508e+00 + + <_> + + 0 -1 26 -1 -134217761 -778568265 -2593 -1051653 -67374085 + -9437729 -1 + + -9.6861922740936279e-01 1. + <_> + + 0 -1 16 -53 2128574455 -1084238162 -102760737 -14680089 + 1539304123 -137 -137364097 + + -9.3634587526321411e-01 -1.1718166619539261e-01 + <_> + + 0 -1 13 -33567057 -1344278049 -619220234 -1091636241 + -67174449 1855938431 -604049937 -537395201 + + -8.2525515556335449e-01 3.9416569471359253e-01 + <_> + + 0 -1 2 -1074532972 1071644671 1608458239 -1176641538 + 2105540478 2146417119 -68222977 -268436484 + + -9.0716660022735596e-01 4.3030804395675659e-01 + + <_> + 4 + -2.5507302284240723e+00 + + <_> + + 0 -1 7 -603979777 -9217 -2624001 -538968065 -6296577 + -1327685 -5505025 -1025 + + -9.6943050622940063e-01 6.3636362552642822e-01 + <_> + + 0 -1 16 -53 2130670551 -38014322 -102763810 -11537425 + -543438033 -1 -137363969 + + -9.1275703907012939e-01 4.1494268923997879e-02 + <_> + + 0 -1 9 -278869 2145375182 -586031378 -4197921 2079325310 + 937116043 -1049643 -134742018 + + -8.4034204483032227e-01 3.5779979825019836e-01 + <_> + + 0 -1 27 -16783706 -78645345 -515379844 -805841157 -2360322 + -705715269 2130433023 -672141457 + + -7.8245186805725098e-01 5.6021624803543091e-01 + + <_> + 4 + -2.2939481735229492e+00 + + <_> + + 0 -1 29 -1 -538969089 -242491909 -538979393 -1049089 + -1649557575 -1049601 -1049601 + + -9.7297865152359009e-01 -2.8000000119209290e-01 + <_> + + 0 -1 30 -1 -2298882 2072607228 -1057 -6816769 -3254071 + 1577057247 -1048641 + + -8.8414573669433594e-01 1.1597286909818649e-01 + <_> + + 0 -1 5 -302041345 -2164226 534495231 1871622106 -304103425 + -17085953 -106447105 -33841 + + -7.8541487455368042e-01 4.3383264541625977e-01 + <_> + + 0 -1 20 -402850827 -34853 -67240995 -1344603139 -12976129 + -4199489 -65546 -914379168 + + -8.7065649032592773e-01 4.4544333219528198e-01 + + <_> + 4 + -2.6368033885955811e+00 + + <_> + + 0 -1 24 -1 -1 -13640513 -211812897 -74712133 -1084233249 + -47711489 -1025 + + -9.7338962554931641e-01 -2.6923078298568726e-01 + <_> + + 0 -1 14 -1053713 -134482465 2134375898 -538976281 -5309569 + -203694201 -79693825 -1 + + -8.9801853895187378e-01 3.4832898527383804e-02 + <_> + + 0 -1 32 -536871193 -1107823393 -14419012 -1140858913 + -469794953 1941692158 -205852673 -603979865 + + -7.9554975032806396e-01 3.5559019446372986e-01 + <_> + + 0 -1 0 -806998018 -270606370 -35856898 -21049105 -1074007045 + -1049985 -84153345 -537214977 + + -9.0269690752029419e-01 3.9907047152519226e-01 + + <_> + + 0 9 8 1 + <_> + + 1 1 12 3 + <_> + + 1 6 16 2 + <_> + + 2 0 12 2 + <_> + + 2 9 9 1 + <_> + + 5 7 12 1 + <_> + + 7 1 12 2 + <_> + + 7 3 10 1 + <_> + + 7 9 4 1 + <_> + + 8 6 1 1 + <_> + + 10 2 10 3 + <_> + + 10 7 11 1 + <_> + + 12 0 2 1 + <_> + + 12 6 1 1 + <_> + + 14 4 1 1 + <_> + + 15 0 10 1 + <_> + + 16 4 1 1 + <_> + + 16 8 7 1 + <_> + + 17 0 5 1 + <_> + + 21 8 5 1 + <_> + + 22 1 5 2 + <_> + + 22 6 1 1 + <_> + + 24 5 1 1 + <_> + + 29 0 3 1 + <_> + + 30 6 1 1 + <_> + + 32 2 1 2 + <_> + + 34 1 1 3 + <_> + + 36 4 1 1 + <_> + + 37 9 3 1 + <_> + + 40 6 1 1 + <_> + + 40 6 1 2 + <_> + + 41 5 1 2 + <_> + + 42 3 2 2 + diff --git a/src/android/assets/runtime_data/region/kr2.xml b/src/android/assets/runtime_data/region/kr2.xml index 963a7b2..9bd921b 100644 --- a/src/android/assets/runtime_data/region/kr2.xml +++ b/src/android/assets/runtime_data/region/kr2.xml @@ -1,441 +1,441 @@ - - - - BOOST - LBP - 18 - 36 - - GAB - 9.9500000476837158e-01 - 5.0000000000000000e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 9 - - - <_> - 4 - -1.9250459671020508e+00 - - <_> - - 0 -1 3 -74058753 -2240037 92342463 -1088484449 -89392129 - -423217 -1414918657 -1074057249 - - -9.1852694749832153e-01 5.8924204111099243e-01 - <_> - - 0 -1 17 -205009214 -1056318 -766979189 -7351861 -340788289 - -73422278 -45481985 -1055745 - - -8.7003403902053833e-01 5.9477519989013672e-01 - <_> - - 0 -1 39 -737161214 1510691403 1375814019 -741344813 - -313527334 1930679011 -1173357621 -202378241 - - -7.6264554262161255e-01 6.5781676769256592e-01 - <_> - - 0 -1 22 -253570880 -35673917 1141244107 -136615525 - -336680278 2047803533 -341144917 -1410364497 - - -7.9287588596343994e-01 6.2616056203842163e-01 - - <_> - 4 - -1.8913023471832275e+00 - - <_> - - 0 -1 5 -1025 -542241 -1114391041 991897887 -4719617 - -67376401 -67109889 -4194305 - - -9.0746754407882690e-01 5.4716980457305908e-01 - <_> - - 0 -1 8 1364324831 287150263 991934431 870298523 -1179652 - -4268358 -1049089 -67133441 - - -8.3418697118759155e-01 4.1235050559043884e-01 - <_> - - 0 -1 30 -204742006 -68173282 -1035517875 -11547813 - -2006269234 -1903509269 -1043596549 -1009781761 - - -6.8528896570205688e-01 5.9535169601440430e-01 - <_> - - 0 -1 7 2102503610 -537017347 -1117805825 -6321512 -29655298 - -4461569 -67387718 -4216086 - - -7.1089631319046021e-01 5.9832674264907837e-01 - - <_> - 4 - -1.8885457515716553e+00 - - <_> - - 0 -1 24 -17409 -133121 -2156033 -2099713 -3163201 -4194305 - 1068182463 -1 - - -8.8507246971130371e-01 3.4729063510894775e-01 - <_> - - 0 -1 11 1971319519 1364712703 1906048511 1971313663 - -119537713 -1025 -2097153 -65 - - -7.6710444688796997e-01 5.2994787693023682e-01 - <_> - - 0 -1 20 421027824 -1074258088 -6447171 -1088939864 - -1076191236 -21243208 -1153916999 -1375207288 - - -7.5512754917144775e-01 4.9961245059967041e-01 - <_> - - 0 -1 21 -1069291349 -269488465 -1935007734 -1064310785 - -810833749 -320093970 -2098558838 -890246517 - - -7.1592825651168823e-01 5.1875865459442139e-01 - - <_> - 5 - -1.4479038715362549e+00 - - <_> - - 0 -1 24 -2097153 -3016225 -69780481 -2561 -543179841 - -2106917 1062144703 -1 - - -8.8085246086120605e-01 3.9553219079971313e-01 - <_> - - 0 -1 4 -11535480 -136318081 -1352213025 -33 -7340033 -5125 - -539231233 -1 - - -7.9555577039718628e-01 3.8638621568679810e-01 - <_> - - 0 -1 26 1666687567 -138419409 1431169023 1979709375 - -84938757 -67468376 2010119167 1931465710 - - -7.2934675216674805e-01 4.5863339304924011e-01 - <_> - - 0 -1 23 370751760 -1080079613 -1621633699 2145213273 - -72237121 -4460546 -1625343045 -1089963000 - - -6.7171323299407959e-01 5.2594864368438721e-01 - <_> - - 0 -1 13 -740967691 402111487 402635743 597566427 2141040639 - -626031681 -134219009 -1140876545 - - -7.4035781621932983e-01 4.8955345153808594e-01 - - <_> - 5 - -1.4493496417999268e+00 - - <_> - - 0 -1 36 -70255617 -513 -805569057 -9437193 38267119 - -81795153 1200095231 -1 - - -8.6666667461395264e-01 2.8157895803451538e-01 - <_> - - 0 -1 34 -146806269 -36709626 -275521533 -7341054 -23073297 - 1145819298 -470822709 -685260285 - - -7.5007098913192749e-01 3.8144519925117493e-01 - <_> - - 0 -1 0 -470 -420744786 -27876758 -492833849 1078935812 - 38522503 -698886814 -413669401 - - -6.8918168544769287e-01 4.7556585073471069e-01 - <_> - - 0 -1 31 -35668228 -548293156 -649062412 -683295756 - -222511140 525089516 -84096259 -547488772 - - -7.3100674152374268e-01 4.4898805022239685e-01 - <_> - - 0 -1 15 530626809 -42860545 462826171 -1342320837 - -1081132033 -17953 991895727 -1076164673 - - -7.0868730545043945e-01 4.6778148412704468e-01 - - <_> - 5 - -1.8017189502716064e+00 - - <_> - - 0 -1 9 -65537 -328706 -4915201 -1087755586 -67239937 -5669 - -1 -257 - - -8.8792204856872559e-01 -4.3837882578372955e-02 - <_> - - 0 -1 32 1347550207 -571148323 1543487487 -35651587 828322815 - -1700 335492091 -2097155 - - -7.3766022920608521e-01 3.4690326452255249e-01 - <_> - - 0 -1 25 -9846 1605333483 -1059752448 -1812996489 1120071946 - 1455643262 917870242 -680009761 - - -7.2934591770172119e-01 3.9320716261863708e-01 - <_> - - 0 -1 38 -473174014 2053046126 -134357141 -137895969 - -1074790417 -67121353 -1179649 -152043561 - - -6.9844788312911987e-01 4.0797707438468933e-01 - <_> - - 0 -1 19 -691606870 -201856018 1198436335 1476325343 - -571216913 -134486513 -51401745 -302518322 - - -7.1498012542724609e-01 4.5069092512130737e-01 - - <_> - 5 - -1.7567682266235352e+00 - - <_> - - 0 -1 2 -513 -513 -35800577 1071593915 -3407873 -4423 - -2424833 -1 - - -8.7326997518539429e-01 8.5594989359378815e-02 - <_> - - 0 -1 14 -671154178 -69533698 -1617387522 531245730 - 2147213310 -269943809 -154207233 -5608513 - - -7.5811719894409180e-01 2.2069078683853149e-01 - <_> - - 0 -1 18 1035212284 -2296420 555221692 -1113652072 2140332029 - -5711169 -1080512518 -1074218515 - - -7.2789901494979858e-01 3.4770554304122925e-01 - <_> - - 0 -1 29 -993533265 -170137041 1736835031 1465382903 - 1120924671 -353441050 1615000047 78111731 - - -7.4440920352935791e-01 3.7494036555290222e-01 - <_> - - 0 -1 1 -1638622 -75910 1059633056 -271627282 -8929355 - -2887681 -336725058 1603272574 - - -7.9733246564865112e-01 3.6811915040016174e-01 - - <_> - 5 - -1.6873530149459839e+00 - - <_> - - 0 -1 6 -1 -17409 -1075970081 1067395503 -104465153 -2296833 - -1048833 -5 - - -8.8755303621292114e-01 -1.0392609983682632e-01 - <_> - - 0 -1 33 -140779553 -2819075 -144859137 -1048609 1400850413 - -69476625 858985387 -67111937 - - -6.8982315063476562e-01 3.1153544783592224e-01 - <_> - - 0 -1 40 -67114361 1074756399 -1835343310 1611136899 - 2103432003 6145295 -458536794 -251922697 - - -5.9810346364974976e-01 4.8262387514114380e-01 - <_> - - 0 -1 12 916468092 -368898 -1617880065 736960766 1918926780 - -69683 -1049089 -34838 - - -6.5626806020736694e-01 4.2501708865165710e-01 - <_> - - 0 -1 37 -1107517956 1039792092 498074680 -1078117488 - -1075904580 -333315 -806273124 -1145135624 - - -6.4059084653854370e-01 4.1962918639183044e-01 - - <_> - 5 - -1.4620362520217896e+00 - - <_> - - 0 -1 27 -67110145 -1061 -578823942 -1413 -3146753 -7810486 - -263429 -1051909 - - -8.4640258550643921e-01 1.0389610379934311e-01 - <_> - - 0 -1 10 178948351 -536880385 -2629765 -1060867 -1409352705 - -286305 -1108431937 -1347517236 - - -6.6707128286361694e-01 3.3162760734558105e-01 - <_> - - 0 -1 16 -202923265 -67115041 -347365205 1539287789 - -135535625 -201592101 -275779841 -338695441 - - -5.3917574882507324e-01 5.0910735130310059e-01 - <_> - - 0 -1 35 -167773242 -153094230 -2021362640 1066198967 - -249269048 1441035252 925758395 1570237951 - - -6.9788902997970581e-01 3.8413587212562561e-01 - <_> - - 0 -1 28 2135129856 2013224111 -35652133 2145381311 -4718600 - -524289 -542114934 -11862262 - - -7.1007943153381348e-01 3.6536604166030884e-01 - - <_> - - 0 3 1 2 - <_> - - 0 5 4 4 - <_> - - 1 3 7 2 - <_> - - 1 3 11 2 - <_> - - 2 2 3 5 - <_> - - 2 3 7 2 - <_> - - 2 3 8 2 - <_> - - 3 0 10 3 - <_> - - 3 4 5 2 - <_> - - 3 4 7 1 - <_> - - 4 0 7 1 - <_> - - 4 2 4 4 - <_> - - 4 5 5 1 - <_> - - 5 3 4 2 - <_> - - 6 4 4 1 - <_> - - 7 3 9 2 - <_> - - 8 1 3 3 - <_> - - 8 4 4 3 - <_> - - 8 15 4 1 - <_> - - 9 3 3 3 - <_> - - 9 15 7 1 - <_> - - 10 2 2 3 - <_> - - 11 4 2 2 - <_> - - 12 0 7 1 - <_> - - 13 3 7 2 - <_> - - 13 9 2 2 - <_> - - 14 0 3 5 - <_> - - 14 2 3 2 - <_> - - 16 0 5 2 - <_> - - 16 3 2 3 - <_> - - 17 3 2 4 - <_> - - 18 12 3 2 - <_> - - 19 4 5 2 - <_> - - 20 3 4 2 - <_> - - 21 0 2 4 - <_> - - 22 8 2 3 - <_> - - 23 2 3 4 - <_> - - 26 15 3 1 - <_> - - 27 3 3 4 - <_> - - 29 3 2 4 - <_> - - 33 6 1 2 - + + + + BOOST + LBP + 18 + 36 + + GAB + 9.9500000476837158e-01 + 5.0000000000000000e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 9 + + + <_> + 4 + -1.9250459671020508e+00 + + <_> + + 0 -1 3 -74058753 -2240037 92342463 -1088484449 -89392129 + -423217 -1414918657 -1074057249 + + -9.1852694749832153e-01 5.8924204111099243e-01 + <_> + + 0 -1 17 -205009214 -1056318 -766979189 -7351861 -340788289 + -73422278 -45481985 -1055745 + + -8.7003403902053833e-01 5.9477519989013672e-01 + <_> + + 0 -1 39 -737161214 1510691403 1375814019 -741344813 + -313527334 1930679011 -1173357621 -202378241 + + -7.6264554262161255e-01 6.5781676769256592e-01 + <_> + + 0 -1 22 -253570880 -35673917 1141244107 -136615525 + -336680278 2047803533 -341144917 -1410364497 + + -7.9287588596343994e-01 6.2616056203842163e-01 + + <_> + 4 + -1.8913023471832275e+00 + + <_> + + 0 -1 5 -1025 -542241 -1114391041 991897887 -4719617 + -67376401 -67109889 -4194305 + + -9.0746754407882690e-01 5.4716980457305908e-01 + <_> + + 0 -1 8 1364324831 287150263 991934431 870298523 -1179652 + -4268358 -1049089 -67133441 + + -8.3418697118759155e-01 4.1235050559043884e-01 + <_> + + 0 -1 30 -204742006 -68173282 -1035517875 -11547813 + -2006269234 -1903509269 -1043596549 -1009781761 + + -6.8528896570205688e-01 5.9535169601440430e-01 + <_> + + 0 -1 7 2102503610 -537017347 -1117805825 -6321512 -29655298 + -4461569 -67387718 -4216086 + + -7.1089631319046021e-01 5.9832674264907837e-01 + + <_> + 4 + -1.8885457515716553e+00 + + <_> + + 0 -1 24 -17409 -133121 -2156033 -2099713 -3163201 -4194305 + 1068182463 -1 + + -8.8507246971130371e-01 3.4729063510894775e-01 + <_> + + 0 -1 11 1971319519 1364712703 1906048511 1971313663 + -119537713 -1025 -2097153 -65 + + -7.6710444688796997e-01 5.2994787693023682e-01 + <_> + + 0 -1 20 421027824 -1074258088 -6447171 -1088939864 + -1076191236 -21243208 -1153916999 -1375207288 + + -7.5512754917144775e-01 4.9961245059967041e-01 + <_> + + 0 -1 21 -1069291349 -269488465 -1935007734 -1064310785 + -810833749 -320093970 -2098558838 -890246517 + + -7.1592825651168823e-01 5.1875865459442139e-01 + + <_> + 5 + -1.4479038715362549e+00 + + <_> + + 0 -1 24 -2097153 -3016225 -69780481 -2561 -543179841 + -2106917 1062144703 -1 + + -8.8085246086120605e-01 3.9553219079971313e-01 + <_> + + 0 -1 4 -11535480 -136318081 -1352213025 -33 -7340033 -5125 + -539231233 -1 + + -7.9555577039718628e-01 3.8638621568679810e-01 + <_> + + 0 -1 26 1666687567 -138419409 1431169023 1979709375 + -84938757 -67468376 2010119167 1931465710 + + -7.2934675216674805e-01 4.5863339304924011e-01 + <_> + + 0 -1 23 370751760 -1080079613 -1621633699 2145213273 + -72237121 -4460546 -1625343045 -1089963000 + + -6.7171323299407959e-01 5.2594864368438721e-01 + <_> + + 0 -1 13 -740967691 402111487 402635743 597566427 2141040639 + -626031681 -134219009 -1140876545 + + -7.4035781621932983e-01 4.8955345153808594e-01 + + <_> + 5 + -1.4493496417999268e+00 + + <_> + + 0 -1 36 -70255617 -513 -805569057 -9437193 38267119 + -81795153 1200095231 -1 + + -8.6666667461395264e-01 2.8157895803451538e-01 + <_> + + 0 -1 34 -146806269 -36709626 -275521533 -7341054 -23073297 + 1145819298 -470822709 -685260285 + + -7.5007098913192749e-01 3.8144519925117493e-01 + <_> + + 0 -1 0 -470 -420744786 -27876758 -492833849 1078935812 + 38522503 -698886814 -413669401 + + -6.8918168544769287e-01 4.7556585073471069e-01 + <_> + + 0 -1 31 -35668228 -548293156 -649062412 -683295756 + -222511140 525089516 -84096259 -547488772 + + -7.3100674152374268e-01 4.4898805022239685e-01 + <_> + + 0 -1 15 530626809 -42860545 462826171 -1342320837 + -1081132033 -17953 991895727 -1076164673 + + -7.0868730545043945e-01 4.6778148412704468e-01 + + <_> + 5 + -1.8017189502716064e+00 + + <_> + + 0 -1 9 -65537 -328706 -4915201 -1087755586 -67239937 -5669 + -1 -257 + + -8.8792204856872559e-01 -4.3837882578372955e-02 + <_> + + 0 -1 32 1347550207 -571148323 1543487487 -35651587 828322815 + -1700 335492091 -2097155 + + -7.3766022920608521e-01 3.4690326452255249e-01 + <_> + + 0 -1 25 -9846 1605333483 -1059752448 -1812996489 1120071946 + 1455643262 917870242 -680009761 + + -7.2934591770172119e-01 3.9320716261863708e-01 + <_> + + 0 -1 38 -473174014 2053046126 -134357141 -137895969 + -1074790417 -67121353 -1179649 -152043561 + + -6.9844788312911987e-01 4.0797707438468933e-01 + <_> + + 0 -1 19 -691606870 -201856018 1198436335 1476325343 + -571216913 -134486513 -51401745 -302518322 + + -7.1498012542724609e-01 4.5069092512130737e-01 + + <_> + 5 + -1.7567682266235352e+00 + + <_> + + 0 -1 2 -513 -513 -35800577 1071593915 -3407873 -4423 + -2424833 -1 + + -8.7326997518539429e-01 8.5594989359378815e-02 + <_> + + 0 -1 14 -671154178 -69533698 -1617387522 531245730 + 2147213310 -269943809 -154207233 -5608513 + + -7.5811719894409180e-01 2.2069078683853149e-01 + <_> + + 0 -1 18 1035212284 -2296420 555221692 -1113652072 2140332029 + -5711169 -1080512518 -1074218515 + + -7.2789901494979858e-01 3.4770554304122925e-01 + <_> + + 0 -1 29 -993533265 -170137041 1736835031 1465382903 + 1120924671 -353441050 1615000047 78111731 + + -7.4440920352935791e-01 3.7494036555290222e-01 + <_> + + 0 -1 1 -1638622 -75910 1059633056 -271627282 -8929355 + -2887681 -336725058 1603272574 + + -7.9733246564865112e-01 3.6811915040016174e-01 + + <_> + 5 + -1.6873530149459839e+00 + + <_> + + 0 -1 6 -1 -17409 -1075970081 1067395503 -104465153 -2296833 + -1048833 -5 + + -8.8755303621292114e-01 -1.0392609983682632e-01 + <_> + + 0 -1 33 -140779553 -2819075 -144859137 -1048609 1400850413 + -69476625 858985387 -67111937 + + -6.8982315063476562e-01 3.1153544783592224e-01 + <_> + + 0 -1 40 -67114361 1074756399 -1835343310 1611136899 + 2103432003 6145295 -458536794 -251922697 + + -5.9810346364974976e-01 4.8262387514114380e-01 + <_> + + 0 -1 12 916468092 -368898 -1617880065 736960766 1918926780 + -69683 -1049089 -34838 + + -6.5626806020736694e-01 4.2501708865165710e-01 + <_> + + 0 -1 37 -1107517956 1039792092 498074680 -1078117488 + -1075904580 -333315 -806273124 -1145135624 + + -6.4059084653854370e-01 4.1962918639183044e-01 + + <_> + 5 + -1.4620362520217896e+00 + + <_> + + 0 -1 27 -67110145 -1061 -578823942 -1413 -3146753 -7810486 + -263429 -1051909 + + -8.4640258550643921e-01 1.0389610379934311e-01 + <_> + + 0 -1 10 178948351 -536880385 -2629765 -1060867 -1409352705 + -286305 -1108431937 -1347517236 + + -6.6707128286361694e-01 3.3162760734558105e-01 + <_> + + 0 -1 16 -202923265 -67115041 -347365205 1539287789 + -135535625 -201592101 -275779841 -338695441 + + -5.3917574882507324e-01 5.0910735130310059e-01 + <_> + + 0 -1 35 -167773242 -153094230 -2021362640 1066198967 + -249269048 1441035252 925758395 1570237951 + + -6.9788902997970581e-01 3.8413587212562561e-01 + <_> + + 0 -1 28 2135129856 2013224111 -35652133 2145381311 -4718600 + -524289 -542114934 -11862262 + + -7.1007943153381348e-01 3.6536604166030884e-01 + + <_> + + 0 3 1 2 + <_> + + 0 5 4 4 + <_> + + 1 3 7 2 + <_> + + 1 3 11 2 + <_> + + 2 2 3 5 + <_> + + 2 3 7 2 + <_> + + 2 3 8 2 + <_> + + 3 0 10 3 + <_> + + 3 4 5 2 + <_> + + 3 4 7 1 + <_> + + 4 0 7 1 + <_> + + 4 2 4 4 + <_> + + 4 5 5 1 + <_> + + 5 3 4 2 + <_> + + 6 4 4 1 + <_> + + 7 3 9 2 + <_> + + 8 1 3 3 + <_> + + 8 4 4 3 + <_> + + 8 15 4 1 + <_> + + 9 3 3 3 + <_> + + 9 15 7 1 + <_> + + 10 2 2 3 + <_> + + 11 4 2 2 + <_> + + 12 0 7 1 + <_> + + 13 3 7 2 + <_> + + 13 9 2 2 + <_> + + 14 0 3 5 + <_> + + 14 2 3 2 + <_> + + 16 0 5 2 + <_> + + 16 3 2 3 + <_> + + 17 3 2 4 + <_> + + 18 12 3 2 + <_> + + 19 4 5 2 + <_> + + 20 3 4 2 + <_> + + 21 0 2 4 + <_> + + 22 8 2 3 + <_> + + 23 2 3 4 + <_> + + 26 15 3 1 + <_> + + 27 3 3 4 + <_> + + 29 3 2 4 + <_> + + 33 6 1 2 + diff --git a/src/android/assets/runtime_data/region/us.xml b/src/android/assets/runtime_data/region/us.xml index 93e4af2..2dde01f 100644 --- a/src/android/assets/runtime_data/region/us.xml +++ b/src/android/assets/runtime_data/region/us.xml @@ -1,2551 +1,2551 @@ - - - - BOOST - LBP - 18 - 36 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 17 - - - <_> - 5 - -1.6074185371398926e+00 - - <_> - - 0 -1 260 -286277120 174374 -487661056 -1058275700 1194804992 - 225095 -998772480 -202375169 - - -5.5654716491699219e-01 8.0171042680740356e-01 - <_> - - 0 -1 20 -342891006 -1033195986 1856252450 -1062802910 - 661726532 1179932483 -177793536 -134219817 - - -6.0683506727218628e-01 6.9047766923904419e-01 - <_> - - 0 -1 64 1358958608 -721415659 286261721 1603863003 - -619134817 -1123538802 420086683 991758991 - - -6.2987571954727173e-01 5.9246963262557983e-01 - <_> - - 0 -1 193 -1073512446 -777805822 -2139684581 -783301117 - -2105302838 -2139667934 1078190215 -803212537 - - -5.2881276607513428e-01 6.4907532930374146e-01 - <_> - - 0 -1 125 -105079848 419692680 268435456 386400776 956826300 - 268962496 402653388 -1069665 - - -5.8266061544418335e-01 5.6521910429000854e-01 - - <_> - 6 - -1.0134286880493164e+00 - - <_> - - 0 -1 94 268435472 285218064 464917949 360560017 -1631809362 - -1074249812 212339386 -1079443448 - - -4.5969772338867188e-01 7.2184652090072632e-01 - <_> - - 0 -1 264 -1055230 -2132094970 1522782208 -1865488446 - -160460288 426831 -239083008 -184549393 - - -5.5715596675872803e-01 5.5740809440612793e-01 - <_> - - 0 -1 89 -1073512446 -750262246 1612181323 -241712057 - -536370706 -87562613 -1073356338 -783818237 - - -4.9830266833305359e-01 5.8845627307891846e-01 - <_> - - 0 -1 40 75531512 -1080031088 -1924518403 -1660943824 - 68163832 -1649934168 201603577 251658408 - - -6.2323546409606934e-01 4.3935534358024597e-01 - <_> - - 0 -1 153 -1073495038 -212339694 272084497 -683317309 - -1070863634 -362310394 -1013976081 -1073233397 - - -4.9089384078979492e-01 5.5601859092712402e-01 - <_> - - 0 -1 187 -1072466 961592942 -592705488 287353834 2099253432 - 269753198 1573261038 -3146001 - - -4.4843783974647522e-01 5.5326616764068604e-01 - - <_> - 7 - -1.4775381088256836e+00 - - <_> - - 0 -1 90 268440029 2136817663 459096063 2147292127 496541439 - -6340609 465289215 462293642 - - -4.9297222495079041e-01 6.8286538124084473e-01 - <_> - - 0 -1 5 -428890622 1089466031 -1032976798 -1023422750 - 1114064710 1148187463 -134744065 -134219785 - - -4.8018595576286316e-01 5.6948053836822510e-01 - <_> - - 0 -1 121 469767184 487588084 289153021 521930004 -1433892612 - -1074227012 -1635771972 403179528 - - -7.1417349576950073e-01 3.9334431290626526e-01 - <_> - - 0 -1 185 -1073511934 -742133625 1093132935 -705716410 - -523770994 -521672861 -930616433 -790109557 - - -4.5168292522430420e-01 5.3130024671554565e-01 - <_> - - 0 -1 80 1358954512 -3073699 285214908 -35898484 -209417729 - -2616386 -1197962246 -1148441974 - - -5.5315750837326050e-01 4.3438988924026489e-01 - <_> - - 0 -1 256 -486543614 15463303 1271390210 -352321538 - -479201533 42978919 -135268606 -218628353 - - -4.9413478374481201e-01 4.6485596895217896e-01 - <_> - - 0 -1 102 285216249 486815568 -6799425 494394865 -1885305139 - -1651728472 -1633603955 -1080819456 - - -4.4841548800468445e-01 5.0453257560729980e-01 - - <_> - 9 - -1.5383964776992798e+00 - - <_> - - 0 -1 18 -353374678 1085269614 -292625886 -487658514 - 2001172311 1147598679 -680011913 -134217729 - - -3.9491996169090271e-01 6.2135654687881470e-01 - <_> - - 0 -1 249 3122690 37739375 -2070166735 -741345321 -749734397 - 1718866259 -472912958 -419430401 - - -5.0506174564361572e-01 4.6618077158927917e-01 - <_> - - 0 -1 123 1244 -1611582991 -550281217 -4384259 -1193231618 - -1080312899 -1631932417 -1431828440 - - -5.2341967821121216e-01 4.4499680399894714e-01 - <_> - - 0 -1 173 -1070406 998248624 224141340 993009672 931922364 - 471863736 1182795928 2145385471 - - -5.5938553810119629e-01 3.7860521674156189e-01 - <_> - - 0 -1 147 -1073512446 -705173933 1082185555 -182463589 - -408944641 -49182969 -189800481 -792205781 - - -4.2763561010360718e-01 4.8702400922775269e-01 - <_> - - 0 -1 104 -19522 1003492282 1532888968 461644738 2100304008 - 218375113 1604668604 2147482623 - - -4.9799257516860962e-01 3.6454525589942932e-01 - <_> - - 0 -1 44 285212672 -581614700 1359493625 -548332547 134266620 - -37709632 2043202253 -586138712 - - -5.6203496456146240e-01 3.4002208709716797e-01 - <_> - - 0 -1 128 1034951165 2105349244 -1309598211 -1120070435 - -31409729 -38756688 1588345855 1065883852 - - -5.2008801698684692e-01 3.3988323807716370e-01 - <_> - - 0 -1 200 -218110210 2000425110 558260 2006753352 1499734716 - 487590088 468989064 -3146289 - - -4.3743440508842468e-01 4.3907517194747925e-01 - - <_> - 9 - -1.4532921314239502e+00 - - <_> - - 0 -1 262 -1278 1124068607 -1494488320 -1056964673 -67111165 - 1115682655 -134224128 -134217729 - - -3.8763198256492615e-01 5.7781529426574707e-01 - <_> - - 0 -1 56 -1073225214 -742661509 1082291375 -143132909 - -1072969042 -1574413 -1058747766 -253237617 - - -3.7089401483535767e-01 5.3697389364242554e-01 - <_> - - 0 -1 140 268435632 858788752 523386879 -1208936463 - -1091764737 -4461123 704556735 -1141702479 - - -5.2869093418121338e-01 3.7775269150733948e-01 - <_> - - 0 -1 230 -603992354 1471449720 -1921775488 -712594264 - 1598590108 206591385 1292634312 -9217 - - -3.9741289615631104e-01 4.6708774566650391e-01 - <_> - - 0 -1 159 -1073496061 -246159373 -2126132421 -682133909 - -338430209 -54568013 -894697569 -1056710645 - - -3.4375002980232239e-01 5.2743333578109741e-01 - <_> - - 0 -1 96 -1071350 457060632 931268864 321430144 826485888 - 67247908 2102198728 2105540603 - - -4.9998486042022705e-01 3.3325645327568054e-01 - <_> - - 0 -1 49 80 -11992040 412270047 425795985 787613322 - -1085856977 -2004303873 710936064 - - -6.0664796829223633e-01 2.5685796141624451e-01 - <_> - - 0 -1 194 -1037574142 -204006398 829156199 -177753533 - 1112262023 -232373213 1115155935 1074249730 - - -5.0947064161300659e-01 3.2005622982978821e-01 - <_> - - 0 -1 79 269484248 -16708916 269484120 2013084168 8699580 - 522459800 -71812466 -70403128 - - -5.4420560598373413e-01 2.8768730163574219e-01 - - <_> - 11 - -1.3969734907150269e+00 - - <_> - - 0 -1 16 -269488594 -1527781586 -420581878 -420548914 - 1736406903 1199570807 -142608537 -134217729 - - -3.8963079452514648e-01 5.6084793806076050e-01 - <_> - - 0 -1 51 269811920 -1085195183 425006589 1060705723 - -663184132 -38933009 -1469268483 -2142977 - - -4.4839790463447571e-01 4.1743433475494385e-01 - <_> - - 0 -1 228 -1039162878 -753932542 -1518107646 -139466238 - -265297522 -1027372277 -420502646 1114620418 - - -5.1765841245651245e-01 3.3084028959274292e-01 - <_> - - 0 -1 253 -889196793 9369379 -407120128 -235405325 -67111162 - 1088929783 -490739968 -218104065 - - -3.7889918684959412e-01 4.3052202463150024e-01 - <_> - - 0 -1 190 -100665346 354197178 489693724 999564452 802745048 - 419956669 485268696 -2049 - - -4.2029377818107605e-01 3.9566606283187866e-01 - <_> - - 0 -1 100 -1073233918 -136333515 1096513373 -2639093 - -716180502 -1339822428 1365762947 1359476551 - - -4.5561933517456055e-01 3.3654430508613586e-01 - <_> - - 0 -1 87 296230396 -575143599 -1645471619 1073517564 - -1130554900 -1076347144 2124945068 -1079504776 - - -4.4698345661163330e-01 3.5266625881195068e-01 - <_> - - 0 -1 112 -1073512309 -612898185 -630869569 -114037589 - -622288129 -564411838 -336594433 -1056456565 - - -3.3337074518203735e-01 4.6491983532905579e-01 - <_> - - 0 -1 148 143134872 -2583556 -45872131 -611282540 -2001982580 - -3434534 604048076 -1094829557 - - -4.9170136451721191e-01 3.0917447805404663e-01 - <_> - - 0 -1 160 -1073233918 -201853499 2136473557 -1787301069 - -700452677 -818420694 -202390597 1073996290 - - -4.4051462411880493e-01 3.1225615739822388e-01 - <_> - - 0 -1 113 269490512 -2517667 522163703 -537454823 -1689747461 - -1074037346 -1997340673 -96204792 - - -4.6469467878341675e-01 2.9259225726127625e-01 - - <_> - 13 - -1.1383904218673706e+00 - - <_> - - 0 -1 23 -286265618 -286363926 -289093086 -420550110 - 2000123717 1886877559 2002089840 -134742185 - - -3.9212599396705627e-01 5.1098263263702393e-01 - <_> - - 0 -1 129 -1073504254 -264809 -184165057 -137364109 - -243010581 -17059405 -138940421 -782765113 - - -3.6656334996223450e-01 4.3630459904670715e-01 - <_> - - 0 -1 263 -254 -975177841 -287868416 -454562817 -68947194 - 7855995 -1574144 -167773185 - - -5.1354819536209106e-01 3.0799564719200134e-01 - <_> - - 0 -1 75 353377757 -36151880 -105319713 -13290732 -4419665 - -3626840 -542331973 -1148712960 - - -3.0346295237541199e-01 5.0388520956039429e-01 - <_> - - 0 -1 182 -67139074 997767672 671353020 1036812588 1541149116 - 210770921 156045544 2147483359 - - -4.9035164713859558e-01 2.9925996065139771e-01 - <_> - - 0 -1 82 -1073512445 -774385513 -699687041 -716968609 - -741868625 -83951421 -766260517 -1052261909 - - -3.2826542854309082e-01 4.3343764543533325e-01 - <_> - - 0 -1 158 494149052 1064834428 1072696313 1062998301 - 980434168 -1078457388 -1075036164 462430488 - - -6.2883645296096802e-01 1.9601677358150482e-01 - <_> - - 0 -1 7 -366007761 718007086 -957642206 -227808730 826762323 - 1149178927 2011674103 -150997001 - - -4.2092534899711609e-01 3.2627391815185547e-01 - <_> - - 0 -1 219 -1068507134 1404819342 -1292973354 -2081703262 - -1062212049 1521194594 1120134826 1081065738 - - -4.9449604749679565e-01 2.5739732384681702e-01 - <_> - - 0 -1 109 1002320056 -1141363980 247988368 496806910 - 2140155836 503368365 2143886332 -1029 - - -4.6534663438796997e-01 2.7641868591308594e-01 - <_> - - 0 -1 37 -1558044672 -272795331 -541372483 -138980931 - -69481992 -73401925 -892597096 -1473642496 - - -4.3698188662528992e-01 2.9382380843162537e-01 - <_> - - 0 -1 155 -290461950 -827336921 -1966168542 -744227044 - 1800381711 1112758063 818804610 -201861137 - - -3.7232404947280884e-01 3.4170129895210266e-01 - <_> - - 0 -1 54 285249680 1934966666 25433949 488973060 1478098938 - -1094677832 227065823 1599080840 - - -4.8338237404823303e-01 2.5156795978546143e-01 - - <_> - 15 - -1.4386829137802124e+00 - - <_> - - 0 -1 261 -268701949 242745343 -5243136 1660944351 -268435642 - 1115680639 -152043776 -134217729 - - -2.7799502015113831e-01 5.4982155561447144e-01 - <_> - - 0 -1 132 8593 990033664 -576621569 -1074318441 -1158758913 - -1074026283 -16908305 -1091291517 - - -4.0600129961967468e-01 3.6996468901634216e-01 - <_> - - 0 -1 25 -288428034 -71050 -1362440962 -554135814 1549553644 - -34515644 1676953849 -566273 - - -3.7318351864814758e-01 3.5906440019607544e-01 - <_> - - 0 -1 116 -84482 999865790 642392280 430453020 486019228 - 176175289 503058908 1608510447 - - -4.9817672371864319e-01 2.6974949240684509e-01 - <_> - - 0 -1 107 -1073495933 -69733121 -1018873637 -579344995 - -989072181 -883437510 -1072890405 -1056194293 - - -2.8550347685813904e-01 4.5101368427276611e-01 - <_> - - 0 -1 189 -806359506 1074709095 -486758912 1351286574 - -154475059 1076360787 -184699776 -771751937 - - -4.4456201791763306e-01 2.7919811010360718e-01 - <_> - - 0 -1 169 -1070874622 1933267362 -196106221 -251150048 - -500175889 -357637246 -1011890229 1074511882 - - -4.5736011862754822e-01 2.6500344276428223e-01 - <_> - - 0 -1 6 -276828369 -1024987189 -286285073 -159518738 - 1602053975 1442273271 -565281 -1 - - -3.1965401768684387e-01 4.1932246088981628e-01 - <_> - - 0 -1 111 486544828 -537059988 -1751312897 -1613226148 - -658465284 -543379988 -1093091841 1067977880 - - -4.8029872775077820e-01 2.6561823487281799e-01 - <_> - - 0 -1 161 -1945631744 -5296883 -1268883969 -14726113 - -1174757464 -1074007512 -1667299075 -1474158576 - - -4.5131915807723999e-01 2.6787233352661133e-01 - <_> - - 0 -1 217 -1062748021 -241972242 1358675959 -137365053 - 1614802383 -85199626 -521677122 -774905909 - - -2.8362974524497986e-01 4.3354424834251404e-01 - <_> - - 0 -1 240 -306184416 270597662 -610796288 283958071 -1183996 - 739027842 -50988400 -50855945 - - -4.0036740899085999e-01 2.9442140460014343e-01 - <_> - - 0 -1 95 -554255472 1603836918 -1621489008 296493866 - 1348278524 419714073 1699230668 2147280872 - - -5.4947453737258911e-01 2.0912265777587891e-01 - <_> - - 0 -1 206 -86788422 2131273658 776208432 -576513782 458753272 - 17302057 236982460 1610345454 - - -4.1417434811592102e-01 2.6627203822135925e-01 - <_> - - 0 -1 225 -1998419393 1970208692 -416092289 -1078486094 - -293746689 -1073807393 -1091252289 -1432214942 - - -3.0541145801544189e-01 3.6917164921760559e-01 - - <_> - 16 - -1.0340467691421509e+00 - - <_> - - 0 -1 21 -286527834 -1068831058 -294761950 -898699542 - 2004313959 1098346311 -147095568 -134742025 - - -2.8367474675178528e-01 4.9616107344627380e-01 - <_> - - 0 -1 70 1346441429 -8700675 2031427039 932524345 -129231619 - -57857 -899441153 -513 - - -3.2046657800674438e-01 4.4359135627746582e-01 - <_> - - 0 -1 245 -2137791829 -201854321 -1042423873 -671089185 - -824181265 -67108929 -1056968721 -1065106517 - - -2.7950826287269592e-01 4.4218274950981140e-01 - <_> - - 0 -1 157 -77602820 2138585950 514852884 1066941396 838622680 - 945058236 866392280 -4129 - - -3.8313990831375122e-01 3.1780952215194702e-01 - <_> - - 0 -1 243 -4721096 1023467420 -134291660 1033761695 -4210772 - 221878372 -50725504 -1087510340 - - -3.9204674959182739e-01 2.7886122465133667e-01 - <_> - - 0 -1 167 402655256 -59502095 1016903901 968722453 413964974 - -1147520884 -1157853505 -1375203816 - - -3.9511302113533020e-01 2.7908802032470703e-01 - <_> - - 0 -1 259 -842019321 29087711 -1197759456 -1024271642 - -84434170 10396867 -205391616 -505413633 - - -4.4214919209480286e-01 2.4015739560127258e-01 - <_> - - 0 -1 83 -1072970229 -704650065 -986451969 -671629065 - -491795794 -83894506 -152305989 -1044123057 - - -2.5662669539451599e-01 4.2095991969108582e-01 - <_> - - 0 -1 213 -289488478 -785848987 1080164352 -752132086 - 1648030656 4932041 1125613966 1462761471 - - -4.2129451036453247e-01 2.5393015146255493e-01 - <_> - - 0 -1 141 -2111831408 1058027000 -1412416713 -1112244144 - -1196438369 -1075139649 413677738 -1421518927 - - -4.3579095602035522e-01 2.4805732071399689e-01 - <_> - - 0 -1 117 974826424 2140991454 -1551889736 2106757052 - 974174716 525151932 2132131800 -2229265 - - -4.3843334913253784e-01 2.4296501278877258e-01 - <_> - - 0 -1 48 -1073232885 -143007068 -773324933 -169909025 - -276826117 -4609 -1055470354 -1073487358 - - -2.8845074772834778e-01 3.7775728106498718e-01 - <_> - - 0 -1 130 4194384 -11062023 -1646789123 -10208559 696171518 - -4603727 461304799 -1971060584 - - -4.4695761799812317e-01 2.4860441684722900e-01 - <_> - - 0 -1 110 -8667656 523941428 96732444 1026570044 986888700 - 402658556 1262748664 -278561 - - -3.7495428323745728e-01 2.7029833197593689e-01 - <_> - - 0 -1 174 -13638750 1864560619 -1370314720 1999282058 - -817131236 4473885 -134896400 -713556481 - - -3.6440634727478027e-01 2.9757344722747803e-01 - <_> - - 0 -1 233 -2036986093 -1051337 -575185507 -269560521 - -1210388481 -33638407 -1460748289 -1348220030 - - -2.4903561174869537e-01 4.1136464476585388e-01 - - <_> - 17 - -1.0704072713851929e+00 - - <_> - - 0 -1 266 -254 -2135949377 -805569536 -1871315074 -8390908 - 411041775 -294650624 -521142273 - - -2.3864482343196869e-01 5.1211661100387573e-01 - <_> - - 0 -1 10 -298850769 720366571 -890837393 -83888594 1601664891 - 1162342359 -403439649 -134217737 - - -3.2492494583129883e-01 3.9914098381996155e-01 - <_> - - 0 -1 45 1426084316 -552595000 289756637 -10649621 -649527380 - -1744813944 -879801361 -70522229 - - -3.6111223697662354e-01 3.4889730811119080e-01 - <_> - - 0 -1 152 -805060605 -673851745 -214641903 -204344129 - -355468849 -109330249 -336593441 -754728693 - - -2.7390027046203613e-01 4.0517389774322510e-01 - <_> - - 0 -1 197 -553218 2080025566 15600272 1067365024 406823868 - 502294020 1964967166 2144335806 - - -4.1399970650672913e-01 2.4464462697505951e-01 - <_> - - 0 -1 85 -538984454 492342896 799550936 423145104 1541193180 - 420504824 1828503544 -1050625 - - -3.0913692712783813e-01 3.3819082379341125e-01 - <_> - - 0 -1 255 201271047 17141657 -371197159 -1326777353 - 1944023302 649588447 -1229011072 -520880129 - - -3.9375796914100647e-01 2.4731478095054626e-01 - <_> - - 0 -1 205 -23878 -145515102 731382156 2144016106 1607833771 - 1056969892 1185290222 1602224127 - - -3.6536556482315063e-01 2.7690681815147400e-01 - <_> - - 0 -1 38 -65269776 1071392190 -275117764 -1081071592 - 2146766812 -1107681807 2139883704 -1086447804 - - -3.7846565246582031e-01 2.7309983968734741e-01 - <_> - - 0 -1 93 1543509013 -1340423 1028472191 -1081510144 887624920 - -35095665 -2135409219 148906016 - - -4.1629123687744141e-01 2.4189476668834686e-01 - <_> - - 0 -1 229 -269752574 -477904061 1248223232 1988291330 - 836748036 18970387 -415567680 -772802817 - - -4.1729050874710083e-01 2.2995656728744507e-01 - <_> - - 0 -1 57 805765258 825992962 539756060 -786587074 1086266510 - 936117914 1994991852 938313640 - - -5.1461368799209595e-01 1.7466257512569427e-01 - <_> - - 0 -1 19 -1364201690 -991697714 -433131806 -923877650 - 662140228 1685545751 1934037844 1702328183 - - -6.7833232879638672e-01 1.4472034573554993e-01 - <_> - - 0 -1 126 -596878983 -8574020 890080733 2144151295 1294489804 - -1104539940 -1880318229 -1366815844 - - -2.9432180523872375e-01 3.2720017433166504e-01 - <_> - - 0 -1 177 -794106197 -616564426 -464594145 -671358534 - 2049886875 -285491337 1346093803 1074254850 - - -3.2180884480476379e-01 2.9128241539001465e-01 - <_> - - 0 -1 143 268444179 1060451826 231817213 1896813565 825999358 - 234786998 -1194542085 -1137764542 - - -3.7007480859756470e-01 2.5912946462631226e-01 - <_> - - 0 -1 252 -553648881 46136703 -838963448 1358618355 - -159383801 1442840309 -428343678 -788529157 - - -2.8239414095878601e-01 3.4309053421020508e-01 - - <_> - 19 - -1.2764363288879395e+00 - - <_> - - 0 -1 9 -298848529 -353370417 -1368723733 -487657882 - 1731417983 1466398519 2146924503 -136316937 - - -1.3626074790954590e-01 5.3867846727371216e-01 - <_> - - 0 -1 124 -1207913485 -552553001 766677247 -1145867265 - -278529 -4862721 1072304059 -1410613313 - - -2.8374841809272766e-01 4.2133846879005432e-01 - <_> - - 0 -1 55 -1073692672 -1314401 -1811288065 -684984521 - -800407349 -88435541 -2147439990 -615789361 - - -3.6561635136604309e-01 3.0520385503768921e-01 - <_> - - 0 -1 247 -2132826321 -214438017 -201326793 -389 -51400849 - -69653 -1527911430 -1056967185 - - -2.9651319980621338e-01 3.6694592237472534e-01 - <_> - - 0 -1 35 4194512 -2638928 -2044722799 2139958178 596410875 - -1074918424 1466248191 -537957654 - - -3.9065396785736084e-01 2.6272973418235779e-01 - <_> - - 0 -1 166 -71845966 2073723792 497158160 2143945512 - 1041642428 403710357 872230872 1607980799 - - -3.8319590687751770e-01 2.6842683553695679e-01 - <_> - - 0 -1 268 -2097157 -1087391056 -5251176 -1148338189 -262727 - -1969291265 -168429408 -47188481 - - -2.3368743062019348e-01 4.6013623476028442e-01 - <_> - - 0 -1 223 -67653378 859369722 -1712813960 -1827098028 - -1818690562 405849580 1524404938 -536872737 - - -2.6423501968383789e-01 3.5824209451675415e-01 - <_> - - 0 -1 92 -750550494 1932244802 1426271509 -136875033 - -526392657 -72620446 -813185125 1380447810 - - -3.5788068175315857e-01 2.5566586852073669e-01 - <_> - - 0 -1 22 -294919089 1122946018 -1434007938 -28119070 - 1400077876 1781744245 -12065055 -526377 - - -3.2082986831665039e-01 2.7075409889221191e-01 - <_> - - 0 -1 127 355473876 533732892 -1082376741 1073220956 - 966269432 456665256 974404281 1033897352 - - -5.8279770612716675e-01 1.6808734834194183e-01 - <_> - - 0 -1 186 1108320930 1913312195 1956727103 1405871873 - 640671914 -1700015324 -359675449 1124845386 - - -4.3383055925369263e-01 1.9900636374950409e-01 - <_> - - 0 -1 42 1152581648 -551588004 -811938313 -13125865 - -369139204 -22061077 -1461089093 -935721983 - - -3.0062291026115417e-01 2.9034814238548279e-01 - <_> - - 0 -1 199 -269489370 1932518286 -362551552 -246745498 - 1744783768 1124222739 -408492416 -772276529 - - -3.5581216216087341e-01 2.4337428808212280e-01 - <_> - - 0 -1 115 -671055358 -11312698 2145976308 -742141112 - -141826933 -1094435776 -1614350450 1090764867 - - -4.2795911431312561e-01 2.3045140504837036e-01 - <_> - - 0 -1 210 -1448411117 1945829181 -1285333769 -5000414 - 1199458509 -71870659 249890952 -4243337 - - -2.8348302841186523e-01 3.1098461151123047e-01 - <_> - - 0 -1 179 -903454720 -744425358 -1023026384 -745872950 - -1276125254 40537699 313451211 1342948107 - - -4.2663165926933289e-01 2.0645493268966675e-01 - <_> - - 0 -1 50 1359284444 -585531077 429466362 1901934459 - -371400450 -166606184 1484769755 1226030794 - - -3.3885788917541504e-01 2.5499990582466125e-01 - <_> - - 0 -1 59 1483004925 -1090388084 -1464555305 297539532 - -8906500 -5079587 583675598 170689042 - - -2.8159880638122559e-01 3.0345180630683899e-01 - - <_> - 22 - -1.3054379224777222e+00 - - <_> - - 0 -1 265 -254 -2145583105 -1938034944 -2130840321 -553655040 - 2031487 -136905472 -452984833 - - -2.7614569664001465e-01 4.5691058039665222e-01 - <_> - - 0 -1 28 -12545 -67190790 -889264898 -18821378 -598319912 - -545824932 -543942692 -539304449 - - -2.3074461519718170e-01 4.5855847001075745e-01 - <_> - - 0 -1 114 -1073708414 -3312390 -581578753 -585237253 - -538847237 -7671817 -615792689 -582618181 - - -3.7242972850799561e-01 2.6750817894935608e-01 - <_> - - 0 -1 0 -435425501 -805313558 2030041983 2104849954 - 1734342395 -268435729 1669330943 -280496809 - - -2.2564554214477539e-01 4.1358834505081177e-01 - <_> - - 0 -1 184 141330492 -581105012 2232 -6488023 -1933800258 - -1439956440 -1431525122 -14832066 - - -4.0444701910018921e-01 2.0259374380111694e-01 - <_> - - 0 -1 154 -502300158 -142650766 -425559141 -772543129 - -521426209 -1930702029 -353902641 1080279618 - - -3.9792767167091370e-01 2.1542146801948547e-01 - <_> - - 0 -1 74 1498741759 -540935422 -147991877 -2245855 - -1643344209 -74675288 -604002065 -75030520 - - -2.0798775553703308e-01 4.1534551978111267e-01 - <_> - - 0 -1 14 779037479 678413167 -1360990494 -926427546 - 2136434543 394229691 1937503671 -135269513 - - -3.8600119948387146e-01 2.1943412721157074e-01 - <_> - - 0 -1 78 2067726474 -136991756 755436448 -2516098 365527994 - 1000094552 1529674638 -4198449 - - -3.3906060457229614e-01 2.4326251447200775e-01 - <_> - - 0 -1 208 -94704418 -577880596 1012403216 502857864 - -1450010402 134218160 73403384 2070935801 - - -3.6030718684196472e-01 2.2849518060684204e-01 - <_> - - 0 -1 41 20 -1476983145 -570726433 -700837 532647935 - -1076147219 -3302914 751304704 - - -5.0285857915878296e-01 1.7315587401390076e-01 - <_> - - 0 -1 250 -327160061 550493039 1837889286 5198839 -442765562 - 61852909 -1533416158 -1061163713 - - -3.2188731431961060e-01 2.5676867365837097e-01 - <_> - - 0 -1 236 237827 -1625566337 -684738721 -708838809 - -1031870705 -79761285 -75497793 -1001930198 - - -3.2259994745254517e-01 2.6575720310211182e-01 - <_> - - 0 -1 67 -872413360 352326992 527438201 1058613553 1249525754 - -1090901768 -1192209672 -1884680476 - - -3.9298188686370850e-01 2.1306723356246948e-01 - <_> - - 0 -1 212 -8737144 2074281186 7026092 1372771984 -361188420 - 680686614 88896761 1405867375 - - -3.8286519050598145e-01 2.1039620041847229e-01 - <_> - - 0 -1 221 -1162939742 1386357926 1317941504 1938564578 - -579168328 685403501 1526351822 1404036351 - - -3.7337547540664673e-01 2.3099578917026520e-01 - <_> - - 0 -1 101 285348049 -11430284 968767967 -1078062983 407110908 - -12830052 706951641 -19647952 - - -3.6690136790275574e-01 2.2291134297847748e-01 - <_> - - 0 -1 63 -2065527166 -5011633 -151545441 1033233464 - -1901425192 -67122241 -1150550790 -359407070 - - -2.6886180043220520e-01 3.1598880887031555e-01 - <_> - - 0 -1 239 -272630014 7263167 -675318270 2086844 -381944064 - 9104875 -41757440 1357905831 - - -6.4544874429702759e-01 1.3946346938610077e-01 - <_> - - 0 -1 99 -804290429 -543997893 -105636419 -683035777 - -878802513 -312840040 -1051884901 -250101621 - - -2.4588571488857269e-01 3.4430846571922302e-01 - <_> - - 0 -1 8 -339546369 -1412792581 1615777023 -54629182 - 1226143607 1921996013 1440111615 2113370743 - - -3.0302020907402039e-01 2.6522767543792725e-01 - <_> - - 0 -1 165 -1907792 995242656 222434520 1024884896 -425286920 - 188359786 1260570527 2135949294 - - -3.5448068380355835e-01 2.3688268661499023e-01 - - <_> - 20 - -1.1824889183044434e+00 - - <_> - - 0 -1 235 16 -1141556511 223442943 -1178299563 -2120171521 - -70275846 -1130849281 0 - - -4.3084502220153809e-01 4.0112102031707764e-01 - <_> - - 0 -1 3 -290459857 1691339118 -833917338 -320446462 - 1646752359 1853571447 1936424807 -135793289 - - -3.6515438556671143e-01 2.9652595520019531e-01 - <_> - - 0 -1 216 -1059553040 -753596268 805306416 -572717025 - -1999863638 -1162302592 -1362318401 -102765569 - - -3.0720838904380798e-01 3.1679639220237732e-01 - <_> - - 0 -1 251 -1946165489 390070111 -1179279847 -1612709889 - -21667325 737673215 -1573417332 -1073741893 - - -2.7648302912712097e-01 3.4295567870140076e-01 - <_> - - 0 -1 202 -1022368734 -586554954 -848870069 -70032832 - 1258989227 -1075904854 1095746255 1091551490 - - -3.7661415338516235e-01 2.3859095573425293e-01 - <_> - - 0 -1 58 -669035267 -2146853 428561887 -1681980139 -931332868 - -67110465 1078586367 -617873729 - - -2.4220712482929230e-01 3.9469438791275024e-01 - <_> - - 0 -1 172 -269568840 2074779832 2143224388 2146841138 - -1411342152 710153642 375502988 2135947215 - - -3.8428553938865662e-01 2.2938421368598938e-01 - <_> - - 0 -1 27 -352335105 -924422186 -321853204 1083754446 - 1346657621 1359424271 -78481065 -211296393 - - -3.3762323856353760e-01 2.4234491586685181e-01 - <_> - - 0 -1 66 -74730830 -1719892262 -1925244624 925677442 - 440769672 422641780 743449532 2146957287 - - -3.4075874090194702e-01 2.3807466030120850e-01 - <_> - - 0 -1 176 1601190364 331089657 352984893 1004016536 - -1097580804 -1078437672 -1196287489 -1099430164 - - -3.7614050507545471e-01 2.2108320891857147e-01 - <_> - - 0 -1 211 -1022639734 -610610142 -846554339 -1683757005 - -1706381105 -89921561 -1070089217 1395312138 - - -3.3527806401252747e-01 2.3671005666255951e-01 - <_> - - 0 -1 122 196611 -1152142945 -1621293031 2039173647 - -1412433217 -360952176 -1019001861 -1056735205 - - -3.7603583931922913e-01 2.1857734024524689e-01 - <_> - - 0 -1 238 -268458234 13536831 -86770910 12106874 1777826563 - 5182807 -536873214 31457275 - - -6.7599576711654663e-01 1.2590792775154114e-01 - <_> - - 0 -1 13 335489835 -2643656 199426574 -1084804598 988528383 - 1503145984 1087005402 4501192 - - -3.8562673330307007e-01 1.8832445144653320e-01 - <_> - - 0 -1 60 -552616270 2006492848 -1491548008 831274626 - 2103542712 408176996 266439336 1594227130 - - -3.6538988351821899e-01 2.1386267244815826e-01 - <_> - - 0 -1 232 -1616214020 381206526 -1380008483 -1149718988 - -117949220 -1109642243 -1431620166 -1395922789 - - -2.4237436056137085e-01 3.1383481621742249e-01 - <_> - - 0 -1 108 -995385310 -251140753 1313566227 -642384614 - -1416911446 -383105408 1936676078 1131406090 - - -3.3444473147392273e-01 2.3265764117240906e-01 - <_> - - 0 -1 150 -148142336 -1969716433 1196531029 -1744832112 - -2029179607 -2011647352 -1438180599 -318770533 - - -3.2824718952178955e-01 2.3133316636085510e-01 - <_> - - 0 -1 136 -643080969 1461129532 834687225 901055537 448793752 - -1704373864 412357071 725441173 - - -2.9123142361640930e-01 2.6894247531890869e-01 - <_> - - 0 -1 1 -416832992 -13127980 -303303043 -9341920 -402666209 - -4194305 -302059521 -949000704 - - -2.5401115417480469e-01 3.0308523774147034e-01 - - <_> - 24 - -1.1056766510009766e+00 - - <_> - - 0 -1 257 -932252672 69009174 -274731216 -1246036485 - 1467479344 341049303 -176687136 -50331649 - - -2.0472958683967590e-01 4.4878211617469788e-01 - <_> - - 0 -1 151 32819 1058478609 356204543 -1078257961 526777855 - -1682103621 1073725435 -1144048133 - - -3.3589541912078857e-01 2.8405088186264038e-01 - <_> - - 0 -1 29 -78082 -77826 -269291522 -40235266 1260129788 - -763028 -538161153 -805679106 - - -2.7084660530090332e-01 3.1221374869346619e-01 - <_> - - 0 -1 192 -788275069 -70040829 -705953801 -586702026 - -745545985 -74747888 -933764645 -263989757 - - -2.2504505515098572e-01 3.5947087407112122e-01 - <_> - - 0 -1 73 -120123236 2132770214 -35818179 1908110615 - -121884484 -1414604912 818846378 137098400 - - -3.5432848334312439e-01 2.0587421953678131e-01 - <_> - - 0 -1 15 -433951198 -819277842 -290550674 -1495268700 - 1734361719 2117276675 669475411 1979151479 - - -5.8497852087020874e-01 1.4614424109458923e-01 - <_> - - 0 -1 98 -211311702 -156525938 -1508441816 1002025790 - -1747079220 -1971316467 902235131 -45400665 - - -3.0112090706825256e-01 2.6494047045707703e-01 - <_> - - 0 -1 175 -4540164 2066654612 223217726 1023881400 -335898184 - 168564521 54796540 2140929499 - - -3.9817783236503601e-01 1.8089868128299713e-01 - <_> - - 0 -1 43 270254167 939505587 -472385025 -167779321 603961850 - 2138655772 -1806172161 1095753738 - - -2.7771857380867004e-01 2.6211205124855042e-01 - <_> - - 0 -1 131 188 890515783 -1928298757 1032347002 946387198 - -44553749 -1148281121 201859080 - - -5.2568686008453369e-01 1.4650578796863556e-01 - <_> - - 0 -1 254 -603984625 180320127 -637804776 -1802184225 - -118623484 78303441 -223629692 -1060380693 - - -2.9106634855270386e-01 2.5167012214660645e-01 - <_> - - 0 -1 198 -420486590 1916956719 -2075873214 -1293260342 - 1409777995 1074266893 -2103578117 1427624199 - - -4.6088227629661560e-01 1.4865124225616455e-01 - <_> - - 0 -1 71 1560287376 1501872576 93330197 -149922831 -6426675 - 1497631401 1236609707 1028467595 - - -4.3222665786743164e-01 1.5400531888008118e-01 - <_> - - 0 -1 204 -427301504 -204573308 -278003456 1368326670 - -1675434308 38732356 37807304 1369431486 - - -3.7656742334365845e-01 1.8921722471714020e-01 - <_> - - 0 -1 120 899160056 965489400 861681915 536155580 597171592 - 505688760 945037276 799547400 - - -5.5298405885696411e-01 1.3539013266563416e-01 - <_> - - 0 -1 26 -294654417 -357580018 -456331548 -121186622 - 1626432311 1978081807 -500149913 -489160841 - - -3.3190330862998962e-01 2.2509172558784485e-01 - <_> - - 0 -1 76 -72703744 993173512 -1413994056 434274880 2065667486 - 169890832 15967450 2070403071 - - -3.6797395348548889e-01 1.9423931837081909e-01 - <_> - - 0 -1 156 1811669538 1083351686 -1835457886 268618330 - 2111253504 121815302 -941760343 1934852079 - - -5.0998413562774658e-01 1.3428133726119995e-01 - <_> - - 0 -1 164 -133250046 -736681242 178479257 -772903362 - -64228357 -1360092638 1128132254 1078673546 - - -3.5058033466339111e-01 2.0806281268596649e-01 - <_> - - 0 -1 242 -1983656160 537984560 -576718280 -255984996 -801968 - 749519076 2056507520 4185519 - - -4.2675125598907471e-01 1.6700066626071930e-01 - <_> - - 0 -1 62 -919302320 -82812016 1049935357 -1143920043 - -1613181556 -1386341991 264245176 -1956298560 - - -3.1545698642730713e-01 2.4012765288352966e-01 - <_> - - 0 -1 86 -297796297 1563704656 -1347412235 2108997601 - -2007646019 -1398784592 804001469 1878972927 - - -2.1169832348823547e-01 3.2915911078453064e-01 - <_> - - 0 -1 188 -1956730190 2139632728 797444224 535265612 - 718943472 179072316 1177307790 1497229291 - - -3.9158722758293152e-01 1.7950470745563507e-01 - <_> - - 0 -1 12 -1423824222 -347933442 -473527329 -367885210 - 1951885175 2080068088 -23110657 2004083703 - - -4.2160919308662415e-01 1.6656816005706787e-01 - - <_> - 25 - -1.0476776361465454e+00 - - <_> - - 0 -1 248 -931197947 2139053339 -29360641 -134217729 - -50673106 -1048609 -2136277334 -1459880677 - - -2.0601851865649223e-02 5.8408087491989136e-01 - <_> - - 0 -1 241 -8390896 872469788 -75498736 1010106133 -93323368 - -1937197636 -67117652 -1136721921 - - -3.3375686407089233e-01 2.8437638282775879e-01 - <_> - - 0 -1 144 402661681 -8388673 2100678583 -2238601 602925055 - -13914198 1068230655 -98610345 - - -2.8332126140594482e-01 3.0587852001190186e-01 - <_> - - 0 -1 65 1359009236 -1114605582 -1214450753 2063676794 - 1549031932 -5408068 2023930863 1051026088 - - -3.4133437275886536e-01 2.3669779300689697e-01 - <_> - - 0 -1 6 -299372689 -1505047345 -292656826 -957421105 - 1718830967 1097560413 2140605295 -135790637 - - -3.7768480181694031e-01 1.7987045645713806e-01 - <_> - - 0 -1 97 -1073154 1004322294 -1147662916 -10115876 1834274296 - 759698865 1273497048 -1048630 - - -2.6975196599960327e-01 2.8011119365692139e-01 - <_> - - 0 -1 81 -335546486 -150033533 105915952 -138218202 - -666660472 -2143208063 -243365219 -581436677 - - -2.9663780331611633e-01 2.5062835216522217e-01 - <_> - - 0 -1 227 -1073233917 -267476830 -2122911785 -177815006 - -800076401 -352392257 -2065963301 -793255169 - - -2.5752902030944824e-01 2.9005941748619080e-01 - <_> - - 0 -1 178 387383978 1968913403 1067585192 -12769396 962213582 - 1601127733 -1278178594 1024198792 - - -4.5044946670532227e-01 1.7661906778812408e-01 - <_> - - 0 -1 36 16786801 -1644201986 -653400577 -4230181 -1460667943 - -74949445 -1349652517 -1918893952 - - -3.2200109958648682e-01 2.2200360894203186e-01 - <_> - - 0 -1 201 -873492986 1332382499 -287153536 1365960970 - 1570751688 86400343 294895824 389283743 - - -4.3344420194625854e-01 1.6486145555973053e-01 - <_> - - 0 -1 39 -550462977 497814994 165283325 939408050 272107772 - -1661714196 1559500029 1557690863 - - -3.0110406875610352e-01 2.3946200311183929e-01 - <_> - - 0 -1 24 -320674066 -353966197 -354228484 -621876062 - 1547785717 1505060372 1978947829 2002219895 - - -4.4369262456893921e-01 1.7294771969318390e-01 - <_> - - 0 -1 162 -360529920 -79617826 848794457 331310642 - -1987053061 -1666055573 -1209271298 1074513418 - - -3.7377515435218811e-01 1.9515429437160492e-01 - <_> - - 0 -1 33 -521936894 1718228966 -1030226758 -28903354 - 1207396130 656656962 1940608999 2012739543 - - -4.9193805456161499e-01 1.2772387266159058e-01 - <_> - - 0 -1 31 -237788756 -36891774 756162060 -3341429 -216220931 - 290458792 -460804133 2068699022 - - -2.8526151180267334e-01 2.4898144602775574e-01 - <_> - - 0 -1 137 -851507192 -49414322 390020095 1973369886 - -337723713 -1048769 -1940650054 -927994838 - - -2.5763612985610962e-01 2.7653712034225464e-01 - <_> - - 0 -1 135 1372360956 862725368 730609136 -1553429230 - 819508732 453807332 1829633021 1568536543 - - -4.5178580284118652e-01 1.5893152356147766e-01 - <_> - - 0 -1 145 -1274805488 -9927920 -1376462213 -1078424186 - 603396895 -1090832097 107616655 440664192 - - -4.1856658458709717e-01 1.5220971405506134e-01 - <_> - - 0 -1 231 -288652797 1608697646 1224139776 1396858638 - 1558660860 27394093 -438065980 -714604577 - - -2.8446722030639648e-01 2.5237077474594116e-01 - <_> - - 0 -1 226 -1951680709 1048748839 934756149 -1214142800 - 854407598 -1073775393 747499512 -1427114237 - - -2.1165955066680908e-01 3.3453106880187988e-01 - <_> - - 0 -1 106 890514736 521148756 -5461060 -15927272 625774572 - 252750161 -891770388 985401424 - - -4.9193653464317322e-01 1.3465493917465210e-01 - <_> - - 0 -1 220 -291781117 1931978283 -1006772142 1937440367 - 1660932014 1140286983 -532876302 -105978118 - - -2.1797108650207520e-01 3.2472217082977295e-01 - <_> - - 0 -1 237 142568448 5694285 267957505 432006067 -5019387 - 82008315 -50595072 553515895 - - -5.4030531644821167e-01 1.3703715801239014e-01 - <_> - - 0 -1 103 -499261184 -361790357 131140111 -303573517 - 1180757915 -1205085265 1326942120 1365504522 - - -3.4566181898117065e-01 1.9119048118591309e-01 - - <_> - 27 - -1.0864274501800537e+00 - - <_> - - 0 -1 11 -891007484 1211035262 -823210124 -654381318 - 1564990964 1683447679 -8960692 -50331681 - - -1.7767603695392609e-01 4.3950533866882324e-01 - <_> - - 0 -1 53 1494504925 -545673287 -609913089 -15682660 - -1202970706 -6512216 -540169493 -1152645112 - - -2.3206019401550293e-01 3.5371619462966919e-01 - <_> - - 0 -1 258 -889194746 175616267 -277357050 317915103 - 2124145408 1123013115 -85207488 -520355841 - - -4.2506697773933411e-01 1.9782558083534241e-01 - <_> - - 0 -1 146 -1 -21002 -1282140165 -560551 -1429426772 - -1363539800 737717486 -17697 - - -1.6592836380004883e-01 4.8377290368080139e-01 - <_> - - 0 -1 218 -1023770102 -134512145 -539363397 -203424453 - 1272623102 -271847642 -1595890998 -1595743638 - - -2.7133983373641968e-01 2.7267450094223022e-01 - <_> - - 0 -1 88 -805076990 -149425455 -985448645 -712822435 - -765819210 -620768021 -1832196982 -754716533 - - -2.9903864860534668e-01 2.4232909083366394e-01 - <_> - - 0 -1 46 -1074249731 1063010200 886120183 1054646218 - -1074188360 -8614708 496775097 -1073988100 - - -3.1212934851646423e-01 2.2097712755203247e-01 - <_> - - 0 -1 214 -68779992 -205123576 536228408 2106794930 782941342 - 442508840 123864506 1608515547 - - -3.5215419530868530e-01 1.9548596441745758e-01 - <_> - - 0 -1 138 134414867 -82756098 907087317 -12699939 1052716991 - -1081669588 797642751 -362887177 - - -3.0123272538185120e-01 2.3132325708866119e-01 - <_> - - 0 -1 72 1480642776 1997667273 282210484 -607120144 -86663538 - 491273210 -1258550900 1994914794 - - -2.9138937592506409e-01 2.3277030885219574e-01 - <_> - - 0 -1 139 -2136960272 -1712184942 1342143477 -1242228367 - -1669857285 -1157984263 -1970783861 720044086 - - -3.4432685375213623e-01 1.9603538513183594e-01 - <_> - - 0 -1 6 -273682938 1617226187 -318870010 -892410812 - 1448570470 1380122631 -480551051 -169347209 - - -3.5725796222686768e-01 1.9195778667926788e-01 - <_> - - 0 -1 181 -285563872 1938338084 -284622176 1369605388 - 788149694 685363 1733297344 1371537119 - - -4.4718763232231140e-01 1.3961075246334076e-01 - <_> - - 0 -1 171 -277887485 -500718545 1321160726 -207444821 - -1956666417 1114068100 1408541940 -215746625 - - -2.5066006183624268e-01 2.7519401907920837e-01 - <_> - - 0 -1 195 1935143315 993445570 610010493 -150654117 - 2122195213 258214406 1195727869 1598549829 - - -2.5814446806907654e-01 2.5379449129104614e-01 - <_> - - 0 -1 191 473206268 465341840 275257821 499657168 1043082232 - -1078087986 -638054916 1051468524 - - -4.7531163692474365e-01 1.4217083156108856e-01 - <_> - - 0 -1 118 -474312942 -216353000 672931579 965216924 - -1694308964 679631248 65288426 1072693195 - - -3.4220626950263977e-01 1.9385008513927460e-01 - <_> - - 0 -1 222 -281285118 1670008163 -496738816 1408028942 - -1077961972 12189815 -1226841458 -773849649 - - -3.1611573696136475e-01 2.1220512688159943e-01 - <_> - - 0 -1 47 67109888 -1141813928 -229012613 -5148635 761734654 - -1076389365 -1933831800 142606340 - - -5.6943005323410034e-01 1.2012590467929840e-01 - <_> - - 0 -1 84 -1431396224 -1725172082 1078388256 -1850738226 - 730587530 169925378 -811871287 1099953835 - - -3.8054189085960388e-01 1.7058716714382172e-01 - <_> - - 0 -1 77 260768394 495072811 233439232 28973086 575602872 - 181406662 445404133 1334704062 - - -4.8239827156066895e-01 1.3680285215377808e-01 - <_> - - 0 -1 209 -1066220015 -4474061 2076076799 -8947757 1888966619 - -1 1786727151 -356580861 - - -1.9837911427021027e-01 3.4651774168014526e-01 - <_> - - 0 -1 266 -1087373425 -2131526698 -27274240 678559092 - -1239681243 21160657 -198446336 -521666585 - - -3.1992667913436890e-01 2.1379309892654419e-01 - <_> - - 0 -1 183 1411949790 1533029780 537141276 -645595131 - -2015977302 -70766372 80521851 1862591198 - - -3.4819486737251282e-01 1.9132232666015625e-01 - <_> - - 0 -1 163 159409168 453523316 268185503 939303412 754542844 - -1094811257 783024670 460076576 - - -4.6279802918434143e-01 1.3720697164535522e-01 - <_> - - 0 -1 17 -270012637 -422582426 -859576340 -290994558 - 1611619109 1984156183 1973384935 -671910025 - - -3.7753671407699585e-01 1.7108070850372314e-01 - <_> - - 0 -1 61 1390453016 -148850831 -1946933193 487664274 - 1167036398 -1356085046 -918287665 -1085865773 - - -2.5055482983589172e-01 2.6808515191078186e-01 - - <_> - 28 - -1.1071751117706299e+00 - - <_> - - 0 -1 234 -352328126 553381479 -520359742 49741823 -402656305 - 15201071 -404752917 16777215 - - -2.6885536313056946e-01 3.9257419109344482e-01 - <_> - - 0 -1 69 -2010207566 992095882 -923650279 788664832 - -2001285654 -1627768873 -33641557 -286265589 - - -2.6879036426544189e-01 2.9501637816429138e-01 - <_> - - 0 -1 91 -784068086 -108473857 2146818527 -573505573 - -875627894 -121565032 -69223473 -69862017 - - -3.2706248760223389e-01 2.2975476086139679e-01 - <_> - - 0 -1 30 -1048578 -604866 -1074132226 -859444 -42054404 - 1572803865 -537376564 -45313 - - -2.4356228113174438e-01 3.0726879835128784e-01 - <_> - - 0 -1 203 546301 -3364714 1037842677 -1141359636 -1730392580 - -1073873060 -1195099652 -1197997560 - - -2.6030963659286499e-01 2.7339822053909302e-01 - <_> - - 0 -1 244 340007221 -715777 1976958847 -560289 -645227653 - -5137 -1395851585 -1475338720 - - -3.3757317066192627e-01 1.8169505894184113e-01 - <_> - - 0 -1 252 -536876277 6287771 -1619133169 -2073298197 - 1942747142 347331667 -456196348 -187697169 - - -2.8153365850448608e-01 2.3552483320236206e-01 - <_> - - 0 -1 133 -1895619053 1594076987 213346175 1940061794 - -1084264449 -836767838 1113580542 -71317581 - - -1.8090774118900299e-01 3.6471092700958252e-01 - <_> - - 0 -1 196 -939278205 -1038940544 358138843 -241883949 - -1991554675 -593763646 72742875 -639905253 - - -2.0349347591400146e-01 3.1664288043975830e-01 - <_> - - 0 -1 32 -10467632 -1218534866 -140499459 -873455368 - -84072199 -1396790337 -1298891060 174661666 - - -2.9732549190521240e-01 2.0526884496212006e-01 - <_> - - 0 -1 168 -1014857696 -580779488 1466422647 2000216098 - -999622994 -9829728 -1067589142 1090961922 - - -4.1238275170326233e-01 1.5365768969058990e-01 - <_> - - 0 -1 34 -2744452 -386768130 -423167714 -1765347118 - -638249896 1761690417 1675646108 -16942736 - - -3.5506930947303772e-01 1.7395976185798645e-01 - <_> - - 0 -1 180 -297810429 2010621711 1795057440 1471141759 - -298336274 7532327 2012214010 -1968439297 - - -2.2353799641132355e-01 2.8162729740142822e-01 - <_> - - 0 -1 52 1370465178 -138027107 1106779442 1039434826 - 1994768862 1132100550 -62026870 1892530874 - - -2.9113209247589111e-01 2.0969158411026001e-01 - <_> - - 0 -1 119 1785457410 1074396198 -722866136 1894924863 - -2092621052 1078068033 849286481 1350039159 - - -4.8594748973846436e-01 1.4445739984512329e-01 - <_> - - 0 -1 267 -307232973 739178939 -109578240 -1467065064 - -1953519100 543159451 2067785728 1156576639 - - -3.6847913265228271e-01 1.6343115270137787e-01 - <_> - - 0 -1 105 -304479188 -653906046 458232444 362283648 743997852 - 1023435825 678702296 2141353427 - - -4.1794654726982117e-01 1.4696790277957916e-01 - <_> - - 0 -1 149 -1474295600 583142900 796931261 636946882 - -1677723202 -1141257324 999885740 146933924 - - -4.6846660971641541e-01 1.2554962933063507e-01 - <_> - - 0 -1 142 -1056920456 2144904732 1557674361 454068048 - 162041240 982532569 1165742776 -71968580 - - -3.3009743690490723e-01 1.8906202912330627e-01 - <_> - - 0 -1 215 -586218806 2064193627 276825240 420610717 290201738 - 838881504 -1650814757 1587269849 - - -3.3714732527732849e-01 1.8466538190841675e-01 - <_> - - 0 -1 2 386867406 1939059381 424173738 -46096988 -1177697538 - 251995272 1344360935 1962986616 - - -3.3208054304122925e-01 1.8585780262947083e-01 - <_> - - 0 -1 134 -298857425 1997964573 1077568116 2012533912 - 1361920524 1090935617 1193755076 -200286465 - - -2.5905856490135193e-01 2.4680580198764801e-01 - <_> - - 0 -1 68 -1056780345 -4719777 2134372031 -1759921541 - -553802593 -16822282 -421013525 -374683390 - - -1.5229237079620361e-01 3.9819708466529846e-01 - <_> - - 0 -1 224 -608446464 -1867328277 -790902508 421068383 - -394279672 141484519 445484292 408940511 - - -3.8842281699180603e-01 1.5214422345161438e-01 - <_> - - 0 -1 4 1810834979 545384940 -2033506042 1522937006 - 1661430389 1146300953 2110680405 -152732730 - - -3.6140063405036926e-01 1.7674677073955536e-01 - <_> - - 0 -1 170 -1660680999 455349924 -1074521701 -1076380789 - 1166607768 -88280905 1539185402 -1680998264 - - -2.5342223048210144e-01 2.5323724746704102e-01 - <_> - - 0 -1 207 -85819176 -574059136 -1925111674 1596920354 - 1782615976 437916680 386308588 2132014521 - - -3.5360771417617798e-01 1.8576373159885406e-01 - <_> - - 0 -1 246 493625329 -1650686224 -1305653903 -1780149510 - 1033453485 -90368775 -1899817483 -1610865684 - - -2.7493086457252502e-01 2.2744202613830566e-01 - - <_> - - 0 0 1 1 - <_> - - 0 0 3 1 - <_> - - 0 0 12 6 - <_> - - 0 1 1 1 - <_> - - 0 1 1 2 - <_> - - 0 1 1 4 - <_> - - 0 2 1 1 - <_> - - 0 2 1 2 - <_> - - 0 2 2 1 - <_> - - 0 3 1 1 - <_> - - 0 3 1 2 - <_> - - 0 3 1 5 - <_> - - 0 3 2 1 - <_> - - 0 3 12 4 - <_> - - 0 4 1 1 - <_> - - 0 4 2 1 - <_> - - 0 6 1 1 - <_> - - 0 6 2 1 - <_> - - 0 7 1 2 - <_> - - 0 7 2 2 - <_> - - 0 8 1 2 - <_> - - 0 9 1 2 - <_> - - 0 11 1 2 - <_> - - 0 12 1 1 - <_> - - 0 12 2 1 - <_> - - 0 12 2 2 - <_> - - 0 13 1 1 - <_> - - 0 14 1 1 - <_> - - 0 15 1 1 - <_> - - 0 15 2 1 - <_> - - 0 15 3 1 - <_> - - 0 15 12 1 - <_> - - 1 4 5 1 - <_> - - 1 6 2 1 - <_> - - 1 9 1 3 - <_> - - 1 11 10 2 - <_> - - 2 0 1 1 - <_> - - 2 0 2 1 - <_> - - 2 15 2 1 - <_> - - 2 15 4 1 - <_> - - 2 15 8 1 - <_> - - 3 0 1 1 - <_> - - 3 0 2 1 - <_> - - 3 0 3 1 - <_> - - 3 0 10 3 - <_> - - 3 2 10 2 - <_> - - 3 15 1 1 - <_> - - 4 0 1 1 - <_> - - 4 0 1 4 - <_> - - 4 0 7 1 - <_> - - 4 0 9 2 - <_> - - 4 1 5 2 - <_> - - 4 1 9 1 - <_> - - 4 4 9 1 - <_> - - 4 12 9 2 - <_> - - 5 0 1 3 - <_> - - 5 0 1 4 - <_> - - 5 1 9 1 - <_> - - 5 2 5 2 - <_> - - 5 4 6 1 - <_> - - 5 6 1 4 - <_> - - 5 12 8 1 - <_> - - 5 13 6 1 - <_> - - 6 0 4 1 - <_> - - 6 1 9 2 - <_> - - 6 3 6 1 - <_> - - 6 7 1 3 - <_> - - 6 12 4 2 - <_> - - 7 0 3 1 - <_> - - 7 1 2 1 - <_> - - 7 1 4 2 - <_> - - 7 1 9 2 - <_> - - 7 2 8 1 - <_> - - 7 4 4 1 - <_> - - 7 4 7 1 - <_> - - 7 4 8 1 - <_> - - 7 6 1 3 - <_> - - 7 7 7 3 - <_> - - 7 8 7 3 - <_> - - 7 9 8 3 - <_> - - 7 11 7 2 - <_> - - 8 10 6 1 - <_> - - 9 0 1 3 - <_> - - 9 0 1 4 - <_> - - 9 4 1 3 - <_> - - 9 9 1 3 - <_> - - 9 11 3 2 - <_> - - 9 15 3 1 - <_> - - 10 0 1 3 - <_> - - 10 0 1 4 - <_> - - 10 0 5 2 - <_> - - 10 1 5 3 - <_> - - 10 3 1 3 - <_> - - 10 3 3 1 - <_> - - 10 3 8 1 - <_> - - 10 6 1 4 - <_> - - 10 7 1 3 - <_> - - 10 9 1 3 - <_> - - 10 11 5 1 - <_> - - 11 0 1 3 - <_> - - 11 1 1 4 - <_> - - 11 2 3 1 - <_> - - 11 3 6 1 - <_> - - 11 4 1 2 - <_> - - 11 6 1 4 - <_> - - 11 10 1 2 - <_> - - 11 13 2 1 - <_> - - 12 0 1 3 - <_> - - 12 3 1 3 - <_> - - 12 6 3 4 - <_> - - 12 9 1 3 - <_> - - 12 15 4 1 - <_> - - 13 0 1 3 - <_> - - 13 0 3 1 - <_> - - 13 1 2 3 - <_> - - 13 3 3 2 - <_> - - 13 8 1 3 - <_> - - 13 8 2 3 - <_> - - 13 10 1 2 - <_> - - 13 10 3 1 - <_> - - 13 15 1 1 - <_> - - 13 15 5 1 - <_> - - 14 0 1 3 - <_> - - 14 0 4 1 - <_> - - 14 1 5 2 - <_> - - 14 9 1 3 - <_> - - 14 13 4 1 - <_> - - 14 15 2 1 - <_> - - 14 15 3 1 - <_> - - 15 0 1 4 - <_> - - 15 0 2 1 - <_> - - 15 0 3 1 - <_> - - 15 3 3 1 - <_> - - 15 5 1 1 - <_> - - 15 9 1 1 - <_> - - 15 9 2 3 - <_> - - 15 10 4 2 - <_> - - 16 0 5 1 - <_> - - 16 3 1 1 - <_> - - 16 3 3 1 - <_> - - 16 3 4 1 - <_> - - 16 3 5 1 - <_> - - 16 10 1 2 - <_> - - 17 3 1 1 - <_> - - 17 4 1 1 - <_> - - 17 4 4 1 - <_> - - 17 12 2 2 - <_> - - 18 0 1 4 - <_> - - 18 1 5 2 - <_> - - 18 2 3 1 - <_> - - 18 2 6 1 - <_> - - 18 3 1 1 - <_> - - 19 0 1 3 - <_> - - 19 0 1 4 - <_> - - 19 2 1 3 - <_> - - 19 7 1 1 - <_> - - 19 8 2 1 - <_> - - 19 9 1 3 - <_> - - 19 15 2 1 - <_> - - 20 0 1 3 - <_> - - 20 0 1 4 - <_> - - 20 0 3 1 - <_> - - 20 3 1 2 - <_> - - 20 3 3 1 - <_> - - 20 4 1 2 - <_> - - 20 7 1 3 - <_> - - 20 8 1 3 - <_> - - 20 13 3 1 - <_> - - 21 1 1 4 - <_> - - 21 3 1 3 - <_> - - 21 4 3 1 - <_> - - 21 7 1 1 - <_> - - 21 7 1 3 - <_> - - 21 8 1 3 - <_> - - 21 10 1 1 - <_> - - 21 10 1 2 - <_> - - 21 15 2 1 - <_> - - 22 2 1 3 - <_> - - 22 3 2 5 - <_> - - 22 4 1 3 - <_> - - 22 6 1 1 - <_> - - 22 8 1 2 - <_> - - 22 8 1 3 - <_> - - 22 10 2 2 - <_> - - 22 11 2 2 - <_> - - 23 0 1 4 - <_> - - 23 3 1 3 - <_> - - 23 6 1 4 - <_> - - 23 7 1 3 - <_> - - 23 9 1 1 - <_> - - 23 9 1 3 - <_> - - 23 15 1 1 - <_> - - 24 0 1 3 - <_> - - 24 0 1 4 - <_> - - 24 1 1 4 - <_> - - 24 1 3 1 - <_> - - 24 2 1 2 - <_> - - 24 7 1 3 - <_> - - 24 7 2 1 - <_> - - 24 9 1 1 - <_> - - 24 9 1 3 - <_> - - 24 10 1 1 - <_> - - 25 4 1 2 - <_> - - 25 4 3 1 - <_> - - 25 7 1 2 - <_> - - 25 7 1 3 - <_> - - 25 8 1 3 - <_> - - 25 9 1 2 - <_> - - 25 10 1 2 - <_> - - 26 0 1 1 - <_> - - 26 1 1 1 - <_> - - 26 3 1 3 - <_> - - 26 6 1 3 - <_> - - 26 7 1 2 - <_> - - 26 7 1 3 - <_> - - 26 8 2 2 - <_> - - 26 11 2 2 - <_> - - 27 0 1 4 - <_> - - 27 0 3 1 - <_> - - 27 3 1 3 - <_> - - 27 6 1 1 - <_> - - 27 6 1 3 - <_> - - 27 9 1 1 - <_> - - 27 9 1 3 - <_> - - 27 9 3 2 - <_> - - 28 0 2 1 - <_> - - 28 1 1 1 - <_> - - 28 1 1 3 - <_> - - 28 3 1 3 - <_> - - 28 9 1 1 - <_> - - 28 9 1 3 - <_> - - 28 10 1 1 - <_> - - 28 15 1 1 - <_> - - 29 0 1 1 - <_> - - 29 7 2 1 - <_> - - 30 0 1 1 - <_> - - 30 0 1 4 - <_> - - 30 4 2 1 - <_> - - 30 8 2 1 - <_> - - 30 10 2 1 - <_> - - 30 11 2 2 - <_> - - 30 12 2 2 - <_> - - 30 14 2 1 - <_> - - 30 15 2 1 - <_> - - 31 0 1 1 - <_> - - 31 0 1 4 - <_> - - 31 15 1 1 - <_> - - 32 0 1 4 - <_> - - 33 0 1 1 - <_> - - 33 0 1 4 - <_> - - 33 1 1 1 - <_> - - 33 1 1 2 - <_> - - 33 2 1 1 - <_> - - 33 2 1 2 - <_> - - 33 3 1 1 - <_> - - 33 3 1 2 - <_> - - 33 3 1 3 - <_> - - 33 3 1 5 - <_> - - 33 4 1 1 - <_> - - 33 5 1 1 - <_> - - 33 5 1 3 - <_> - - 33 6 1 1 - <_> - - 33 9 1 1 - <_> - - 33 10 1 1 - <_> - - 33 10 1 2 - <_> - - 33 12 1 1 - <_> - - 33 13 1 1 - <_> - - 33 14 1 1 - <_> - - 33 15 1 1 - + + + + BOOST + LBP + 18 + 36 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 17 + + + <_> + 5 + -1.6074185371398926e+00 + + <_> + + 0 -1 260 -286277120 174374 -487661056 -1058275700 1194804992 + 225095 -998772480 -202375169 + + -5.5654716491699219e-01 8.0171042680740356e-01 + <_> + + 0 -1 20 -342891006 -1033195986 1856252450 -1062802910 + 661726532 1179932483 -177793536 -134219817 + + -6.0683506727218628e-01 6.9047766923904419e-01 + <_> + + 0 -1 64 1358958608 -721415659 286261721 1603863003 + -619134817 -1123538802 420086683 991758991 + + -6.2987571954727173e-01 5.9246963262557983e-01 + <_> + + 0 -1 193 -1073512446 -777805822 -2139684581 -783301117 + -2105302838 -2139667934 1078190215 -803212537 + + -5.2881276607513428e-01 6.4907532930374146e-01 + <_> + + 0 -1 125 -105079848 419692680 268435456 386400776 956826300 + 268962496 402653388 -1069665 + + -5.8266061544418335e-01 5.6521910429000854e-01 + + <_> + 6 + -1.0134286880493164e+00 + + <_> + + 0 -1 94 268435472 285218064 464917949 360560017 -1631809362 + -1074249812 212339386 -1079443448 + + -4.5969772338867188e-01 7.2184652090072632e-01 + <_> + + 0 -1 264 -1055230 -2132094970 1522782208 -1865488446 + -160460288 426831 -239083008 -184549393 + + -5.5715596675872803e-01 5.5740809440612793e-01 + <_> + + 0 -1 89 -1073512446 -750262246 1612181323 -241712057 + -536370706 -87562613 -1073356338 -783818237 + + -4.9830266833305359e-01 5.8845627307891846e-01 + <_> + + 0 -1 40 75531512 -1080031088 -1924518403 -1660943824 + 68163832 -1649934168 201603577 251658408 + + -6.2323546409606934e-01 4.3935534358024597e-01 + <_> + + 0 -1 153 -1073495038 -212339694 272084497 -683317309 + -1070863634 -362310394 -1013976081 -1073233397 + + -4.9089384078979492e-01 5.5601859092712402e-01 + <_> + + 0 -1 187 -1072466 961592942 -592705488 287353834 2099253432 + 269753198 1573261038 -3146001 + + -4.4843783974647522e-01 5.5326616764068604e-01 + + <_> + 7 + -1.4775381088256836e+00 + + <_> + + 0 -1 90 268440029 2136817663 459096063 2147292127 496541439 + -6340609 465289215 462293642 + + -4.9297222495079041e-01 6.8286538124084473e-01 + <_> + + 0 -1 5 -428890622 1089466031 -1032976798 -1023422750 + 1114064710 1148187463 -134744065 -134219785 + + -4.8018595576286316e-01 5.6948053836822510e-01 + <_> + + 0 -1 121 469767184 487588084 289153021 521930004 -1433892612 + -1074227012 -1635771972 403179528 + + -7.1417349576950073e-01 3.9334431290626526e-01 + <_> + + 0 -1 185 -1073511934 -742133625 1093132935 -705716410 + -523770994 -521672861 -930616433 -790109557 + + -4.5168292522430420e-01 5.3130024671554565e-01 + <_> + + 0 -1 80 1358954512 -3073699 285214908 -35898484 -209417729 + -2616386 -1197962246 -1148441974 + + -5.5315750837326050e-01 4.3438988924026489e-01 + <_> + + 0 -1 256 -486543614 15463303 1271390210 -352321538 + -479201533 42978919 -135268606 -218628353 + + -4.9413478374481201e-01 4.6485596895217896e-01 + <_> + + 0 -1 102 285216249 486815568 -6799425 494394865 -1885305139 + -1651728472 -1633603955 -1080819456 + + -4.4841548800468445e-01 5.0453257560729980e-01 + + <_> + 9 + -1.5383964776992798e+00 + + <_> + + 0 -1 18 -353374678 1085269614 -292625886 -487658514 + 2001172311 1147598679 -680011913 -134217729 + + -3.9491996169090271e-01 6.2135654687881470e-01 + <_> + + 0 -1 249 3122690 37739375 -2070166735 -741345321 -749734397 + 1718866259 -472912958 -419430401 + + -5.0506174564361572e-01 4.6618077158927917e-01 + <_> + + 0 -1 123 1244 -1611582991 -550281217 -4384259 -1193231618 + -1080312899 -1631932417 -1431828440 + + -5.2341967821121216e-01 4.4499680399894714e-01 + <_> + + 0 -1 173 -1070406 998248624 224141340 993009672 931922364 + 471863736 1182795928 2145385471 + + -5.5938553810119629e-01 3.7860521674156189e-01 + <_> + + 0 -1 147 -1073512446 -705173933 1082185555 -182463589 + -408944641 -49182969 -189800481 -792205781 + + -4.2763561010360718e-01 4.8702400922775269e-01 + <_> + + 0 -1 104 -19522 1003492282 1532888968 461644738 2100304008 + 218375113 1604668604 2147482623 + + -4.9799257516860962e-01 3.6454525589942932e-01 + <_> + + 0 -1 44 285212672 -581614700 1359493625 -548332547 134266620 + -37709632 2043202253 -586138712 + + -5.6203496456146240e-01 3.4002208709716797e-01 + <_> + + 0 -1 128 1034951165 2105349244 -1309598211 -1120070435 + -31409729 -38756688 1588345855 1065883852 + + -5.2008801698684692e-01 3.3988323807716370e-01 + <_> + + 0 -1 200 -218110210 2000425110 558260 2006753352 1499734716 + 487590088 468989064 -3146289 + + -4.3743440508842468e-01 4.3907517194747925e-01 + + <_> + 9 + -1.4532921314239502e+00 + + <_> + + 0 -1 262 -1278 1124068607 -1494488320 -1056964673 -67111165 + 1115682655 -134224128 -134217729 + + -3.8763198256492615e-01 5.7781529426574707e-01 + <_> + + 0 -1 56 -1073225214 -742661509 1082291375 -143132909 + -1072969042 -1574413 -1058747766 -253237617 + + -3.7089401483535767e-01 5.3697389364242554e-01 + <_> + + 0 -1 140 268435632 858788752 523386879 -1208936463 + -1091764737 -4461123 704556735 -1141702479 + + -5.2869093418121338e-01 3.7775269150733948e-01 + <_> + + 0 -1 230 -603992354 1471449720 -1921775488 -712594264 + 1598590108 206591385 1292634312 -9217 + + -3.9741289615631104e-01 4.6708774566650391e-01 + <_> + + 0 -1 159 -1073496061 -246159373 -2126132421 -682133909 + -338430209 -54568013 -894697569 -1056710645 + + -3.4375002980232239e-01 5.2743333578109741e-01 + <_> + + 0 -1 96 -1071350 457060632 931268864 321430144 826485888 + 67247908 2102198728 2105540603 + + -4.9998486042022705e-01 3.3325645327568054e-01 + <_> + + 0 -1 49 80 -11992040 412270047 425795985 787613322 + -1085856977 -2004303873 710936064 + + -6.0664796829223633e-01 2.5685796141624451e-01 + <_> + + 0 -1 194 -1037574142 -204006398 829156199 -177753533 + 1112262023 -232373213 1115155935 1074249730 + + -5.0947064161300659e-01 3.2005622982978821e-01 + <_> + + 0 -1 79 269484248 -16708916 269484120 2013084168 8699580 + 522459800 -71812466 -70403128 + + -5.4420560598373413e-01 2.8768730163574219e-01 + + <_> + 11 + -1.3969734907150269e+00 + + <_> + + 0 -1 16 -269488594 -1527781586 -420581878 -420548914 + 1736406903 1199570807 -142608537 -134217729 + + -3.8963079452514648e-01 5.6084793806076050e-01 + <_> + + 0 -1 51 269811920 -1085195183 425006589 1060705723 + -663184132 -38933009 -1469268483 -2142977 + + -4.4839790463447571e-01 4.1743433475494385e-01 + <_> + + 0 -1 228 -1039162878 -753932542 -1518107646 -139466238 + -265297522 -1027372277 -420502646 1114620418 + + -5.1765841245651245e-01 3.3084028959274292e-01 + <_> + + 0 -1 253 -889196793 9369379 -407120128 -235405325 -67111162 + 1088929783 -490739968 -218104065 + + -3.7889918684959412e-01 4.3052202463150024e-01 + <_> + + 0 -1 190 -100665346 354197178 489693724 999564452 802745048 + 419956669 485268696 -2049 + + -4.2029377818107605e-01 3.9566606283187866e-01 + <_> + + 0 -1 100 -1073233918 -136333515 1096513373 -2639093 + -716180502 -1339822428 1365762947 1359476551 + + -4.5561933517456055e-01 3.3654430508613586e-01 + <_> + + 0 -1 87 296230396 -575143599 -1645471619 1073517564 + -1130554900 -1076347144 2124945068 -1079504776 + + -4.4698345661163330e-01 3.5266625881195068e-01 + <_> + + 0 -1 112 -1073512309 -612898185 -630869569 -114037589 + -622288129 -564411838 -336594433 -1056456565 + + -3.3337074518203735e-01 4.6491983532905579e-01 + <_> + + 0 -1 148 143134872 -2583556 -45872131 -611282540 -2001982580 + -3434534 604048076 -1094829557 + + -4.9170136451721191e-01 3.0917447805404663e-01 + <_> + + 0 -1 160 -1073233918 -201853499 2136473557 -1787301069 + -700452677 -818420694 -202390597 1073996290 + + -4.4051462411880493e-01 3.1225615739822388e-01 + <_> + + 0 -1 113 269490512 -2517667 522163703 -537454823 -1689747461 + -1074037346 -1997340673 -96204792 + + -4.6469467878341675e-01 2.9259225726127625e-01 + + <_> + 13 + -1.1383904218673706e+00 + + <_> + + 0 -1 23 -286265618 -286363926 -289093086 -420550110 + 2000123717 1886877559 2002089840 -134742185 + + -3.9212599396705627e-01 5.1098263263702393e-01 + <_> + + 0 -1 129 -1073504254 -264809 -184165057 -137364109 + -243010581 -17059405 -138940421 -782765113 + + -3.6656334996223450e-01 4.3630459904670715e-01 + <_> + + 0 -1 263 -254 -975177841 -287868416 -454562817 -68947194 + 7855995 -1574144 -167773185 + + -5.1354819536209106e-01 3.0799564719200134e-01 + <_> + + 0 -1 75 353377757 -36151880 -105319713 -13290732 -4419665 + -3626840 -542331973 -1148712960 + + -3.0346295237541199e-01 5.0388520956039429e-01 + <_> + + 0 -1 182 -67139074 997767672 671353020 1036812588 1541149116 + 210770921 156045544 2147483359 + + -4.9035164713859558e-01 2.9925996065139771e-01 + <_> + + 0 -1 82 -1073512445 -774385513 -699687041 -716968609 + -741868625 -83951421 -766260517 -1052261909 + + -3.2826542854309082e-01 4.3343764543533325e-01 + <_> + + 0 -1 158 494149052 1064834428 1072696313 1062998301 + 980434168 -1078457388 -1075036164 462430488 + + -6.2883645296096802e-01 1.9601677358150482e-01 + <_> + + 0 -1 7 -366007761 718007086 -957642206 -227808730 826762323 + 1149178927 2011674103 -150997001 + + -4.2092534899711609e-01 3.2627391815185547e-01 + <_> + + 0 -1 219 -1068507134 1404819342 -1292973354 -2081703262 + -1062212049 1521194594 1120134826 1081065738 + + -4.9449604749679565e-01 2.5739732384681702e-01 + <_> + + 0 -1 109 1002320056 -1141363980 247988368 496806910 + 2140155836 503368365 2143886332 -1029 + + -4.6534663438796997e-01 2.7641868591308594e-01 + <_> + + 0 -1 37 -1558044672 -272795331 -541372483 -138980931 + -69481992 -73401925 -892597096 -1473642496 + + -4.3698188662528992e-01 2.9382380843162537e-01 + <_> + + 0 -1 155 -290461950 -827336921 -1966168542 -744227044 + 1800381711 1112758063 818804610 -201861137 + + -3.7232404947280884e-01 3.4170129895210266e-01 + <_> + + 0 -1 54 285249680 1934966666 25433949 488973060 1478098938 + -1094677832 227065823 1599080840 + + -4.8338237404823303e-01 2.5156795978546143e-01 + + <_> + 15 + -1.4386829137802124e+00 + + <_> + + 0 -1 261 -268701949 242745343 -5243136 1660944351 -268435642 + 1115680639 -152043776 -134217729 + + -2.7799502015113831e-01 5.4982155561447144e-01 + <_> + + 0 -1 132 8593 990033664 -576621569 -1074318441 -1158758913 + -1074026283 -16908305 -1091291517 + + -4.0600129961967468e-01 3.6996468901634216e-01 + <_> + + 0 -1 25 -288428034 -71050 -1362440962 -554135814 1549553644 + -34515644 1676953849 -566273 + + -3.7318351864814758e-01 3.5906440019607544e-01 + <_> + + 0 -1 116 -84482 999865790 642392280 430453020 486019228 + 176175289 503058908 1608510447 + + -4.9817672371864319e-01 2.6974949240684509e-01 + <_> + + 0 -1 107 -1073495933 -69733121 -1018873637 -579344995 + -989072181 -883437510 -1072890405 -1056194293 + + -2.8550347685813904e-01 4.5101368427276611e-01 + <_> + + 0 -1 189 -806359506 1074709095 -486758912 1351286574 + -154475059 1076360787 -184699776 -771751937 + + -4.4456201791763306e-01 2.7919811010360718e-01 + <_> + + 0 -1 169 -1070874622 1933267362 -196106221 -251150048 + -500175889 -357637246 -1011890229 1074511882 + + -4.5736011862754822e-01 2.6500344276428223e-01 + <_> + + 0 -1 6 -276828369 -1024987189 -286285073 -159518738 + 1602053975 1442273271 -565281 -1 + + -3.1965401768684387e-01 4.1932246088981628e-01 + <_> + + 0 -1 111 486544828 -537059988 -1751312897 -1613226148 + -658465284 -543379988 -1093091841 1067977880 + + -4.8029872775077820e-01 2.6561823487281799e-01 + <_> + + 0 -1 161 -1945631744 -5296883 -1268883969 -14726113 + -1174757464 -1074007512 -1667299075 -1474158576 + + -4.5131915807723999e-01 2.6787233352661133e-01 + <_> + + 0 -1 217 -1062748021 -241972242 1358675959 -137365053 + 1614802383 -85199626 -521677122 -774905909 + + -2.8362974524497986e-01 4.3354424834251404e-01 + <_> + + 0 -1 240 -306184416 270597662 -610796288 283958071 -1183996 + 739027842 -50988400 -50855945 + + -4.0036740899085999e-01 2.9442140460014343e-01 + <_> + + 0 -1 95 -554255472 1603836918 -1621489008 296493866 + 1348278524 419714073 1699230668 2147280872 + + -5.4947453737258911e-01 2.0912265777587891e-01 + <_> + + 0 -1 206 -86788422 2131273658 776208432 -576513782 458753272 + 17302057 236982460 1610345454 + + -4.1417434811592102e-01 2.6627203822135925e-01 + <_> + + 0 -1 225 -1998419393 1970208692 -416092289 -1078486094 + -293746689 -1073807393 -1091252289 -1432214942 + + -3.0541145801544189e-01 3.6917164921760559e-01 + + <_> + 16 + -1.0340467691421509e+00 + + <_> + + 0 -1 21 -286527834 -1068831058 -294761950 -898699542 + 2004313959 1098346311 -147095568 -134742025 + + -2.8367474675178528e-01 4.9616107344627380e-01 + <_> + + 0 -1 70 1346441429 -8700675 2031427039 932524345 -129231619 + -57857 -899441153 -513 + + -3.2046657800674438e-01 4.4359135627746582e-01 + <_> + + 0 -1 245 -2137791829 -201854321 -1042423873 -671089185 + -824181265 -67108929 -1056968721 -1065106517 + + -2.7950826287269592e-01 4.4218274950981140e-01 + <_> + + 0 -1 157 -77602820 2138585950 514852884 1066941396 838622680 + 945058236 866392280 -4129 + + -3.8313990831375122e-01 3.1780952215194702e-01 + <_> + + 0 -1 243 -4721096 1023467420 -134291660 1033761695 -4210772 + 221878372 -50725504 -1087510340 + + -3.9204674959182739e-01 2.7886122465133667e-01 + <_> + + 0 -1 167 402655256 -59502095 1016903901 968722453 413964974 + -1147520884 -1157853505 -1375203816 + + -3.9511302113533020e-01 2.7908802032470703e-01 + <_> + + 0 -1 259 -842019321 29087711 -1197759456 -1024271642 + -84434170 10396867 -205391616 -505413633 + + -4.4214919209480286e-01 2.4015739560127258e-01 + <_> + + 0 -1 83 -1072970229 -704650065 -986451969 -671629065 + -491795794 -83894506 -152305989 -1044123057 + + -2.5662669539451599e-01 4.2095991969108582e-01 + <_> + + 0 -1 213 -289488478 -785848987 1080164352 -752132086 + 1648030656 4932041 1125613966 1462761471 + + -4.2129451036453247e-01 2.5393015146255493e-01 + <_> + + 0 -1 141 -2111831408 1058027000 -1412416713 -1112244144 + -1196438369 -1075139649 413677738 -1421518927 + + -4.3579095602035522e-01 2.4805732071399689e-01 + <_> + + 0 -1 117 974826424 2140991454 -1551889736 2106757052 + 974174716 525151932 2132131800 -2229265 + + -4.3843334913253784e-01 2.4296501278877258e-01 + <_> + + 0 -1 48 -1073232885 -143007068 -773324933 -169909025 + -276826117 -4609 -1055470354 -1073487358 + + -2.8845074772834778e-01 3.7775728106498718e-01 + <_> + + 0 -1 130 4194384 -11062023 -1646789123 -10208559 696171518 + -4603727 461304799 -1971060584 + + -4.4695761799812317e-01 2.4860441684722900e-01 + <_> + + 0 -1 110 -8667656 523941428 96732444 1026570044 986888700 + 402658556 1262748664 -278561 + + -3.7495428323745728e-01 2.7029833197593689e-01 + <_> + + 0 -1 174 -13638750 1864560619 -1370314720 1999282058 + -817131236 4473885 -134896400 -713556481 + + -3.6440634727478027e-01 2.9757344722747803e-01 + <_> + + 0 -1 233 -2036986093 -1051337 -575185507 -269560521 + -1210388481 -33638407 -1460748289 -1348220030 + + -2.4903561174869537e-01 4.1136464476585388e-01 + + <_> + 17 + -1.0704072713851929e+00 + + <_> + + 0 -1 266 -254 -2135949377 -805569536 -1871315074 -8390908 + 411041775 -294650624 -521142273 + + -2.3864482343196869e-01 5.1211661100387573e-01 + <_> + + 0 -1 10 -298850769 720366571 -890837393 -83888594 1601664891 + 1162342359 -403439649 -134217737 + + -3.2492494583129883e-01 3.9914098381996155e-01 + <_> + + 0 -1 45 1426084316 -552595000 289756637 -10649621 -649527380 + -1744813944 -879801361 -70522229 + + -3.6111223697662354e-01 3.4889730811119080e-01 + <_> + + 0 -1 152 -805060605 -673851745 -214641903 -204344129 + -355468849 -109330249 -336593441 -754728693 + + -2.7390027046203613e-01 4.0517389774322510e-01 + <_> + + 0 -1 197 -553218 2080025566 15600272 1067365024 406823868 + 502294020 1964967166 2144335806 + + -4.1399970650672913e-01 2.4464462697505951e-01 + <_> + + 0 -1 85 -538984454 492342896 799550936 423145104 1541193180 + 420504824 1828503544 -1050625 + + -3.0913692712783813e-01 3.3819082379341125e-01 + <_> + + 0 -1 255 201271047 17141657 -371197159 -1326777353 + 1944023302 649588447 -1229011072 -520880129 + + -3.9375796914100647e-01 2.4731478095054626e-01 + <_> + + 0 -1 205 -23878 -145515102 731382156 2144016106 1607833771 + 1056969892 1185290222 1602224127 + + -3.6536556482315063e-01 2.7690681815147400e-01 + <_> + + 0 -1 38 -65269776 1071392190 -275117764 -1081071592 + 2146766812 -1107681807 2139883704 -1086447804 + + -3.7846565246582031e-01 2.7309983968734741e-01 + <_> + + 0 -1 93 1543509013 -1340423 1028472191 -1081510144 887624920 + -35095665 -2135409219 148906016 + + -4.1629123687744141e-01 2.4189476668834686e-01 + <_> + + 0 -1 229 -269752574 -477904061 1248223232 1988291330 + 836748036 18970387 -415567680 -772802817 + + -4.1729050874710083e-01 2.2995656728744507e-01 + <_> + + 0 -1 57 805765258 825992962 539756060 -786587074 1086266510 + 936117914 1994991852 938313640 + + -5.1461368799209595e-01 1.7466257512569427e-01 + <_> + + 0 -1 19 -1364201690 -991697714 -433131806 -923877650 + 662140228 1685545751 1934037844 1702328183 + + -6.7833232879638672e-01 1.4472034573554993e-01 + <_> + + 0 -1 126 -596878983 -8574020 890080733 2144151295 1294489804 + -1104539940 -1880318229 -1366815844 + + -2.9432180523872375e-01 3.2720017433166504e-01 + <_> + + 0 -1 177 -794106197 -616564426 -464594145 -671358534 + 2049886875 -285491337 1346093803 1074254850 + + -3.2180884480476379e-01 2.9128241539001465e-01 + <_> + + 0 -1 143 268444179 1060451826 231817213 1896813565 825999358 + 234786998 -1194542085 -1137764542 + + -3.7007480859756470e-01 2.5912946462631226e-01 + <_> + + 0 -1 252 -553648881 46136703 -838963448 1358618355 + -159383801 1442840309 -428343678 -788529157 + + -2.8239414095878601e-01 3.4309053421020508e-01 + + <_> + 19 + -1.2764363288879395e+00 + + <_> + + 0 -1 9 -298848529 -353370417 -1368723733 -487657882 + 1731417983 1466398519 2146924503 -136316937 + + -1.3626074790954590e-01 5.3867846727371216e-01 + <_> + + 0 -1 124 -1207913485 -552553001 766677247 -1145867265 + -278529 -4862721 1072304059 -1410613313 + + -2.8374841809272766e-01 4.2133846879005432e-01 + <_> + + 0 -1 55 -1073692672 -1314401 -1811288065 -684984521 + -800407349 -88435541 -2147439990 -615789361 + + -3.6561635136604309e-01 3.0520385503768921e-01 + <_> + + 0 -1 247 -2132826321 -214438017 -201326793 -389 -51400849 + -69653 -1527911430 -1056967185 + + -2.9651319980621338e-01 3.6694592237472534e-01 + <_> + + 0 -1 35 4194512 -2638928 -2044722799 2139958178 596410875 + -1074918424 1466248191 -537957654 + + -3.9065396785736084e-01 2.6272973418235779e-01 + <_> + + 0 -1 166 -71845966 2073723792 497158160 2143945512 + 1041642428 403710357 872230872 1607980799 + + -3.8319590687751770e-01 2.6842683553695679e-01 + <_> + + 0 -1 268 -2097157 -1087391056 -5251176 -1148338189 -262727 + -1969291265 -168429408 -47188481 + + -2.3368743062019348e-01 4.6013623476028442e-01 + <_> + + 0 -1 223 -67653378 859369722 -1712813960 -1827098028 + -1818690562 405849580 1524404938 -536872737 + + -2.6423501968383789e-01 3.5824209451675415e-01 + <_> + + 0 -1 92 -750550494 1932244802 1426271509 -136875033 + -526392657 -72620446 -813185125 1380447810 + + -3.5788068175315857e-01 2.5566586852073669e-01 + <_> + + 0 -1 22 -294919089 1122946018 -1434007938 -28119070 + 1400077876 1781744245 -12065055 -526377 + + -3.2082986831665039e-01 2.7075409889221191e-01 + <_> + + 0 -1 127 355473876 533732892 -1082376741 1073220956 + 966269432 456665256 974404281 1033897352 + + -5.8279770612716675e-01 1.6808734834194183e-01 + <_> + + 0 -1 186 1108320930 1913312195 1956727103 1405871873 + 640671914 -1700015324 -359675449 1124845386 + + -4.3383055925369263e-01 1.9900636374950409e-01 + <_> + + 0 -1 42 1152581648 -551588004 -811938313 -13125865 + -369139204 -22061077 -1461089093 -935721983 + + -3.0062291026115417e-01 2.9034814238548279e-01 + <_> + + 0 -1 199 -269489370 1932518286 -362551552 -246745498 + 1744783768 1124222739 -408492416 -772276529 + + -3.5581216216087341e-01 2.4337428808212280e-01 + <_> + + 0 -1 115 -671055358 -11312698 2145976308 -742141112 + -141826933 -1094435776 -1614350450 1090764867 + + -4.2795911431312561e-01 2.3045140504837036e-01 + <_> + + 0 -1 210 -1448411117 1945829181 -1285333769 -5000414 + 1199458509 -71870659 249890952 -4243337 + + -2.8348302841186523e-01 3.1098461151123047e-01 + <_> + + 0 -1 179 -903454720 -744425358 -1023026384 -745872950 + -1276125254 40537699 313451211 1342948107 + + -4.2663165926933289e-01 2.0645493268966675e-01 + <_> + + 0 -1 50 1359284444 -585531077 429466362 1901934459 + -371400450 -166606184 1484769755 1226030794 + + -3.3885788917541504e-01 2.5499990582466125e-01 + <_> + + 0 -1 59 1483004925 -1090388084 -1464555305 297539532 + -8906500 -5079587 583675598 170689042 + + -2.8159880638122559e-01 3.0345180630683899e-01 + + <_> + 22 + -1.3054379224777222e+00 + + <_> + + 0 -1 265 -254 -2145583105 -1938034944 -2130840321 -553655040 + 2031487 -136905472 -452984833 + + -2.7614569664001465e-01 4.5691058039665222e-01 + <_> + + 0 -1 28 -12545 -67190790 -889264898 -18821378 -598319912 + -545824932 -543942692 -539304449 + + -2.3074461519718170e-01 4.5855847001075745e-01 + <_> + + 0 -1 114 -1073708414 -3312390 -581578753 -585237253 + -538847237 -7671817 -615792689 -582618181 + + -3.7242972850799561e-01 2.6750817894935608e-01 + <_> + + 0 -1 0 -435425501 -805313558 2030041983 2104849954 + 1734342395 -268435729 1669330943 -280496809 + + -2.2564554214477539e-01 4.1358834505081177e-01 + <_> + + 0 -1 184 141330492 -581105012 2232 -6488023 -1933800258 + -1439956440 -1431525122 -14832066 + + -4.0444701910018921e-01 2.0259374380111694e-01 + <_> + + 0 -1 154 -502300158 -142650766 -425559141 -772543129 + -521426209 -1930702029 -353902641 1080279618 + + -3.9792767167091370e-01 2.1542146801948547e-01 + <_> + + 0 -1 74 1498741759 -540935422 -147991877 -2245855 + -1643344209 -74675288 -604002065 -75030520 + + -2.0798775553703308e-01 4.1534551978111267e-01 + <_> + + 0 -1 14 779037479 678413167 -1360990494 -926427546 + 2136434543 394229691 1937503671 -135269513 + + -3.8600119948387146e-01 2.1943412721157074e-01 + <_> + + 0 -1 78 2067726474 -136991756 755436448 -2516098 365527994 + 1000094552 1529674638 -4198449 + + -3.3906060457229614e-01 2.4326251447200775e-01 + <_> + + 0 -1 208 -94704418 -577880596 1012403216 502857864 + -1450010402 134218160 73403384 2070935801 + + -3.6030718684196472e-01 2.2849518060684204e-01 + <_> + + 0 -1 41 20 -1476983145 -570726433 -700837 532647935 + -1076147219 -3302914 751304704 + + -5.0285857915878296e-01 1.7315587401390076e-01 + <_> + + 0 -1 250 -327160061 550493039 1837889286 5198839 -442765562 + 61852909 -1533416158 -1061163713 + + -3.2188731431961060e-01 2.5676867365837097e-01 + <_> + + 0 -1 236 237827 -1625566337 -684738721 -708838809 + -1031870705 -79761285 -75497793 -1001930198 + + -3.2259994745254517e-01 2.6575720310211182e-01 + <_> + + 0 -1 67 -872413360 352326992 527438201 1058613553 1249525754 + -1090901768 -1192209672 -1884680476 + + -3.9298188686370850e-01 2.1306723356246948e-01 + <_> + + 0 -1 212 -8737144 2074281186 7026092 1372771984 -361188420 + 680686614 88896761 1405867375 + + -3.8286519050598145e-01 2.1039620041847229e-01 + <_> + + 0 -1 221 -1162939742 1386357926 1317941504 1938564578 + -579168328 685403501 1526351822 1404036351 + + -3.7337547540664673e-01 2.3099578917026520e-01 + <_> + + 0 -1 101 285348049 -11430284 968767967 -1078062983 407110908 + -12830052 706951641 -19647952 + + -3.6690136790275574e-01 2.2291134297847748e-01 + <_> + + 0 -1 63 -2065527166 -5011633 -151545441 1033233464 + -1901425192 -67122241 -1150550790 -359407070 + + -2.6886180043220520e-01 3.1598880887031555e-01 + <_> + + 0 -1 239 -272630014 7263167 -675318270 2086844 -381944064 + 9104875 -41757440 1357905831 + + -6.4544874429702759e-01 1.3946346938610077e-01 + <_> + + 0 -1 99 -804290429 -543997893 -105636419 -683035777 + -878802513 -312840040 -1051884901 -250101621 + + -2.4588571488857269e-01 3.4430846571922302e-01 + <_> + + 0 -1 8 -339546369 -1412792581 1615777023 -54629182 + 1226143607 1921996013 1440111615 2113370743 + + -3.0302020907402039e-01 2.6522767543792725e-01 + <_> + + 0 -1 165 -1907792 995242656 222434520 1024884896 -425286920 + 188359786 1260570527 2135949294 + + -3.5448068380355835e-01 2.3688268661499023e-01 + + <_> + 20 + -1.1824889183044434e+00 + + <_> + + 0 -1 235 16 -1141556511 223442943 -1178299563 -2120171521 + -70275846 -1130849281 0 + + -4.3084502220153809e-01 4.0112102031707764e-01 + <_> + + 0 -1 3 -290459857 1691339118 -833917338 -320446462 + 1646752359 1853571447 1936424807 -135793289 + + -3.6515438556671143e-01 2.9652595520019531e-01 + <_> + + 0 -1 216 -1059553040 -753596268 805306416 -572717025 + -1999863638 -1162302592 -1362318401 -102765569 + + -3.0720838904380798e-01 3.1679639220237732e-01 + <_> + + 0 -1 251 -1946165489 390070111 -1179279847 -1612709889 + -21667325 737673215 -1573417332 -1073741893 + + -2.7648302912712097e-01 3.4295567870140076e-01 + <_> + + 0 -1 202 -1022368734 -586554954 -848870069 -70032832 + 1258989227 -1075904854 1095746255 1091551490 + + -3.7661415338516235e-01 2.3859095573425293e-01 + <_> + + 0 -1 58 -669035267 -2146853 428561887 -1681980139 -931332868 + -67110465 1078586367 -617873729 + + -2.4220712482929230e-01 3.9469438791275024e-01 + <_> + + 0 -1 172 -269568840 2074779832 2143224388 2146841138 + -1411342152 710153642 375502988 2135947215 + + -3.8428553938865662e-01 2.2938421368598938e-01 + <_> + + 0 -1 27 -352335105 -924422186 -321853204 1083754446 + 1346657621 1359424271 -78481065 -211296393 + + -3.3762323856353760e-01 2.4234491586685181e-01 + <_> + + 0 -1 66 -74730830 -1719892262 -1925244624 925677442 + 440769672 422641780 743449532 2146957287 + + -3.4075874090194702e-01 2.3807466030120850e-01 + <_> + + 0 -1 176 1601190364 331089657 352984893 1004016536 + -1097580804 -1078437672 -1196287489 -1099430164 + + -3.7614050507545471e-01 2.2108320891857147e-01 + <_> + + 0 -1 211 -1022639734 -610610142 -846554339 -1683757005 + -1706381105 -89921561 -1070089217 1395312138 + + -3.3527806401252747e-01 2.3671005666255951e-01 + <_> + + 0 -1 122 196611 -1152142945 -1621293031 2039173647 + -1412433217 -360952176 -1019001861 -1056735205 + + -3.7603583931922913e-01 2.1857734024524689e-01 + <_> + + 0 -1 238 -268458234 13536831 -86770910 12106874 1777826563 + 5182807 -536873214 31457275 + + -6.7599576711654663e-01 1.2590792775154114e-01 + <_> + + 0 -1 13 335489835 -2643656 199426574 -1084804598 988528383 + 1503145984 1087005402 4501192 + + -3.8562673330307007e-01 1.8832445144653320e-01 + <_> + + 0 -1 60 -552616270 2006492848 -1491548008 831274626 + 2103542712 408176996 266439336 1594227130 + + -3.6538988351821899e-01 2.1386267244815826e-01 + <_> + + 0 -1 232 -1616214020 381206526 -1380008483 -1149718988 + -117949220 -1109642243 -1431620166 -1395922789 + + -2.4237436056137085e-01 3.1383481621742249e-01 + <_> + + 0 -1 108 -995385310 -251140753 1313566227 -642384614 + -1416911446 -383105408 1936676078 1131406090 + + -3.3444473147392273e-01 2.3265764117240906e-01 + <_> + + 0 -1 150 -148142336 -1969716433 1196531029 -1744832112 + -2029179607 -2011647352 -1438180599 -318770533 + + -3.2824718952178955e-01 2.3133316636085510e-01 + <_> + + 0 -1 136 -643080969 1461129532 834687225 901055537 448793752 + -1704373864 412357071 725441173 + + -2.9123142361640930e-01 2.6894247531890869e-01 + <_> + + 0 -1 1 -416832992 -13127980 -303303043 -9341920 -402666209 + -4194305 -302059521 -949000704 + + -2.5401115417480469e-01 3.0308523774147034e-01 + + <_> + 24 + -1.1056766510009766e+00 + + <_> + + 0 -1 257 -932252672 69009174 -274731216 -1246036485 + 1467479344 341049303 -176687136 -50331649 + + -2.0472958683967590e-01 4.4878211617469788e-01 + <_> + + 0 -1 151 32819 1058478609 356204543 -1078257961 526777855 + -1682103621 1073725435 -1144048133 + + -3.3589541912078857e-01 2.8405088186264038e-01 + <_> + + 0 -1 29 -78082 -77826 -269291522 -40235266 1260129788 + -763028 -538161153 -805679106 + + -2.7084660530090332e-01 3.1221374869346619e-01 + <_> + + 0 -1 192 -788275069 -70040829 -705953801 -586702026 + -745545985 -74747888 -933764645 -263989757 + + -2.2504505515098572e-01 3.5947087407112122e-01 + <_> + + 0 -1 73 -120123236 2132770214 -35818179 1908110615 + -121884484 -1414604912 818846378 137098400 + + -3.5432848334312439e-01 2.0587421953678131e-01 + <_> + + 0 -1 15 -433951198 -819277842 -290550674 -1495268700 + 1734361719 2117276675 669475411 1979151479 + + -5.8497852087020874e-01 1.4614424109458923e-01 + <_> + + 0 -1 98 -211311702 -156525938 -1508441816 1002025790 + -1747079220 -1971316467 902235131 -45400665 + + -3.0112090706825256e-01 2.6494047045707703e-01 + <_> + + 0 -1 175 -4540164 2066654612 223217726 1023881400 -335898184 + 168564521 54796540 2140929499 + + -3.9817783236503601e-01 1.8089868128299713e-01 + <_> + + 0 -1 43 270254167 939505587 -472385025 -167779321 603961850 + 2138655772 -1806172161 1095753738 + + -2.7771857380867004e-01 2.6211205124855042e-01 + <_> + + 0 -1 131 188 890515783 -1928298757 1032347002 946387198 + -44553749 -1148281121 201859080 + + -5.2568686008453369e-01 1.4650578796863556e-01 + <_> + + 0 -1 254 -603984625 180320127 -637804776 -1802184225 + -118623484 78303441 -223629692 -1060380693 + + -2.9106634855270386e-01 2.5167012214660645e-01 + <_> + + 0 -1 198 -420486590 1916956719 -2075873214 -1293260342 + 1409777995 1074266893 -2103578117 1427624199 + + -4.6088227629661560e-01 1.4865124225616455e-01 + <_> + + 0 -1 71 1560287376 1501872576 93330197 -149922831 -6426675 + 1497631401 1236609707 1028467595 + + -4.3222665786743164e-01 1.5400531888008118e-01 + <_> + + 0 -1 204 -427301504 -204573308 -278003456 1368326670 + -1675434308 38732356 37807304 1369431486 + + -3.7656742334365845e-01 1.8921722471714020e-01 + <_> + + 0 -1 120 899160056 965489400 861681915 536155580 597171592 + 505688760 945037276 799547400 + + -5.5298405885696411e-01 1.3539013266563416e-01 + <_> + + 0 -1 26 -294654417 -357580018 -456331548 -121186622 + 1626432311 1978081807 -500149913 -489160841 + + -3.3190330862998962e-01 2.2509172558784485e-01 + <_> + + 0 -1 76 -72703744 993173512 -1413994056 434274880 2065667486 + 169890832 15967450 2070403071 + + -3.6797395348548889e-01 1.9423931837081909e-01 + <_> + + 0 -1 156 1811669538 1083351686 -1835457886 268618330 + 2111253504 121815302 -941760343 1934852079 + + -5.0998413562774658e-01 1.3428133726119995e-01 + <_> + + 0 -1 164 -133250046 -736681242 178479257 -772903362 + -64228357 -1360092638 1128132254 1078673546 + + -3.5058033466339111e-01 2.0806281268596649e-01 + <_> + + 0 -1 242 -1983656160 537984560 -576718280 -255984996 -801968 + 749519076 2056507520 4185519 + + -4.2675125598907471e-01 1.6700066626071930e-01 + <_> + + 0 -1 62 -919302320 -82812016 1049935357 -1143920043 + -1613181556 -1386341991 264245176 -1956298560 + + -3.1545698642730713e-01 2.4012765288352966e-01 + <_> + + 0 -1 86 -297796297 1563704656 -1347412235 2108997601 + -2007646019 -1398784592 804001469 1878972927 + + -2.1169832348823547e-01 3.2915911078453064e-01 + <_> + + 0 -1 188 -1956730190 2139632728 797444224 535265612 + 718943472 179072316 1177307790 1497229291 + + -3.9158722758293152e-01 1.7950470745563507e-01 + <_> + + 0 -1 12 -1423824222 -347933442 -473527329 -367885210 + 1951885175 2080068088 -23110657 2004083703 + + -4.2160919308662415e-01 1.6656816005706787e-01 + + <_> + 25 + -1.0476776361465454e+00 + + <_> + + 0 -1 248 -931197947 2139053339 -29360641 -134217729 + -50673106 -1048609 -2136277334 -1459880677 + + -2.0601851865649223e-02 5.8408087491989136e-01 + <_> + + 0 -1 241 -8390896 872469788 -75498736 1010106133 -93323368 + -1937197636 -67117652 -1136721921 + + -3.3375686407089233e-01 2.8437638282775879e-01 + <_> + + 0 -1 144 402661681 -8388673 2100678583 -2238601 602925055 + -13914198 1068230655 -98610345 + + -2.8332126140594482e-01 3.0587852001190186e-01 + <_> + + 0 -1 65 1359009236 -1114605582 -1214450753 2063676794 + 1549031932 -5408068 2023930863 1051026088 + + -3.4133437275886536e-01 2.3669779300689697e-01 + <_> + + 0 -1 6 -299372689 -1505047345 -292656826 -957421105 + 1718830967 1097560413 2140605295 -135790637 + + -3.7768480181694031e-01 1.7987045645713806e-01 + <_> + + 0 -1 97 -1073154 1004322294 -1147662916 -10115876 1834274296 + 759698865 1273497048 -1048630 + + -2.6975196599960327e-01 2.8011119365692139e-01 + <_> + + 0 -1 81 -335546486 -150033533 105915952 -138218202 + -666660472 -2143208063 -243365219 -581436677 + + -2.9663780331611633e-01 2.5062835216522217e-01 + <_> + + 0 -1 227 -1073233917 -267476830 -2122911785 -177815006 + -800076401 -352392257 -2065963301 -793255169 + + -2.5752902030944824e-01 2.9005941748619080e-01 + <_> + + 0 -1 178 387383978 1968913403 1067585192 -12769396 962213582 + 1601127733 -1278178594 1024198792 + + -4.5044946670532227e-01 1.7661906778812408e-01 + <_> + + 0 -1 36 16786801 -1644201986 -653400577 -4230181 -1460667943 + -74949445 -1349652517 -1918893952 + + -3.2200109958648682e-01 2.2200360894203186e-01 + <_> + + 0 -1 201 -873492986 1332382499 -287153536 1365960970 + 1570751688 86400343 294895824 389283743 + + -4.3344420194625854e-01 1.6486145555973053e-01 + <_> + + 0 -1 39 -550462977 497814994 165283325 939408050 272107772 + -1661714196 1559500029 1557690863 + + -3.0110406875610352e-01 2.3946200311183929e-01 + <_> + + 0 -1 24 -320674066 -353966197 -354228484 -621876062 + 1547785717 1505060372 1978947829 2002219895 + + -4.4369262456893921e-01 1.7294771969318390e-01 + <_> + + 0 -1 162 -360529920 -79617826 848794457 331310642 + -1987053061 -1666055573 -1209271298 1074513418 + + -3.7377515435218811e-01 1.9515429437160492e-01 + <_> + + 0 -1 33 -521936894 1718228966 -1030226758 -28903354 + 1207396130 656656962 1940608999 2012739543 + + -4.9193805456161499e-01 1.2772387266159058e-01 + <_> + + 0 -1 31 -237788756 -36891774 756162060 -3341429 -216220931 + 290458792 -460804133 2068699022 + + -2.8526151180267334e-01 2.4898144602775574e-01 + <_> + + 0 -1 137 -851507192 -49414322 390020095 1973369886 + -337723713 -1048769 -1940650054 -927994838 + + -2.5763612985610962e-01 2.7653712034225464e-01 + <_> + + 0 -1 135 1372360956 862725368 730609136 -1553429230 + 819508732 453807332 1829633021 1568536543 + + -4.5178580284118652e-01 1.5893152356147766e-01 + <_> + + 0 -1 145 -1274805488 -9927920 -1376462213 -1078424186 + 603396895 -1090832097 107616655 440664192 + + -4.1856658458709717e-01 1.5220971405506134e-01 + <_> + + 0 -1 231 -288652797 1608697646 1224139776 1396858638 + 1558660860 27394093 -438065980 -714604577 + + -2.8446722030639648e-01 2.5237077474594116e-01 + <_> + + 0 -1 226 -1951680709 1048748839 934756149 -1214142800 + 854407598 -1073775393 747499512 -1427114237 + + -2.1165955066680908e-01 3.3453106880187988e-01 + <_> + + 0 -1 106 890514736 521148756 -5461060 -15927272 625774572 + 252750161 -891770388 985401424 + + -4.9193653464317322e-01 1.3465493917465210e-01 + <_> + + 0 -1 220 -291781117 1931978283 -1006772142 1937440367 + 1660932014 1140286983 -532876302 -105978118 + + -2.1797108650207520e-01 3.2472217082977295e-01 + <_> + + 0 -1 237 142568448 5694285 267957505 432006067 -5019387 + 82008315 -50595072 553515895 + + -5.4030531644821167e-01 1.3703715801239014e-01 + <_> + + 0 -1 103 -499261184 -361790357 131140111 -303573517 + 1180757915 -1205085265 1326942120 1365504522 + + -3.4566181898117065e-01 1.9119048118591309e-01 + + <_> + 27 + -1.0864274501800537e+00 + + <_> + + 0 -1 11 -891007484 1211035262 -823210124 -654381318 + 1564990964 1683447679 -8960692 -50331681 + + -1.7767603695392609e-01 4.3950533866882324e-01 + <_> + + 0 -1 53 1494504925 -545673287 -609913089 -15682660 + -1202970706 -6512216 -540169493 -1152645112 + + -2.3206019401550293e-01 3.5371619462966919e-01 + <_> + + 0 -1 258 -889194746 175616267 -277357050 317915103 + 2124145408 1123013115 -85207488 -520355841 + + -4.2506697773933411e-01 1.9782558083534241e-01 + <_> + + 0 -1 146 -1 -21002 -1282140165 -560551 -1429426772 + -1363539800 737717486 -17697 + + -1.6592836380004883e-01 4.8377290368080139e-01 + <_> + + 0 -1 218 -1023770102 -134512145 -539363397 -203424453 + 1272623102 -271847642 -1595890998 -1595743638 + + -2.7133983373641968e-01 2.7267450094223022e-01 + <_> + + 0 -1 88 -805076990 -149425455 -985448645 -712822435 + -765819210 -620768021 -1832196982 -754716533 + + -2.9903864860534668e-01 2.4232909083366394e-01 + <_> + + 0 -1 46 -1074249731 1063010200 886120183 1054646218 + -1074188360 -8614708 496775097 -1073988100 + + -3.1212934851646423e-01 2.2097712755203247e-01 + <_> + + 0 -1 214 -68779992 -205123576 536228408 2106794930 782941342 + 442508840 123864506 1608515547 + + -3.5215419530868530e-01 1.9548596441745758e-01 + <_> + + 0 -1 138 134414867 -82756098 907087317 -12699939 1052716991 + -1081669588 797642751 -362887177 + + -3.0123272538185120e-01 2.3132325708866119e-01 + <_> + + 0 -1 72 1480642776 1997667273 282210484 -607120144 -86663538 + 491273210 -1258550900 1994914794 + + -2.9138937592506409e-01 2.3277030885219574e-01 + <_> + + 0 -1 139 -2136960272 -1712184942 1342143477 -1242228367 + -1669857285 -1157984263 -1970783861 720044086 + + -3.4432685375213623e-01 1.9603538513183594e-01 + <_> + + 0 -1 6 -273682938 1617226187 -318870010 -892410812 + 1448570470 1380122631 -480551051 -169347209 + + -3.5725796222686768e-01 1.9195778667926788e-01 + <_> + + 0 -1 181 -285563872 1938338084 -284622176 1369605388 + 788149694 685363 1733297344 1371537119 + + -4.4718763232231140e-01 1.3961075246334076e-01 + <_> + + 0 -1 171 -277887485 -500718545 1321160726 -207444821 + -1956666417 1114068100 1408541940 -215746625 + + -2.5066006183624268e-01 2.7519401907920837e-01 + <_> + + 0 -1 195 1935143315 993445570 610010493 -150654117 + 2122195213 258214406 1195727869 1598549829 + + -2.5814446806907654e-01 2.5379449129104614e-01 + <_> + + 0 -1 191 473206268 465341840 275257821 499657168 1043082232 + -1078087986 -638054916 1051468524 + + -4.7531163692474365e-01 1.4217083156108856e-01 + <_> + + 0 -1 118 -474312942 -216353000 672931579 965216924 + -1694308964 679631248 65288426 1072693195 + + -3.4220626950263977e-01 1.9385008513927460e-01 + <_> + + 0 -1 222 -281285118 1670008163 -496738816 1408028942 + -1077961972 12189815 -1226841458 -773849649 + + -3.1611573696136475e-01 2.1220512688159943e-01 + <_> + + 0 -1 47 67109888 -1141813928 -229012613 -5148635 761734654 + -1076389365 -1933831800 142606340 + + -5.6943005323410034e-01 1.2012590467929840e-01 + <_> + + 0 -1 84 -1431396224 -1725172082 1078388256 -1850738226 + 730587530 169925378 -811871287 1099953835 + + -3.8054189085960388e-01 1.7058716714382172e-01 + <_> + + 0 -1 77 260768394 495072811 233439232 28973086 575602872 + 181406662 445404133 1334704062 + + -4.8239827156066895e-01 1.3680285215377808e-01 + <_> + + 0 -1 209 -1066220015 -4474061 2076076799 -8947757 1888966619 + -1 1786727151 -356580861 + + -1.9837911427021027e-01 3.4651774168014526e-01 + <_> + + 0 -1 266 -1087373425 -2131526698 -27274240 678559092 + -1239681243 21160657 -198446336 -521666585 + + -3.1992667913436890e-01 2.1379309892654419e-01 + <_> + + 0 -1 183 1411949790 1533029780 537141276 -645595131 + -2015977302 -70766372 80521851 1862591198 + + -3.4819486737251282e-01 1.9132232666015625e-01 + <_> + + 0 -1 163 159409168 453523316 268185503 939303412 754542844 + -1094811257 783024670 460076576 + + -4.6279802918434143e-01 1.3720697164535522e-01 + <_> + + 0 -1 17 -270012637 -422582426 -859576340 -290994558 + 1611619109 1984156183 1973384935 -671910025 + + -3.7753671407699585e-01 1.7108070850372314e-01 + <_> + + 0 -1 61 1390453016 -148850831 -1946933193 487664274 + 1167036398 -1356085046 -918287665 -1085865773 + + -2.5055482983589172e-01 2.6808515191078186e-01 + + <_> + 28 + -1.1071751117706299e+00 + + <_> + + 0 -1 234 -352328126 553381479 -520359742 49741823 -402656305 + 15201071 -404752917 16777215 + + -2.6885536313056946e-01 3.9257419109344482e-01 + <_> + + 0 -1 69 -2010207566 992095882 -923650279 788664832 + -2001285654 -1627768873 -33641557 -286265589 + + -2.6879036426544189e-01 2.9501637816429138e-01 + <_> + + 0 -1 91 -784068086 -108473857 2146818527 -573505573 + -875627894 -121565032 -69223473 -69862017 + + -3.2706248760223389e-01 2.2975476086139679e-01 + <_> + + 0 -1 30 -1048578 -604866 -1074132226 -859444 -42054404 + 1572803865 -537376564 -45313 + + -2.4356228113174438e-01 3.0726879835128784e-01 + <_> + + 0 -1 203 546301 -3364714 1037842677 -1141359636 -1730392580 + -1073873060 -1195099652 -1197997560 + + -2.6030963659286499e-01 2.7339822053909302e-01 + <_> + + 0 -1 244 340007221 -715777 1976958847 -560289 -645227653 + -5137 -1395851585 -1475338720 + + -3.3757317066192627e-01 1.8169505894184113e-01 + <_> + + 0 -1 252 -536876277 6287771 -1619133169 -2073298197 + 1942747142 347331667 -456196348 -187697169 + + -2.8153365850448608e-01 2.3552483320236206e-01 + <_> + + 0 -1 133 -1895619053 1594076987 213346175 1940061794 + -1084264449 -836767838 1113580542 -71317581 + + -1.8090774118900299e-01 3.6471092700958252e-01 + <_> + + 0 -1 196 -939278205 -1038940544 358138843 -241883949 + -1991554675 -593763646 72742875 -639905253 + + -2.0349347591400146e-01 3.1664288043975830e-01 + <_> + + 0 -1 32 -10467632 -1218534866 -140499459 -873455368 + -84072199 -1396790337 -1298891060 174661666 + + -2.9732549190521240e-01 2.0526884496212006e-01 + <_> + + 0 -1 168 -1014857696 -580779488 1466422647 2000216098 + -999622994 -9829728 -1067589142 1090961922 + + -4.1238275170326233e-01 1.5365768969058990e-01 + <_> + + 0 -1 34 -2744452 -386768130 -423167714 -1765347118 + -638249896 1761690417 1675646108 -16942736 + + -3.5506930947303772e-01 1.7395976185798645e-01 + <_> + + 0 -1 180 -297810429 2010621711 1795057440 1471141759 + -298336274 7532327 2012214010 -1968439297 + + -2.2353799641132355e-01 2.8162729740142822e-01 + <_> + + 0 -1 52 1370465178 -138027107 1106779442 1039434826 + 1994768862 1132100550 -62026870 1892530874 + + -2.9113209247589111e-01 2.0969158411026001e-01 + <_> + + 0 -1 119 1785457410 1074396198 -722866136 1894924863 + -2092621052 1078068033 849286481 1350039159 + + -4.8594748973846436e-01 1.4445739984512329e-01 + <_> + + 0 -1 267 -307232973 739178939 -109578240 -1467065064 + -1953519100 543159451 2067785728 1156576639 + + -3.6847913265228271e-01 1.6343115270137787e-01 + <_> + + 0 -1 105 -304479188 -653906046 458232444 362283648 743997852 + 1023435825 678702296 2141353427 + + -4.1794654726982117e-01 1.4696790277957916e-01 + <_> + + 0 -1 149 -1474295600 583142900 796931261 636946882 + -1677723202 -1141257324 999885740 146933924 + + -4.6846660971641541e-01 1.2554962933063507e-01 + <_> + + 0 -1 142 -1056920456 2144904732 1557674361 454068048 + 162041240 982532569 1165742776 -71968580 + + -3.3009743690490723e-01 1.8906202912330627e-01 + <_> + + 0 -1 215 -586218806 2064193627 276825240 420610717 290201738 + 838881504 -1650814757 1587269849 + + -3.3714732527732849e-01 1.8466538190841675e-01 + <_> + + 0 -1 2 386867406 1939059381 424173738 -46096988 -1177697538 + 251995272 1344360935 1962986616 + + -3.3208054304122925e-01 1.8585780262947083e-01 + <_> + + 0 -1 134 -298857425 1997964573 1077568116 2012533912 + 1361920524 1090935617 1193755076 -200286465 + + -2.5905856490135193e-01 2.4680580198764801e-01 + <_> + + 0 -1 68 -1056780345 -4719777 2134372031 -1759921541 + -553802593 -16822282 -421013525 -374683390 + + -1.5229237079620361e-01 3.9819708466529846e-01 + <_> + + 0 -1 224 -608446464 -1867328277 -790902508 421068383 + -394279672 141484519 445484292 408940511 + + -3.8842281699180603e-01 1.5214422345161438e-01 + <_> + + 0 -1 4 1810834979 545384940 -2033506042 1522937006 + 1661430389 1146300953 2110680405 -152732730 + + -3.6140063405036926e-01 1.7674677073955536e-01 + <_> + + 0 -1 170 -1660680999 455349924 -1074521701 -1076380789 + 1166607768 -88280905 1539185402 -1680998264 + + -2.5342223048210144e-01 2.5323724746704102e-01 + <_> + + 0 -1 207 -85819176 -574059136 -1925111674 1596920354 + 1782615976 437916680 386308588 2132014521 + + -3.5360771417617798e-01 1.8576373159885406e-01 + <_> + + 0 -1 246 493625329 -1650686224 -1305653903 -1780149510 + 1033453485 -90368775 -1899817483 -1610865684 + + -2.7493086457252502e-01 2.2744202613830566e-01 + + <_> + + 0 0 1 1 + <_> + + 0 0 3 1 + <_> + + 0 0 12 6 + <_> + + 0 1 1 1 + <_> + + 0 1 1 2 + <_> + + 0 1 1 4 + <_> + + 0 2 1 1 + <_> + + 0 2 1 2 + <_> + + 0 2 2 1 + <_> + + 0 3 1 1 + <_> + + 0 3 1 2 + <_> + + 0 3 1 5 + <_> + + 0 3 2 1 + <_> + + 0 3 12 4 + <_> + + 0 4 1 1 + <_> + + 0 4 2 1 + <_> + + 0 6 1 1 + <_> + + 0 6 2 1 + <_> + + 0 7 1 2 + <_> + + 0 7 2 2 + <_> + + 0 8 1 2 + <_> + + 0 9 1 2 + <_> + + 0 11 1 2 + <_> + + 0 12 1 1 + <_> + + 0 12 2 1 + <_> + + 0 12 2 2 + <_> + + 0 13 1 1 + <_> + + 0 14 1 1 + <_> + + 0 15 1 1 + <_> + + 0 15 2 1 + <_> + + 0 15 3 1 + <_> + + 0 15 12 1 + <_> + + 1 4 5 1 + <_> + + 1 6 2 1 + <_> + + 1 9 1 3 + <_> + + 1 11 10 2 + <_> + + 2 0 1 1 + <_> + + 2 0 2 1 + <_> + + 2 15 2 1 + <_> + + 2 15 4 1 + <_> + + 2 15 8 1 + <_> + + 3 0 1 1 + <_> + + 3 0 2 1 + <_> + + 3 0 3 1 + <_> + + 3 0 10 3 + <_> + + 3 2 10 2 + <_> + + 3 15 1 1 + <_> + + 4 0 1 1 + <_> + + 4 0 1 4 + <_> + + 4 0 7 1 + <_> + + 4 0 9 2 + <_> + + 4 1 5 2 + <_> + + 4 1 9 1 + <_> + + 4 4 9 1 + <_> + + 4 12 9 2 + <_> + + 5 0 1 3 + <_> + + 5 0 1 4 + <_> + + 5 1 9 1 + <_> + + 5 2 5 2 + <_> + + 5 4 6 1 + <_> + + 5 6 1 4 + <_> + + 5 12 8 1 + <_> + + 5 13 6 1 + <_> + + 6 0 4 1 + <_> + + 6 1 9 2 + <_> + + 6 3 6 1 + <_> + + 6 7 1 3 + <_> + + 6 12 4 2 + <_> + + 7 0 3 1 + <_> + + 7 1 2 1 + <_> + + 7 1 4 2 + <_> + + 7 1 9 2 + <_> + + 7 2 8 1 + <_> + + 7 4 4 1 + <_> + + 7 4 7 1 + <_> + + 7 4 8 1 + <_> + + 7 6 1 3 + <_> + + 7 7 7 3 + <_> + + 7 8 7 3 + <_> + + 7 9 8 3 + <_> + + 7 11 7 2 + <_> + + 8 10 6 1 + <_> + + 9 0 1 3 + <_> + + 9 0 1 4 + <_> + + 9 4 1 3 + <_> + + 9 9 1 3 + <_> + + 9 11 3 2 + <_> + + 9 15 3 1 + <_> + + 10 0 1 3 + <_> + + 10 0 1 4 + <_> + + 10 0 5 2 + <_> + + 10 1 5 3 + <_> + + 10 3 1 3 + <_> + + 10 3 3 1 + <_> + + 10 3 8 1 + <_> + + 10 6 1 4 + <_> + + 10 7 1 3 + <_> + + 10 9 1 3 + <_> + + 10 11 5 1 + <_> + + 11 0 1 3 + <_> + + 11 1 1 4 + <_> + + 11 2 3 1 + <_> + + 11 3 6 1 + <_> + + 11 4 1 2 + <_> + + 11 6 1 4 + <_> + + 11 10 1 2 + <_> + + 11 13 2 1 + <_> + + 12 0 1 3 + <_> + + 12 3 1 3 + <_> + + 12 6 3 4 + <_> + + 12 9 1 3 + <_> + + 12 15 4 1 + <_> + + 13 0 1 3 + <_> + + 13 0 3 1 + <_> + + 13 1 2 3 + <_> + + 13 3 3 2 + <_> + + 13 8 1 3 + <_> + + 13 8 2 3 + <_> + + 13 10 1 2 + <_> + + 13 10 3 1 + <_> + + 13 15 1 1 + <_> + + 13 15 5 1 + <_> + + 14 0 1 3 + <_> + + 14 0 4 1 + <_> + + 14 1 5 2 + <_> + + 14 9 1 3 + <_> + + 14 13 4 1 + <_> + + 14 15 2 1 + <_> + + 14 15 3 1 + <_> + + 15 0 1 4 + <_> + + 15 0 2 1 + <_> + + 15 0 3 1 + <_> + + 15 3 3 1 + <_> + + 15 5 1 1 + <_> + + 15 9 1 1 + <_> + + 15 9 2 3 + <_> + + 15 10 4 2 + <_> + + 16 0 5 1 + <_> + + 16 3 1 1 + <_> + + 16 3 3 1 + <_> + + 16 3 4 1 + <_> + + 16 3 5 1 + <_> + + 16 10 1 2 + <_> + + 17 3 1 1 + <_> + + 17 4 1 1 + <_> + + 17 4 4 1 + <_> + + 17 12 2 2 + <_> + + 18 0 1 4 + <_> + + 18 1 5 2 + <_> + + 18 2 3 1 + <_> + + 18 2 6 1 + <_> + + 18 3 1 1 + <_> + + 19 0 1 3 + <_> + + 19 0 1 4 + <_> + + 19 2 1 3 + <_> + + 19 7 1 1 + <_> + + 19 8 2 1 + <_> + + 19 9 1 3 + <_> + + 19 15 2 1 + <_> + + 20 0 1 3 + <_> + + 20 0 1 4 + <_> + + 20 0 3 1 + <_> + + 20 3 1 2 + <_> + + 20 3 3 1 + <_> + + 20 4 1 2 + <_> + + 20 7 1 3 + <_> + + 20 8 1 3 + <_> + + 20 13 3 1 + <_> + + 21 1 1 4 + <_> + + 21 3 1 3 + <_> + + 21 4 3 1 + <_> + + 21 7 1 1 + <_> + + 21 7 1 3 + <_> + + 21 8 1 3 + <_> + + 21 10 1 1 + <_> + + 21 10 1 2 + <_> + + 21 15 2 1 + <_> + + 22 2 1 3 + <_> + + 22 3 2 5 + <_> + + 22 4 1 3 + <_> + + 22 6 1 1 + <_> + + 22 8 1 2 + <_> + + 22 8 1 3 + <_> + + 22 10 2 2 + <_> + + 22 11 2 2 + <_> + + 23 0 1 4 + <_> + + 23 3 1 3 + <_> + + 23 6 1 4 + <_> + + 23 7 1 3 + <_> + + 23 9 1 1 + <_> + + 23 9 1 3 + <_> + + 23 15 1 1 + <_> + + 24 0 1 3 + <_> + + 24 0 1 4 + <_> + + 24 1 1 4 + <_> + + 24 1 3 1 + <_> + + 24 2 1 2 + <_> + + 24 7 1 3 + <_> + + 24 7 2 1 + <_> + + 24 9 1 1 + <_> + + 24 9 1 3 + <_> + + 24 10 1 1 + <_> + + 25 4 1 2 + <_> + + 25 4 3 1 + <_> + + 25 7 1 2 + <_> + + 25 7 1 3 + <_> + + 25 8 1 3 + <_> + + 25 9 1 2 + <_> + + 25 10 1 2 + <_> + + 26 0 1 1 + <_> + + 26 1 1 1 + <_> + + 26 3 1 3 + <_> + + 26 6 1 3 + <_> + + 26 7 1 2 + <_> + + 26 7 1 3 + <_> + + 26 8 2 2 + <_> + + 26 11 2 2 + <_> + + 27 0 1 4 + <_> + + 27 0 3 1 + <_> + + 27 3 1 3 + <_> + + 27 6 1 1 + <_> + + 27 6 1 3 + <_> + + 27 9 1 1 + <_> + + 27 9 1 3 + <_> + + 27 9 3 2 + <_> + + 28 0 2 1 + <_> + + 28 1 1 1 + <_> + + 28 1 1 3 + <_> + + 28 3 1 3 + <_> + + 28 9 1 1 + <_> + + 28 9 1 3 + <_> + + 28 10 1 1 + <_> + + 28 15 1 1 + <_> + + 29 0 1 1 + <_> + + 29 7 2 1 + <_> + + 30 0 1 1 + <_> + + 30 0 1 4 + <_> + + 30 4 2 1 + <_> + + 30 8 2 1 + <_> + + 30 10 2 1 + <_> + + 30 11 2 2 + <_> + + 30 12 2 2 + <_> + + 30 14 2 1 + <_> + + 30 15 2 1 + <_> + + 31 0 1 1 + <_> + + 31 0 1 4 + <_> + + 31 15 1 1 + <_> + + 32 0 1 4 + <_> + + 33 0 1 1 + <_> + + 33 0 1 4 + <_> + + 33 1 1 1 + <_> + + 33 1 1 2 + <_> + + 33 2 1 1 + <_> + + 33 2 1 2 + <_> + + 33 3 1 1 + <_> + + 33 3 1 2 + <_> + + 33 3 1 3 + <_> + + 33 3 1 5 + <_> + + 33 4 1 1 + <_> + + 33 5 1 1 + <_> + + 33 5 1 3 + <_> + + 33 6 1 1 + <_> + + 33 9 1 1 + <_> + + 33 10 1 1 + <_> + + 33 10 1 2 + <_> + + 33 12 1 1 + <_> + + 33 13 1 1 + <_> + + 33 14 1 1 + <_> + + 33 15 1 1 + diff --git a/src/android/assets/runtime_data/region/vn2.xml b/src/android/assets/runtime_data/region/vn2.xml new file mode 100644 index 0000000..28d96e6 --- /dev/null +++ b/src/android/assets/runtime_data/region/vn2.xml @@ -0,0 +1,625 @@ + + + + BOOST + LBP + 20 + 28 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 11 + + + <_> + 5 + -1.0226867198944092e+00 + + <_> + + 0 -1 3 -236978690 -71328259 1469446622 -41985 300805055 + 1974514928 -341061633 -1 + + -8.1343281269073486e-01 5.4749196767807007e-01 + <_> + + 0 -1 47 -1068506578 -535837126 -2139095038 -1065140221 + -1073493873 1073774592 -1056185469 -203425825 + + -6.8157231807708740e-01 6.2008899450302124e-01 + <_> + + 0 -1 8 -882644473 6749795 -1069291346 -2140212948 1350526835 + 84000771 -786963725 -403177497 + + -6.5852028131484985e-01 5.9720140695571899e-01 + <_> + + 0 -1 55 -1959252296 -2389544 -721100803 -6546476 -1240731201 + -1077882627 -1080099841 -1141371716 + + -6.6024768352508545e-01 5.6097584962844849e-01 + <_> + + 0 -1 13 -957023424 1876153335 -629018556 -1009843309 + -527056715 -1831865877 868609770 -1350571009 + + -6.3601404428482056e-01 5.6986278295516968e-01 + + <_> + 5 + -1.1183853149414062e+00 + + <_> + + 0 -1 34 -1087352324 -2420483 1372910047 2113212445 + -1148650759 -106239812 -1148650566 -1683482424 + + -8.1584769487380981e-01 3.6146789789199829e-01 + <_> + + 0 -1 36 -796671862 -796737406 1363214376 1573376133 + 1342235266 1073741825 1359870346 -606085153 + + -6.9792109727859497e-01 5.0962162017822266e-01 + <_> + + 0 -1 43 -1596738302 -738756081 -1291747361 -137389281 + -915801681 -91504437 -1413752657 -1347442137 + + -6.6823571920394897e-01 5.3261423110961914e-01 + <_> + + 0 -1 5 -208153610 -237777985 -1626780180 -2626532 + -1148627972 1912312479 -83100674 1504688623 + + -6.7626368999481201e-01 5.1578819751739502e-01 + <_> + + 0 -1 18 -1110436427 -141552556 -788442881 1059033301 + -1719130691 -1178345416 -1102521443 -1423963940 + + -6.2948453426361084e-01 6.0341739654541016e-01 + + <_> + 5 + -1.9752599000930786e+00 + + <_> + + 0 -1 27 -1785702947 -547547947 -1761485315 -191011 + -1995924485 -72740104 -1095976257 -1086846584 + + -7.5782203674316406e-01 4.6846845746040344e-01 + <_> + + 0 -1 39 1360056540 1607733652 1363221981 -2404139 + -1115123526 -1717827448 1048783807 -1079312374 + + -6.4150768518447876e-01 5.1527595520019531e-01 + <_> + + 0 -1 44 -1060126074 -238824509 536903680 1363780187 688994 + 1342193665 -788413717 -614474865 + + -5.6712394952774048e-01 5.3354203701019287e-01 + <_> + + 0 -1 50 -1 1073537022 -285212675 -1082261513 -266243 + -1619984385 -536904452 2079972863 + + -5.3560340404510498e-01 6.0510307550430298e-01 + <_> + + 0 -1 23 571474481 869470705 219369951 2113346335 -1859444519 + -1073801157 262856381 993657368 + + -6.9949334859848022e-01 4.7212797403335571e-01 + + <_> + 5 + -1.1232472658157349e+00 + + <_> + + 0 -1 54 -209198525 1413661190 200706 -1031028670 1342246978 + 1090683040 -1320974197 -201326641 + + -7.6172041893005371e-01 3.1445312500000000e-01 + <_> + + 0 -1 15 -562303134 -351020713 -687681060 -278937155 + 2074210739 2073986273 -74059777 -65 + + -6.4060848951339722e-01 4.7522404789924622e-01 + <_> + + 0 -1 19 457708756 -1122564679 298209791 2100761337 + -1153410374 -23527032 -1146312257 -1180169800 + + -6.1004692316055298e-01 5.2203148603439331e-01 + <_> + + 0 -1 56 -857758202 181110223 -326838386 1890572927 + 1772073743 556974267 -67110257 -268436546 + + -6.1680519580841064e-01 5.0427693128585815e-01 + <_> + + 0 -1 35 966284540 -1861185520 -2128946723 1599144983 + -1568640262 -812021606 -1082090808 186259912 + + -6.8607240915298462e-01 4.8699402809143066e-01 + + <_> + 5 + -1.1578670740127563e+00 + + <_> + + 0 -1 17 -68170961 -293084402 1224843871 -536349562 + 1914930007 1615036999 -427568249 -173015109 + + -7.0355576276779175e-01 3.6879432201385498e-01 + <_> + + 0 -1 38 -225984374 -1339698556 8503296 1397211650 17690282 + 1026 1428418698 -706742369 + + -6.1560535430908203e-01 4.2747393250465393e-01 + <_> + + 0 -1 28 1367400440 353696080 -778858247 2111820247 23722697 + 1085485 199917759 455060462 + + -6.7115384340286255e-01 4.1770645976066589e-01 + <_> + + 0 -1 7 1977602766 1365111615 -1121728050 -75506241 + 1904999412 1342548476 -75269489 -2099009 + + -7.1227186918258667e-01 3.8815173506736755e-01 + <_> + + 0 -1 33 -754195830 -804126526 285313328 287547920 + -1073026872 -2113927040 -1073495932 -788012309 + + -5.5254626274108887e-01 5.0164043903350830e-01 + + <_> + 6 + -8.1348818540573120e-01 + + <_> + + 0 -1 14 320344829 -74104167 428873215 -551614349 -2136303362 + -108412247 788179407 -1616373368 + + -7.2034955024719238e-01 2.9809725284576416e-01 + <_> + + 0 -1 4 -704643113 -4533929 1082326870 -7810978 1352882687 + 2125561071 1786216411 -8209 + + -5.1959729194641113e-01 5.5615991353988647e-01 + <_> + + 0 -1 53 -243801590 -802967637 1426271746 -1007683850 + -719071406 1342486726 -173605946 -218628353 + + -5.2952307462692261e-01 5.4032027721405029e-01 + <_> + + 0 -1 26 -1719397360 -33811304 530659327 1073021083 + 1342178488 -1197471567 1332354559 221188457 + + -6.9718199968338013e-01 4.0761217474937439e-01 + <_> + + 0 -1 32 774911472 -270794532 -251332257 357829517 + -1183835398 -1412759130 1653264319 173019184 + + -8.4420329332351685e-01 3.1606295704841614e-01 + <_> + + 0 -1 9 -33554641 1079180070 -649870898 -560999525 1822128983 + 1622257847 -557127169 -247473492 + + -6.3315248489379883e-01 4.0907686948776245e-01 + + <_> + 5 + -1.0814472436904907e+00 + + <_> + + 0 -1 60 -269489361 1340063903 -2112495645 -186662433 + -88871577 160158602 -73665789 -135528513 + + -7.2124838829040527e-01 2.3564356565475464e-01 + <_> + + 0 -1 1 1147561570 -8231937 -220728609 -3718145 1883448309 + -180711173 -120018177 -268738097 + + -7.1248924732208252e-01 2.9627996683120728e-01 + <_> + + 0 -1 16 -143657486 803066203 -641576488 -1346414113 + 2038822369 1527474988 -170528044 -269615161 + + -6.1012923717498779e-01 3.9779847860336304e-01 + <_> + + 0 -1 42 -208674686 -778570287 -972684030 -772808502 + -1608535872 1174671461 1456465871 1930416427 + + -5.7085311412811279e-01 4.4576171040534973e-01 + <_> + + 0 -1 6 1060821245 -4636683 -1094763521 1039835037 -4436487 + -557998850 -16998435 -1349909272 + + -4.3154692649841309e-01 6.0856270790100098e-01 + + <_> + 5 + -1.0268830060958862e+00 + + <_> + + 0 -1 58 -268439793 1842990043 -850919954 -6303489 1873804103 + 868219595 -69484857 -4194305 + + -7.6132076978683472e-01 1.3425549864768982e-01 + <_> + + 0 -1 51 -550508545 918351897 -140393124 -1784757941 + -70477123 964518571 -617522756 -4205059 + + -5.9086549282073975e-01 3.8894322514533997e-01 + <_> + + 0 -1 41 -248266622 -739784177 -2141289952 -174370260 + 1624499111 268931154 1074787021 -210767953 + + -5.2205401659011841e-01 4.8417466878890991e-01 + <_> + + 0 -1 0 -1525134091 -1109897859 -1660522017 -1644247684 + 2074655422 -1146365853 -1975981059 -1977334748 + + -5.8343207836151123e-01 4.1282418370246887e-01 + <_> + + 0 -1 59 -814749150 -1044386650 -974208256 -570560821 + 1852832912 295171443 -415239197 -1283458081 + + -4.4459566473960876e-01 5.5129295587539673e-01 + + <_> + 7 + -1.3468582630157471e+00 + + <_> + + 0 -1 48 -22544385 -268373114 -315937931 -1707545 -1078199041 + -134163304 -477295989 -1050113 + + -6.5963971614837646e-01 3.6756756901741028e-01 + <_> + + 0 -1 2 1879015207 542897023 -652233029 -461379155 + -1618347145 1912720139 -34868294 -218103817 + + -6.0403579473495483e-01 3.4924373030662537e-01 + <_> + + 0 -1 22 470828248 -6851716 358111701 -195361684 973667294 + -1090908119 -1113556485 993534360 + + -7.1156060695648193e-01 3.0485236644744873e-01 + <_> + + 0 -1 46 -475012190 -468764761 -940574656 -1313374241 + -672152701 1350922110 -424151066 -137363457 + + -4.6654438972473145e-01 4.8787227272987366e-01 + <_> + + 0 -1 24 895540479 -4213861 1371697377 1000022554 268436724 + -96456319 -987466515 -66885 + + -4.8980873823165894e-01 4.9601224064826965e-01 + <_> + + 0 -1 10 830986078 978498018 1212634268 -7868086 -338953233 + 1955102955 2076283886 2121920686 + + -7.6825737953186035e-01 3.0441379547119141e-01 + <_> + + 0 -1 49 -464527326 -266403822 61910 -764964158 -804131566 + 690462785 105570303 -492711073 + + -6.0366225242614746e-01 3.9621585607528687e-01 + + <_> + 6 + -1.7895716428756714e+00 + + <_> + + 0 -1 21 1364573183 -582112869 2058695295 -6161477 + -1357251393 -662336771 -89413125 -3556673 + + -6.8916153907775879e-01 2.6106193661689758e-01 + <_> + + 0 -1 30 -1657268752 -45612848 486638045 1067013433 + -363278408 -1732736120 -1614242561 523377052 + + -6.9656443595886230e-01 3.0079075694084167e-01 + <_> + + 0 -1 45 -385876192 1524605990 -2059037737 -2645738 + -1884430347 -542584354 1737419071 692039206 + + -6.3620084524154663e-01 3.1837970018386841e-01 + <_> + + 0 -1 12 -279972306 -1360670259 -1823676278 -87565865 + 1161158962 2003271952 -878236737 -203951493 + + -6.3273507356643677e-01 3.5124236345291138e-01 + <_> + + 0 -1 40 -715361008 -1756993828 -2084937297 -36753112 + -1299701250 2074255770 -2096715345 153813130 + + -6.5382730960845947e-01 3.5776382684707642e-01 + <_> + + 0 -1 20 -1818091375 -741326623 -691960385 -1116518535 + -1333224993 -560015974 -1901407763 -1346762324 + + -4.9002870917320251e-01 4.4960626959800720e-01 + + <_> + 7 + -1.0691219568252563e+00 + + <_> + + 0 -1 37 -81003525 461435274 -1012705865 -10497345 -350241793 + -91580696 2005598335 -7249 + + -6.5210670232772827e-01 3.1233596801757812e-01 + <_> + + 0 -1 57 -826278137 1217917183 -1265116640 1813248574 + 1159199588 1243425723 -473966044 -520881157 + + -6.4328962564468384e-01 3.0107370018959045e-01 + <_> + + 0 -1 29 -546572126 -184109686 1342882304 -754068276 + 1653012961 1074103457 1090766283 868218843 + + -5.6011921167373657e-01 3.4936606884002686e-01 + <_> + + 0 -1 31 1980780701 -1115998562 296448463 -121827015 + -1147606888 -1346840419 985705599 -1625683479 + + -4.6067923307418823e-01 4.4133010506629944e-01 + <_> + + 0 -1 11 1189554799 1319077781 1998031309 -22283985 833051954 + 1385818172 -138953845 -1879377169 + + -5.6165486574172974e-01 3.9155927300453186e-01 + <_> + + 0 -1 52 -653270518 1105913099 -1022296000 -796692293 + 690149379 1359175685 -218376541 -1297088609 + + -5.0313746929168701e-01 4.5016640424728394e-01 + <_> + + 0 -1 25 1677398999 -9492915 -1460127170 597994023 + -2143238736 -657328155 -166293761 -1611679921 + + -4.3750682473182678e-01 5.0037056207656860e-01 + + <_> + + 0 0 3 1 + <_> + + 0 2 7 3 + <_> + + 0 4 2 2 + <_> + + 0 4 9 5 + <_> + + 0 8 4 4 + <_> + + 0 9 9 3 + <_> + + 1 0 5 1 + <_> + + 1 4 9 3 + <_> + + 1 5 2 3 + <_> + + 1 6 2 1 + <_> + + 1 7 9 4 + <_> + + 2 4 2 1 + <_> + + 2 6 3 1 + <_> + + 3 1 3 5 + <_> + + 3 1 7 1 + <_> + + 3 3 3 3 + <_> + + 3 4 3 3 + <_> + + 3 5 1 3 + <_> + + 4 0 3 1 + <_> + + 4 17 3 1 + <_> + + 5 1 3 1 + <_> + + 5 2 6 4 + <_> + + 5 15 4 1 + <_> + + 6 2 4 1 + <_> + + 6 6 4 2 + <_> + + 6 7 3 2 + <_> + + 6 8 4 1 + <_> + + 6 16 4 1 + <_> + + 7 7 5 1 + <_> + + 7 11 1 1 + <_> + + 7 14 4 1 + <_> + + 7 15 4 1 + <_> + + 8 16 4 1 + <_> + + 9 7 1 2 + <_> + + 9 15 4 1 + <_> + + 9 15 5 1 + <_> + + 10 5 1 3 + <_> + + 10 5 4 3 + <_> + + 10 6 1 3 + <_> + + 10 8 3 1 + <_> + + 10 9 3 1 + <_> + + 11 5 1 3 + <_> + + 11 9 1 2 + <_> + + 12 0 5 3 + <_> + + 12 5 1 3 + <_> + + 13 0 5 4 + <_> + + 13 5 1 1 + <_> + + 13 5 1 3 + <_> + + 13 5 3 3 + <_> + + 13 7 1 2 + <_> + + 13 8 5 4 + <_> + + 13 11 5 3 + <_> + + 14 5 1 1 + <_> + + 14 5 1 3 + <_> + + 15 5 1 3 + <_> + + 16 0 2 1 + <_> + + 16 5 2 1 + <_> + + 17 6 3 3 + <_> + + 18 5 2 1 + <_> + + 19 11 1 1 + <_> + + 22 6 1 1 + diff --git a/src/ios/OpenALPR.mm b/src/ios/OpenALPR.mm index c347222..dbfedfc 100644 --- a/src/ios/OpenALPR.mm +++ b/src/ios/OpenALPR.mm @@ -3,66 +3,159 @@ #import "PlateScanner.h" #import "Plate.h" +#include +#include + +using namespace std; +using namespace cv; + +static const std::string base64_chars = +"ABCDEFGHIJKLMNOPQRSTUVWXYZ" +"abcdefghijklmnopqrstuvwxyz" +"0123456789+/"; + @implementation OpenALPR +/** +@brief Command that will scan the given image. +*/ -(void) scan:(CDVInvokedUrlCommand *)command { - [self.commandDelegate runInBackground:^{ - self.plateScanner = [[PlateScanner alloc] init]; + [self.commandDelegate runInBackground: ^{ + //Set variables. + NSString* imagePath = [command.arguments objectAtIndex:0]; + NSDictionary *options = [command.arguments objectAtIndex:1]; + NSString* country = options[@"country"]; + int amount = [options[@"amount"] integerValue]; + + self.plateScanner = [[PlateScanner alloc] init: country amount: amount]; self.plates = [NSMutableArray arrayWithCapacity:0]; self.fileManager = [[NSFileManager alloc] init]; - NSString* imagePath = [command.arguments objectAtIndex:0]; CDVPluginResult* pluginResult = nil; - - // Strip file:// from imagePath where applicable - imagePath = [imagePath stringByReplacingOccurrencesOfString:@"file://" withString:@""]; - - //Check if imagePath is available and if image exists - if (imagePath && [self.fileManager fileExistsAtPath:imagePath]) { - cv::Mat image = imread([imagePath UTF8String], CV_LOAD_IMAGE_COLOR); - - [self.plateScanner - scanImage:image - onSuccess:^(NSArray * results) { - for(Plate* plate in results) { - NSDictionary *dic = @{ - @"number" : plate.number, - @"confidence" : [NSNumber numberWithFloat:plate.confidence] - }; - [self.plates addObject:dic]; - } - } - onFailure:^(NSError * error) { - dispatch_async(dispatch_get_main_queue(), ^{ - NSMutableDictionary* pluginError = [NSMutableDictionary dictionaryWithCapacity:2]; - [pluginError setValue:[NSNumber numberWithInt:CDV_UNKNOWN_ERROR] forKey:@"code"]; - [pluginError setValue:[error localizedDescription] forKey:@"message"]; - - CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:pluginError]; - - [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId]; - }); - }]; - - //TODO Move this variable to onSuccess - pluginResult = [ CDVPluginResult - resultWithStatus : CDVCommandStatus_OK - messageAsArray: self.plates]; + cv:Mat image; + + //If imagePath string contains file:// it is a image path. + if ([imagePath containsString:@"file://"]) { + + // Strip file:// from imagePath. + imagePath = [imagePath stringByReplacingOccurrencesOfString:@"file://" withString:@""]; + + // Make sure given imagePath exists and + if (imagePath && [self.fileManager fileExistsAtPath:imagePath]) { + image = imread([imagePath UTF8String], CV_LOAD_IMAGE_COLOR); + } + + //If no image can be found at the given file path, throw an error. + else { + NSMutableDictionary* pluginError = [NSMutableDictionary dictionaryWithCapacity:3]; + [pluginError setValue:[NSNumber numberWithInt:CDV_FILE_NOT_FOUND] forKey:@"code"]; + [pluginError setValue:@"Image can't be found for given path." forKey:@"message"]; + [pluginError setValue:imagePath forKey:@"path"]; + + pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:pluginError]; + } } - else { - NSMutableDictionary* pluginError = [NSMutableDictionary dictionaryWithCapacity:3]; - [pluginError setValue:[NSNumber numberWithInt:CDV_FILE_NOT_FOUND] forKey:@"code"]; - [pluginError setValue:@"Image can't be found for given path." forKey:@"message"]; - [pluginError setValue:imagePath forKey:@"path"]; - pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:pluginError]; + //In other cases, treat it as a Base64 encoded string. + else { + string strpath = std::string([imagePath UTF8String]); + string decoded_string = base64_decode(strpath); + vector data(decoded_string.begin(), decoded_string.end()); + + image = imdecode(data, IMREAD_UNCHANGED); } - [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId]; + [self.plateScanner + scanImage: image + onSuccess: ^(NSArray * results) { + for (Plate* plate in results) { + NSDictionary *dic = @{ + @"number" : plate.number, + @"confidence" : [NSNumber numberWithFloat:plate.confidence] + }; + [self.plates addObject:dic]; + } + } + + onFailure: ^(NSError * error) { + dispatch_async(dispatch_get_main_queue(), ^ { + NSMutableDictionary* pluginError = [NSMutableDictionary dictionaryWithCapacity:2]; + [pluginError setValue:[NSNumber numberWithInt:CDV_UNKNOWN_ERROR] forKey:@"code"]; + [pluginError setValue:[error localizedDescription] forKey:@"message"]; + + CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:pluginError]; + + [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId]; + }); + }]; + //TODO Move this variable to onSuccess + pluginResult = [ CDVPluginResult + resultWithStatus : CDVCommandStatus_OK + messageAsArray: self.plates]; + + [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId]; }]; } +/** +from: http://www.adp-gmbh.ch/cpp/common/base64.html + +@brief This function will check if given character is allowed for Base64. +@param unsigned char c Character to be checked. +@return bool Result of the check (True/False). + */ +static inline bool is_base64(unsigned char c) { + return (isalnum(c) || (c == '+') || (c == '/')); +} + +/** +from: http://www.adp-gmbh.ch/cpp/common/base64.html + +@brief This function will decode a Base64 string. +@param encoded_string The encoded string. +@return string The decoded string. + */ +std::string base64_decode(std::string const& encoded_string) { + int in_len = encoded_string.size(); + int i = 0; + int j = 0; + int in_ = 0; + unsigned char char_array_4[4], char_array_3[3]; + std::string ret; + + while (in_len-- && (encoded_string[in_] != '=') && is_base64(encoded_string[in_])) { + char_array_4[i++] = encoded_string[in_]; in_++; + if (i == 4) { + for (i = 0; i < 4; i++) + char_array_4[i] = base64_chars.find(char_array_4[i]); + + char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4); + char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2); + char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3]; + + for (i = 0; (i < 3); i++) + ret += char_array_3[i]; + i = 0; + } + } + + if (i) { + for (j = i; j < 4; j++) + char_array_4[j] = 0; + + for (j = 0; j < 4; j++) + char_array_4[j] = base64_chars.find(char_array_4[j]); + + char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4); + char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2); + char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3]; + + for (j = 0; (j < i - 1); j++) ret += char_array_3[j]; + } + + return ret; +} @end diff --git a/src/ios/Plate.mm b/src/ios/Plate.mm index 75515fa..b0d4752 100755 --- a/src/ios/Plate.mm +++ b/src/ios/Plate.mm @@ -10,6 +10,10 @@ @implementation Plate +/** +@brief Initialize a Plate object. +@return Plate +*/ - (id)initWithAlprPlate:(alpr::AlprPlate *)plate { if (self = [super init]) { self.number = [NSString stringWithCString:plate->characters.c_str() diff --git a/src/ios/PlateScanner.h b/src/ios/PlateScanner.h index 6a19a4e..3ff2031 100755 --- a/src/ios/PlateScanner.h +++ b/src/ios/PlateScanner.h @@ -19,6 +19,8 @@ using namespace cv; typedef void(^onPlateScanSuccess)(NSArray *); typedef void(^onPlateScanFailure)(NSError *); +- (id) init: (NSString *)country amount: (int) amount; + - (void) scanImage:(cv::Mat&)colorImage onSuccess:(onPlateScanSuccess)success onFailure:(onPlateScanFailure)failure; diff --git a/src/ios/PlateScanner.mm b/src/ios/PlateScanner.mm index 39c8367..bd9a915 100755 --- a/src/ios/PlateScanner.mm +++ b/src/ios/PlateScanner.mm @@ -15,27 +15,42 @@ @implementation PlateScanner { alpr::Alpr* delegate; } -- (id) init { +/** +@brief Initialize the object. +@param country Country code to scan the plate for. +@param amount Amount of matches to return. +@return Platescanner +*/ +- (id) init: (NSString *) country amount: (int) amount { if (self = [super init]) { delegate = new alpr::Alpr( - [@"us" UTF8String], + [country UTF8String], [[[NSBundle mainBundle] pathForResource:@"openalpr.conf" ofType:nil] UTF8String], [[[NSBundle mainBundle] pathForResource:@"runtime_data" ofType:nil] UTF8String] ); - delegate->setTopN(3); - delegate->setCountry("eu"); + delegate->setTopN(amount); if (delegate->isLoaded() == false) { NSLog(@"Error initializing OpenALPR library"); delegate = nil; } - if (!delegate) self = nil; + + if (! delegate) { + self = nil; + } } + return self; - } +/** +@brief Scan the given image using the OpenALPR library. +@param colorImage An image object containing the image to be scanned. +@param onSuccess A function to be called after a successfull execution. +@param onFailure A function to be called after a failed execution. +@return array +*/ - (void)scanImage:(cv::Mat &)colorImage onSuccess:(onPlateScanSuccess)success onFailure:(onPlateScanFailure)failure { @@ -51,6 +66,7 @@ - (void)scanImage:(cv::Mat &)colorImage NSMutableArray *bestPlates = [[NSMutableArray alloc]initWithCapacity:results.plates.size()]; + //Push all results to the response array. for (int i = 0; i < results.plates.size(); i++) { alpr::AlprPlateResult plateResult = results.plates[i]; [bestPlates addObject:[[Plate alloc]initWithAlprPlate:&plateResult.bestPlate]]; diff --git a/src/ios/lib/leptonica.framework/leptonica b/src/ios/lib/leptonica.framework/leptonica index 13cb06e..ed57275 100644 Binary files a/src/ios/lib/leptonica.framework/leptonica and b/src/ios/lib/leptonica.framework/leptonica differ diff --git a/src/ios/lib/openalpr.framework/Headers/alpr.h b/src/ios/lib/openalpr.framework/Headers/alpr.h index 646da84..b08913a 100644 --- a/src/ios/lib/openalpr.framework/Headers/alpr.h +++ b/src/ios/lib/openalpr.framework/Headers/alpr.h @@ -1,179 +1,180 @@ -/* - * Copyright (c) 2015 OpenALPR Technology, Inc. - * Open source Automated License Plate Recognition [http://www.openalpr.com] - * - * This file is part of OpenALPR. - * - * OpenALPR is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License - * version 3 as published by the Free Software Foundation - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -#ifndef OPENALPR_ALPR_H -#define OPENALPR_ALPR_H - -#include -#include -#include -#include - -#ifdef WIN32 - #define OPENALPR_DLL_EXPORT __declspec( dllexport ) -#else - #define OPENALPR_DLL_EXPORT -#endif - -namespace alpr -{ - - struct AlprCoordinate - { - int x; - int y; - }; - - struct AlprChar - { - AlprCoordinate corners[4]; - float confidence; - std::string character; - }; - - struct AlprPlate - { - std::string characters; - float overall_confidence; - - std::vector character_details; - bool matches_template; - }; - - - class AlprRegionOfInterest - { - public: - AlprRegionOfInterest(); - AlprRegionOfInterest(int x, int y, int width, int height) - { - this->x = x; - this->y = y; - this->width = width; - this->height = height; - }; - - int x; - int y; - int width; - int height; - }; - - class AlprPlateResult - { - public: - AlprPlateResult() {}; - virtual ~AlprPlateResult() {}; - - // The number requested is always >= the topNPlates count - int requested_topn; - - // The country (training data code) that was used to recognize the plate - std::string country; - - // the best plate is the topNPlate with the highest confidence - AlprPlate bestPlate; - - // A list of possible plate number permutations - std::vector topNPlates; - - // The processing time for this plate - float processing_time_ms; - - // the X/Y coordinates of the corners of the plate (clock-wise from top-left) - AlprCoordinate plate_points[4]; - - // The index of the plate if there were multiple plates returned - int plate_index; - - // When region detection is enabled, this returns the region. Region detection is experimental - int regionConfidence; - std::string region; - }; - - class AlprResults - { - public: - AlprResults() { - frame_number = -1; - }; - virtual ~AlprResults() {}; - - int64_t epoch_time; - int64_t frame_number; - int img_width; - int img_height; - float total_processing_time_ms; - - std::vector plates; - - std::vector regionsOfInterest; - - }; - - - class Config; - class AlprImpl; - class OPENALPR_DLL_EXPORT Alpr - { - - public: - Alpr(const std::string country, const std::string configFile = "", const std::string runtimeDir = ""); - virtual ~Alpr(); - - // Set the country used for plate recognition - void setCountry(std::string country); - - // Update the prewarp setting without reloading the library - void setPrewarp(std::string prewarp_config); - // Update the detection mask without reloading the library - void setMask(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight); - - void setDetectRegion(bool detectRegion); - void setTopN(int topN); - void setDefaultRegion(std::string region); - - // Recognize from an image on disk - AlprResults recognize(std::string filepath); - - // Recognize from byte data representing an encoded image (e.g., BMP, PNG, JPG, GIF etc). - AlprResults recognize(std::vector imageBytes); - - // Recognize from byte data representing an encoded image (e.g., BMP, PNG, JPG, GIF etc). - AlprResults recognize(std::vector imageBytes, std::vector regionsOfInterest); - - // Recognize from raw pixel data. - AlprResults recognize(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight, std::vector regionsOfInterest); - - - static std::string toJson(const AlprResults results); - static AlprResults fromJson(std::string json); - - bool isLoaded(); - - static std::string getVersion(); - - Config* getConfig(); - - private: - AlprImpl* impl; - }; - -} -#endif // OPENALPR_APLR_H +/* + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] + * + * This file is part of OpenALPR. + * + * OpenALPR is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License + * version 3 as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +#ifndef OPENALPR_ALPR_H +#define OPENALPR_ALPR_H + +#include +#include +#include +#include + +#ifdef WIN32 + #define OPENALPR_DLL_EXPORT __declspec( dllexport ) +#else + #define OPENALPR_DLL_EXPORT +#endif + +namespace alpr +{ + + struct AlprCoordinate + { + int x; + int y; + }; + + struct AlprChar + { + AlprCoordinate corners[4]; + float confidence; + std::string character; + }; + + struct AlprPlate + { + std::string characters; + float overall_confidence; + + std::vector character_details; + bool matches_template; + }; + + + class AlprRegionOfInterest + { + public: + AlprRegionOfInterest(); + AlprRegionOfInterest(int x, int y, int width, int height) + { + this->x = x; + this->y = y; + this->width = width; + this->height = height; + }; + + int x; + int y; + int width; + int height; + }; + + class AlprPlateResult + { + public: + AlprPlateResult() {}; + virtual ~AlprPlateResult() {}; + + // The number requested is always >= the topNPlates count + int requested_topn; + + // The country (training data code) that was used to recognize the plate + std::string country; + + // the best plate is the topNPlate with the highest confidence + AlprPlate bestPlate; + + // A list of possible plate number permutations + std::vector topNPlates; + + // The processing time for this plate + float processing_time_ms; + + // the X/Y coordinates of the corners of the plate (clock-wise from top-left) + AlprCoordinate plate_points[4]; + + // The index of the plate if there were multiple plates returned + int plate_index; + + // When region detection is enabled, this returns the region. Region detection is experimental + int regionConfidence; + std::string region; + }; + + class AlprResults + { + public: + AlprResults() { + frame_number = -1; + }; + virtual ~AlprResults() {}; + + int64_t epoch_time; + int64_t frame_number; + int img_width; + int img_height; + float total_processing_time_ms; + + std::vector plates; + + std::vector regionsOfInterest; + + }; + + + class Config; + class AlprImpl; + class OPENALPR_DLL_EXPORT Alpr + { + + public: + Alpr(const std::string country, const std::string configFile = "", const std::string runtimeDir = ""); + virtual ~Alpr(); + + // Set the country used for plate recognition + void setCountry(std::string country); + + // Update the prewarp setting without reloading the library + void setPrewarp(std::string prewarp_config); + // Update the detection mask without reloading the library + void setMask(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight); + + void setDetectRegion(bool detectRegion); + void setTopN(int topN); + void setDefaultRegion(std::string region); + + // Recognize from an image on disk + AlprResults recognize(std::string filepath); + + // Recognize from byte data representing an encoded image (e.g., BMP, PNG, JPG, GIF etc). + AlprResults recognize(std::vector imageBytes); + + // Recognize from byte data representing an encoded image (e.g., BMP, PNG, JPG, GIF etc). + AlprResults recognize(std::vector imageBytes, std::vector regionsOfInterest); + + // Recognize from raw pixel data. + AlprResults recognize(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight, std::vector regionsOfInterest); + + + static std::string toJson(const AlprResults results); + static std::string toJson(const AlprPlateResult result); + static AlprResults fromJson(std::string json); + + bool isLoaded(); + + static std::string getVersion(); + + Config* getConfig(); + + private: + AlprImpl* impl; + }; + +} +#endif // OPENALPR_APLR_H diff --git a/src/ios/lib/openalpr.framework/Headers/config.h b/src/ios/lib/openalpr.framework/Headers/config.h index e2677a6..53748b2 100644 --- a/src/ios/lib/openalpr.framework/Headers/config.h +++ b/src/ios/lib/openalpr.framework/Headers/config.h @@ -1,181 +1,181 @@ -/* - * Copyright (c) 2015 OpenALPR Technology, Inc. - * Open source Automated License Plate Recognition [http://www.openalpr.com] - * - * This file is part of OpenALPR. - * - * OpenALPR is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License - * version 3 as published by the Free Software Foundation - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - - -#ifndef OPENALPR_CONFIG_H -#define OPENALPR_CONFIG_H - - -#include "constants.h" - -#include -#include -#include -#include /* getenv */ -#include - -namespace alpr -{ - - class Config - { - - public: - Config(const std::string country, const std::string config_file = "", const std::string runtime_dir = ""); - virtual ~Config(); - - bool load_countries(const std::string countries); - - bool loaded; - - std::string config_file_path; - - std::string country; - - int detector; - - float detection_iteration_increase; - int detectionStrictness; - float maxPlateWidthPercent; - float maxPlateHeightPercent; - int maxDetectionInputWidth; - int maxDetectionInputHeight; - - float contrastDetectionThreshold; - - bool skipDetection; - - std::string detection_mask_image; - - int analysis_count; - - bool auto_invert; - bool always_invert; - - std::string prewarp; - - int maxPlateAngleDegrees; - - float minPlateSizeWidthPx; - float minPlateSizeHeightPx; - - bool multiline; - - float plateWidthMM; - float plateHeightMM; - - std::vector charHeightMM; - std::vector charWidthMM; - - float avgCharHeightMM; - float avgCharWidthMM; - - float charWhitespaceTopMM; - float charWhitespaceBotMM; - float charWhitespaceBetweenLinesMM; - - int templateWidthPx; - int templateHeightPx; - - int ocrImageWidthPx; - int ocrImageHeightPx; - - int stateIdImageWidthPx; - int stateIdimageHeightPx; - - float charAnalysisMinPercent; - float charAnalysisHeightRange; - float charAnalysisHeightStepSize; - int charAnalysisNumSteps; - - float plateLinesSensitivityVertical; - float plateLinesSensitivityHorizontal; - - float segmentationMinSpeckleHeightPercent; - int segmentationMinBoxWidthPx; - float segmentationMinCharHeightPercent; - float segmentationMaxCharWidthvsAverage; - - std::string detectorFile; - - std::string ocrLanguage; - int ocrMinFontSize; - - bool mustMatchPattern; - - float postProcessMinConfidence; - float postProcessConfidenceSkipLevel; - unsigned int postProcessMinCharacters; - unsigned int postProcessMaxCharacters; - - std::string postProcessRegexLetters; - std::string postProcessRegexNumbers; - - bool debugGeneral; - bool debugTiming; - bool debugPrewarp; - bool debugDetector; - bool debugStateId; - bool debugPlateLines; - bool debugPlateCorners; - bool debugCharSegmenter; - bool debugCharAnalysis; - bool debugColorFiler; - bool debugOcr; - bool debugPostProcess; - bool debugShowImages; - bool debugPauseOnFrame; - - void setDebug(bool value); - - std::string getKeypointsRuntimeDir(); - std::string getCascadeRuntimeDir(); - std::string getPostProcessRuntimeDir(); - std::string getTessdataPrefix(); - - std::string runtimeBaseDir; - - std::vector loaded_countries; - - bool setCountry(std::string country); - - private: - - float ocrImagePercent; - float stateIdImagePercent; - - std::vector parse_country_string(std::string countries); - bool country_is_loaded(std::string country); - - void loadCommonValues(std::string configFile); - void loadCountryValues(std::string configFile, std::string country); - - }; - - - enum DETECTOR_TYPE - { - DETECTOR_LBP_CPU=0, - DETECTOR_LBP_GPU=1, - DETECTOR_MORPH_CPU=2, - DETECTOR_LBP_OPENCL=3 - }; - -} -#endif // OPENALPR_CONFIG_H +/* + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] + * + * This file is part of OpenALPR. + * + * OpenALPR is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License + * version 3 as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + + +#ifndef OPENALPR_CONFIG_H +#define OPENALPR_CONFIG_H + + +#include "constants.h" + +#include +#include +#include +#include /* getenv */ +#include + +namespace alpr +{ + + class Config + { + + public: + Config(const std::string country, const std::string config_file = "", const std::string runtime_dir = ""); + virtual ~Config(); + + bool load_countries(const std::string countries); + + bool loaded; + + std::string config_file_path; + + std::string country; + + int detector; + + float detection_iteration_increase; + int detectionStrictness; + float maxPlateWidthPercent; + float maxPlateHeightPercent; + int maxDetectionInputWidth; + int maxDetectionInputHeight; + + float contrastDetectionThreshold; + + bool skipDetection; + + std::string detection_mask_image; + + int analysis_count; + + bool auto_invert; + bool always_invert; + + std::string prewarp; + + int maxPlateAngleDegrees; + + float minPlateSizeWidthPx; + float minPlateSizeHeightPx; + + bool multiline; + + float plateWidthMM; + float plateHeightMM; + + std::vector charHeightMM; + std::vector charWidthMM; + + float avgCharHeightMM; + float avgCharWidthMM; + + float charWhitespaceTopMM; + float charWhitespaceBotMM; + float charWhitespaceBetweenLinesMM; + + int templateWidthPx; + int templateHeightPx; + + int ocrImageWidthPx; + int ocrImageHeightPx; + + int stateIdImageWidthPx; + int stateIdimageHeightPx; + + float charAnalysisMinPercent; + float charAnalysisHeightRange; + float charAnalysisHeightStepSize; + int charAnalysisNumSteps; + + float plateLinesSensitivityVertical; + float plateLinesSensitivityHorizontal; + + float segmentationMinSpeckleHeightPercent; + int segmentationMinBoxWidthPx; + float segmentationMinCharHeightPercent; + float segmentationMaxCharWidthvsAverage; + + std::string detectorFile; + + std::string ocrLanguage; + int ocrMinFontSize; + + bool mustMatchPattern; + + float postProcessMinConfidence; + float postProcessConfidenceSkipLevel; + unsigned int postProcessMinCharacters; + unsigned int postProcessMaxCharacters; + + std::string postProcessRegexLetters; + std::string postProcessRegexNumbers; + + bool debugGeneral; + bool debugTiming; + bool debugPrewarp; + bool debugDetector; + bool debugStateId; + bool debugPlateLines; + bool debugPlateCorners; + bool debugCharSegmenter; + bool debugCharAnalysis; + bool debugColorFiler; + bool debugOcr; + bool debugPostProcess; + bool debugShowImages; + bool debugPauseOnFrame; + + void setDebug(bool value); + + std::string getKeypointsRuntimeDir(); + std::string getCascadeRuntimeDir(); + std::string getPostProcessRuntimeDir(); + std::string getTessdataPrefix(); + + std::string runtimeBaseDir; + + std::vector loaded_countries; + + bool setCountry(std::string country); + + private: + + float ocrImagePercent; + float stateIdImagePercent; + + std::vector parse_country_string(std::string countries); + bool country_is_loaded(std::string country); + + void loadCommonValues(std::string configFile); + void loadCountryValues(std::string configFile, std::string country); + + }; + + + enum DETECTOR_TYPE + { + DETECTOR_LBP_CPU=0, + DETECTOR_LBP_GPU=1, + DETECTOR_MORPH_CPU=2, + DETECTOR_LBP_OPENCL=3 + }; + +} +#endif // OPENALPR_CONFIG_H diff --git a/src/ios/lib/openalpr.framework/Headers/constants.h b/src/ios/lib/openalpr.framework/Headers/constants.h index 9c3dea6..8830d77 100644 --- a/src/ios/lib/openalpr.framework/Headers/constants.h +++ b/src/ios/lib/openalpr.framework/Headers/constants.h @@ -1,41 +1,41 @@ -/* - * Copyright (c) 2015 OpenALPR Technology, Inc. - * Open source Automated License Plate Recognition [http://www.openalpr.com] - * - * This file is part of OpenALPR. - * - * OpenALPR is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License - * version 3 as published by the Free Software Foundation - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -#ifndef OPENALPR_CONSTANTS_H -#define OPENALPR_CONSTANTS_H - - - -#define RUNTIME_DIR "/runtime_data" -#define CONFIG_FILE "/openalpr.conf" -#define KEYPOINTS_DIR "/keypoints" -#define CASCADE_DIR "/region/" -#define POSTPROCESS_DIR "/postprocess" - -#define DEFAULT_SHARE_DIR INSTALL_PREFIX "/share/openalpr" - -#define DEFAULT_RUNTIME_DATA_DIR DEFAULT_SHARE_DIR "/runtime_data" -#define CONFIG_FILE_TEMPLATE_LOCATION DEFAULT_SHARE_DIR "/config/openalpr.defaults.conf" - -#ifndef DEFAULT_CONFIG_FILE - #define DEFAULT_CONFIG_FILE "/etc/openalpr/openalpr.conf" -#endif - -#define ENV_VARIABLE_CONFIG_FILE "OPENALPR_CONFIG_FILE" - +/* + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] + * + * This file is part of OpenALPR. + * + * OpenALPR is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License + * version 3 as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ +#ifndef OPENALPR_CONSTANTS_H +#define OPENALPR_CONSTANTS_H + + + +#define RUNTIME_DIR "/runtime_data" +#define CONFIG_FILE "/openalpr.conf" +#define KEYPOINTS_DIR "/keypoints" +#define CASCADE_DIR "/region/" +#define POSTPROCESS_DIR "/postprocess" + +#define DEFAULT_SHARE_DIR INSTALL_PREFIX "/share/openalpr" + +#define DEFAULT_RUNTIME_DATA_DIR DEFAULT_SHARE_DIR "/runtime_data" +#define CONFIG_FILE_TEMPLATE_LOCATION DEFAULT_SHARE_DIR "/config/openalpr.defaults.conf" + +#ifndef DEFAULT_CONFIG_FILE + #define DEFAULT_CONFIG_FILE "/etc/openalpr/openalpr.conf" +#endif + +#define ENV_VARIABLE_CONFIG_FILE "OPENALPR_CONFIG_FILE" + #endif // OPENALPR_CONSTANTS_H \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/openalpr b/src/ios/lib/openalpr.framework/openalpr index 748a349..d833116 100644 Binary files a/src/ios/lib/openalpr.framework/openalpr and b/src/ios/lib/openalpr.framework/openalpr differ diff --git a/src/ios/lib/openalpr.framework/runtime_data/cameras.yaml b/src/ios/lib/openalpr.framework/runtime_data/cameras.yaml index 69bc22a..1991980 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/cameras.yaml +++ b/src/ios/lib/openalpr.framework/runtime_data/cameras.yaml @@ -1,233 +1,235 @@ ---- -version: 1 -manufacturers: - A-Linking: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi" - Airlink: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" - Airlive: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.mjpg" - - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" - Airwave: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/pusher.cgi" - Arecont: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg?res=full&x0=0&y0=0&x1=100%&y1=100%&quality=12&doublescan=0&fps=15&ver=HTTP/1.1" - - "http://[username]:[password]@[ip_address]/image?res=half&x0=0&y0=0&x1=1600&y1=1200&quality=15&doublescan=0" - Avigilon: - mjpeg: - - "http://[username]:[password]@[ip_address]/media/still.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/defaultPrimary?streamType=u" - Aviosys: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi" - - "http://[username]:[password]@[ip_address]/cgi-bin/Stream?Video?Authorization=" - Axis: - mjpeg: - - "http://[username]:[password]@[ip_address]/axis-cgi/mjpg/video.cgi?fps=15" - h264: - - "rtsp://[username]:[password]@[ip_address]/axis-media/media.amp" - - "rtsp://[username]:[password]@[ip_address]/mpeg4/media.amp" - Bosch: - mjpeg: - - "http://[username]:[password]@[ip_address]/rtsp_tunnel?h26x=4&line=1&inst=2" - h264: - - "rtsp://[username]:[password]@[ip_address]/rtsp_tunnel" - Bowya: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.cgi" - Canon: - mjpeg: - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot?frame_count=no_limit" - - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetStillImage" - Cisco: - h264: - - "rtsp://[username]:[password]@[ip_address]/" - Convision: - mjpeg: - - "http://[username]:[password]@[ip_address]/fullsize.push?camera=1&sleep=15" - CNB: - h264: - - "rtsp://[username]:[password]@[ip_address]/" - D-Link: - mjpeg: - - "http://[username]:[password]@[ip_address]/video/mjpg.cgi" - - "http://[username]:[password]@[ip_address]/video.cgi" - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - - "http://[username]:[password]@[ip_address]/IMAGE.jpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.vam" - - "http://[username]:[password]@[ip_address]/_gCVimage.jpg" - Digicom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Easyn: - mjpeg: - - "http://[username]:[password]@[ip_address]/videostream.cgi?user=username&pwd=password" - Edimax: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" - - "http://[username]:[password]@[ip_address]/snapshot.cgi" - Ego: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Foscam: - mjpeg: - - "http://[username]:[password]@[ip_address]/videostream.cgi" - - "http://[username]:[password]@[ip_address]/snapshot.cgi" - Fulicom: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Gadspot: - mjpeg: - - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" - - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" - Goscam: - mjpeg: - - "http://[ip_address]/cgi-bin/Stream?Video?Acc=[username]?Pwd=[password]?webcamPWD=RootCookies00000" - Hamlet: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Hikvision: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg?cam=1&quality=3&size=2" - h264: - - "rtsp://[username]:[password]@[ip_address]/h264/ch1/sub/" - - "rtsp://[username]:[password]@[ip_address]:554/Streaming/Channels/1" - - "rtsp://[username]:[password]@[ip_address]:554/ch0_0.h264" - IQeye: - mjpeg: - - "http://[username]:[password]@[ip_address]/now.jpg?snap=spush" - h264: - - "rtsp://[username]:[password]@[ip_address]/stream1" - - "rtsp://[username]:[password]@[ip_address]/now.mp4&res=high" - Intellinet: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - JVC: - mjpeg: - - "http://[username]:[password]@[ip_address]/api/video?encode=jpeg&framerate=15&boundary=on" - Kingnow: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Linksys: - mjpeg: - - "http://[username]:[password]@[ip_address]/img/video.mjpeg" - - "http://[username]:[password]@[ip_address]/img/mjpeg.cgi" - - "http://[username]:[password]@[ip_address]/img/snapshot.cgi?size=2" - - "http://[username]:[password]@[ip_address]/adm/file.cgi?h_videotype=mjpeg&todo=save" - Linudix: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/nph-update_4ch.cgi?ch=1" - Lumenera: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/nph-video" - Lumens: - h264: - - "rtsp://[username]:[password]@[ip_address]:8557/h264" - Marmitek: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - Mobotix: - mjpeg: - - "http://[username]:[password]@[ip_address]/record/current.jpg" - - "http://[username]:[password]@[ip_address]/control/faststream.jpg?stream=full" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=1.0 (1 fps)" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=3.0 (1 fps)" - - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=0 (max frame rate)" - Moxa: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - PLANET: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - Panasonic: - mjpeg: - - "http://[username]:[password]@[ip_address]/nphMotionJpeg?Resolution=640x480&Quality=Clarity" - - "http://[username]:[password]@[ip_address]/cgi-bin/nphContinuousServerPush" - - "http://[username]:[password]@[ip_address]/SnapshotJPEG?mode=Refresh" - - "http://[username]:[password]@[ip_address]/cgi-bin/camera" - h264: - - "rtsp://[username]:[password]@[ip_address]/MediaInput/h264/stream_1" - Pixord: - mjpeg: - - "http://[username]:[password]@[ip_address]/Getimage.cgi" - - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=full" - - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=qsif" - Qnap: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" - Samsung_SNB: - mjpeg: - - "http://[username]:[password]@[ip_address]/video?submenu=mjpg" - - "http://[username]:[password]@[ip_address]/video?submenu=jpg" - Sanyo: - mjpeg: - - "http://[username]:[password]@[ip_address]/liveimg.cgi?serverpush=1" - Sharkx: - mjpeg: - - "http://[username]:[password]@[ip_address]/stream.jpg" - Shenzen_Sunsky: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Skyway_Security: - mjpeg: - - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" - - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" - Sony: - mjpeg: - - "http://[username]:[password]@[ip_address]/image" - - "http://[username]:[password]@[ip_address]/image?speed=0" - - "http://[username]:[password]@[ip_address]/oneshotimage.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/media/video1" - Surecom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Swann: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" - TP-Link: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" - - "http://[username]:[password]@[ip_address]/video.mjpg" - Topcom: - mjpeg: - - "http://[username]:[password]@[ip_address]/mjpeg.cgi" - Toshiba: - mjpeg: - - "http://[username]:[password]@[ip_address]/__live.jpg?&&&" - - "http://[username]:[password]@[ip_address]getstream.cgi?10&10&&&10&0&0&0&0" - Trendnet: - mjpeg: - - "http://[username]:[password]@[ip_address]/goform/video" - - "http://[username]:[password]@[ip_address]/goform/video2" - - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpg.cgi" - - "http://[username]:[password]@[ip_address]/GetData.cgi" - - "http://[username]:[password]@[ip_address]/image.jpg" - Vilar: - mjpeg: - - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" - Vivotek: - mjpeg: - - "http://[username]:[password]@[ip_address]/video.mjpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" - - "http://[username]:[password]@[ip_address]/cgi-bin/viewer/video.jpg" - h264: - - "rtsp://[username]:[password]@[ip_address]/live.sdp" - Y-Cam: - mjpeg: - - "http://[username]:[password]@[ip_address]/stream.jpg" - Zavio: - mjpeg: - - "http://[username]:[password]@[ip_address]/jpg/image.jpg" +--- +version: 1 +manufacturers: + A-Linking: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi" + Airlink: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" + Airlive: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.mjpg" + - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" + Airwave: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/pusher.cgi" + Arecont: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg?res=full&x0=0&y0=0&x1=100%&y1=100%&quality=12&doublescan=0&fps=15&ver=HTTP/1.1" + - "http://[username]:[password]@[ip_address]/image?res=half&x0=0&y0=0&x1=1600&y1=1200&quality=15&doublescan=0" + Avigilon: + mjpeg: + - "http://[username]:[password]@[ip_address]/media/still.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/defaultPrimary?streamType=u" + Aviosys: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi" + - "http://[username]:[password]@[ip_address]/cgi-bin/Stream?Video?Authorization=" + Axis: + mjpeg: + - "http://[username]:[password]@[ip_address]/axis-cgi/mjpg/video.cgi?fps=15" + h264: + - "rtsp://[username]:[password]@[ip_address]/axis-media/media.amp" + - "rtsp://[username]:[password]@[ip_address]/mpeg4/media.amp" + Bosch: + mjpeg: + - "http://[username]:[password]@[ip_address]/rtsp_tunnel?h26x=4&line=1&inst=2" + h264: + - "rtsp://[username]:[password]@[ip_address]/rtsp_tunnel" + Bowya: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.cgi" + Canon: + mjpeg: + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetOneShot?frame_count=no_limit" + - "http://[username]:[password]@[ip_address]/-wvhttp-01-/GetStillImage" + Cisco: + h264: + - "rtsp://[username]:[password]@[ip_address]/" + Convision: + mjpeg: + - "http://[username]:[password]@[ip_address]/fullsize.push?camera=1&sleep=15" + CNB: + h264: + - "rtsp://[username]:[password]@[ip_address]/" + D-Link: + mjpeg: + - "http://[username]:[password]@[ip_address]/video/mjpg.cgi" + - "http://[username]:[password]@[ip_address]/video.cgi" + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + - "http://[username]:[password]@[ip_address]/IMAGE.jpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.vam" + - "http://[username]:[password]@[ip_address]/_gCVimage.jpg" + Digicom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Easyn: + mjpeg: + - "http://[username]:[password]@[ip_address]/videostream.cgi?user=username&pwd=password" + Edimax: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + - "http://[username]:[password]@[ip_address]/mjpg/video.mjpg" + - "http://[username]:[password]@[ip_address]/snapshot.cgi" + Ego: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Foscam: + mjpeg: + - "http://[username]:[password]@[ip_address]/videostream.cgi" + - "http://[username]:[password]@[ip_address]/snapshot.cgi" + Fulicom: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Gadspot: + mjpeg: + - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" + - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" + Goscam: + mjpeg: + - "http://[ip_address]/cgi-bin/Stream?Video?Acc=[username]?Pwd=[password]?webcamPWD=RootCookies00000" + Hamlet: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Hikvision: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg?cam=1&quality=3&size=2" + h264: + - "rtsp://[username]:[password]@[ip_address]/h264/ch1/sub/" + - "rtsp://[username]:[password]@[ip_address]:554/Streaming/Channels/1" + - "rtsp://[username]:[password]@[ip_address]:554/ch0_0.h264" + IQeye: + mjpeg: + - "http://[username]:[password]@[ip_address]/now.jpg?snap=spush" + h264: + - "rtsp://[username]:[password]@[ip_address]/stream1" + - "rtsp://[username]:[password]@[ip_address]/now.mp4&res=high" + Intellinet: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + JVC: + mjpeg: + - "http://[username]:[password]@[ip_address]/api/video?encode=jpeg&framerate=15&boundary=on" + Kingnow: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Linksys: + mjpeg: + - "http://[username]:[password]@[ip_address]/img/video.mjpeg" + - "http://[username]:[password]@[ip_address]/img/mjpeg.cgi" + - "http://[username]:[password]@[ip_address]/img/snapshot.cgi?size=2" + - "http://[username]:[password]@[ip_address]/adm/file.cgi?h_videotype=mjpeg&todo=save" + Linudix: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/nph-update_4ch.cgi?ch=1" + Lumenera: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/nph-video" + Lumens: + h264: + - "rtsp://[username]:[password]@[ip_address]:8557/h264" + Marmitek: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + Mobotix: + mjpeg: + - "http://[username]:[password]@[ip_address]/record/current.jpg" + - "http://[username]:[password]@[ip_address]/control/faststream.jpg?stream=full" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=1.0 (1 fps)" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=3.0 (1 fps)" + - "http://[username]:[password]@[ip_address]/faststream.jpg?stream=full&fps=0 (max frame rate)" + Moxa: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + PLANET: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + Panasonic: + mjpeg: + - "http://[username]:[password]@[ip_address]/nphMotionJpeg?Resolution=640x480&Quality=Clarity" + - "http://[username]:[password]@[ip_address]/cgi-bin/nphContinuousServerPush" + - "http://[username]:[password]@[ip_address]/SnapshotJPEG?mode=Refresh" + - "http://[username]:[password]@[ip_address]/cgi-bin/camera" + h264: + - "rtsp://[username]:[password]@[ip_address]/MediaInput/h264/stream_1" + Pixord: + mjpeg: + - "http://[username]:[password]@[ip_address]/Getimage.cgi" + - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=full" + - "http://[username]:[password]@[ip_address]/Getimage?camera=1&fmt=qsif" + Qnap: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpeg.cgi" + Samsung: + mjpeg: + - "http://[username]:[password]@[ip_address]/video?submenu=mjpg" + - "http://[username]:[password]@[ip_address]/video?submenu=jpg" + h264: + - "rtsp://[ip_address]/profile1/media.smp" + Sanyo: + mjpeg: + - "http://[username]:[password]@[ip_address]/liveimg.cgi?serverpush=1" + Sharkx: + mjpeg: + - "http://[username]:[password]@[ip_address]/stream.jpg" + Shenzen_Sunsky: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Skyway_Security: + mjpeg: + - "http://[username]:[password]@[ip_address]/GetData.cgi?Status=0" + - "http://[username]:[password]@[ip_address]/Jpeg/CamImg.jpg" + Sony: + mjpeg: + - "http://[username]:[password]@[ip_address]/image" + - "http://[username]:[password]@[ip_address]/image?speed=0" + - "http://[username]:[password]@[ip_address]/oneshotimage.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/media/video1" + Surecom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Swann: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi/jpg/image.cgi" + TP-Link: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" + - "http://[username]:[password]@[ip_address]/video.mjpg" + Topcom: + mjpeg: + - "http://[username]:[password]@[ip_address]/mjpeg.cgi" + Toshiba: + mjpeg: + - "http://[username]:[password]@[ip_address]/__live.jpg?&&&" + - "http://[username]:[password]@[ip_address]getstream.cgi?10&10&&&10&0&0&0&0" + Trendnet: + mjpeg: + - "http://[username]:[password]@[ip_address]/goform/video" + - "http://[username]:[password]@[ip_address]/goform/video2" + - "http://[username]:[password]@[ip_address]/cgi/mjpg/mjpg.cgi" + - "http://[username]:[password]@[ip_address]/GetData.cgi" + - "http://[username]:[password]@[ip_address]/image.jpg" + Vilar: + mjpeg: + - "http://[username]:[password]@[ip_address]/cgi-bin/sf.cgi" + Vivotek: + mjpeg: + - "http://[username]:[password]@[ip_address]/video.mjpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/video.jpg" + - "http://[username]:[password]@[ip_address]/cgi-bin/viewer/video.jpg" + h264: + - "rtsp://[username]:[password]@[ip_address]/live.sdp" + Y-Cam: + mjpeg: + - "http://[username]:[password]@[ip_address]/stream.jpg" + Zavio: + mjpeg: + - "http://[username]:[password]@[ip_address]/jpg/image.jpg" diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/au.conf b/src/ios/lib/openalpr.framework/runtime_data/config/au.conf index 9b15467..db6c071 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/au.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/au.conf @@ -1,46 +1,46 @@ -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 1.6; - -plate_width_mm = 372 -plate_height_mm = 135 - -multiline = 0 - -char_height_mm = 82 -char_width_mm = 45 -char_whitespace_top_mm = 18 -char_whitespace_bot_mm = 30 - -template_max_width_px = 165 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 22 -plateline_sensitivity_horizontal = 50 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 85 -min_plate_size_height_px = 28 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -ocr_language = lau - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 1.6; + +plate_width_mm = 372 +plate_height_mm = 135 + +multiline = 0 + +char_height_mm = 82 +char_width_mm = 45 +char_whitespace_top_mm = 18 +char_whitespace_bot_mm = 30 + +template_max_width_px = 165 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 22 +plateline_sensitivity_horizontal = 50 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 85 +min_plate_size_height_px = 28 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +ocr_language = lau + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/auwide.conf b/src/ios/lib/openalpr.framework/runtime_data/config/auwide.conf index 93314c5..4f7c30d 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/auwide.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/auwide.conf @@ -1,48 +1,48 @@ - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 -min_plate_size_height_px = 20 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lau - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 +min_plate_size_height_px = 20 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lau + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/br.conf b/src/ios/lib/openalpr.framework/runtime_data/config/br.conf index ef1a5d4..0e1c42e 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/br.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/br.conf @@ -1,46 +1,46 @@ -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.4 -segmentation_min_box_width_px = 2 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 400 -plate_height_mm = 130 - -multiline = 0 - -char_height_mm = 63 -char_width_mm = 54 -char_whitespace_top_mm = 20 -char_whitespace_bot_mm = 10 - -template_max_width_px = 150 -template_max_height_px = 49 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 22 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 7 - -ocr_language = lbr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto \ No newline at end of file +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.4 +segmentation_min_box_width_px = 2 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 400 +plate_height_mm = 130 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 50 +char_whitespace_top_mm = 45 +char_whitespace_bot_mm = 20 + +template_max_width_px = 150 +template_max_height_px = 49 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 21 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 7 + +ocr_language = lbr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/eu.conf b/src/ios/lib/openalpr.framework/runtime_data/config/eu.conf index c45e64d..1f8e693 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/eu.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/eu.conf @@ -1,48 +1,48 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -ocr_language = leu - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +ocr_language = leu + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/fr.conf b/src/ios/lib/openalpr.framework/runtime_data/config/fr.conf index a4b52bc..62cc679 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/fr.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/fr.conf @@ -1,50 +1,50 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lfr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lfr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/gb.conf b/src/ios/lib/openalpr.framework/runtime_data/config/gb.conf index 99b1b5e..460a10d 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/gb.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/gb.conf @@ -1,50 +1,50 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.2 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 53 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 8 - -detector_file = eu.xml - -ocr_language = lgb - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.2 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 53 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 8 + +detector_file = eu.xml + +ocr_language = lgb + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/kr.conf b/src/ios/lib/openalpr.framework/runtime_data/config/kr.conf index dd45778..eff5f1d 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/kr.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/kr.conf @@ -1,48 +1,48 @@ - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.15 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.2 -segmentation_max_segment_width_percent_vs_average = 2.0 - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 80 -char_width_mm = 43 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 184 -template_max_height_px = 46 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 18 -plateline_sensitivity_horizontal = 55 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 -min_plate_size_height_px = 20 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 7 - -detector_file = eu.xml - -ocr_language = lkr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = \pL -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.15 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.2 +segmentation_max_segment_width_percent_vs_average = 2.0 + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 80 +char_width_mm = 43 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 184 +template_max_height_px = 46 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 18 +plateline_sensitivity_horizontal = 55 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 +min_plate_size_height_px = 20 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 7 + +detector_file = eu.xml + +ocr_language = lkr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = \pL +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/kr2.conf b/src/ios/lib/openalpr.framework/runtime_data/config/kr2.conf index c1900fc..51e7241 100755 --- a/src/ios/lib/openalpr.framework/runtime_data/config/kr2.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/kr2.conf @@ -1,51 +1,51 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_speckle_height_percent = 0.15 -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.2 ;0.5; -segmentation_max_segment_width_percent_vs_average = 1.65 ;1.35; - -plate_width_mm = 335 -plate_height_mm = 170 - -multiline = 1 - -char_height_mm = 48 -char_width_mm = 38 - -char_height_mm = 92 -char_width_mm = 62 - -char_whitespace_top_mm = 5 -char_whitespace_bot_mm = 5 - -char_whitespace_between_lines_mm = 13 - -template_max_width_px = 258 -template_max_height_px = 131 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 55 ;25 -plateline_sensitivity_horizontal = 85 ;45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 100 ;70 -min_plate_size_height_px = 50 ;35 - -; Results with fewer characters will be discarded -postprocess_min_characters = 7 -postprocess_max_characters = 9 - -ocr_language = lkr - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = \pL -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_speckle_height_percent = 0.15 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.2 ;0.5; +segmentation_max_segment_width_percent_vs_average = 1.65 ;1.35; + +plate_width_mm = 335 +plate_height_mm = 170 + +multiline = 1 + +char_height_mm = 48 +char_width_mm = 38 + +char_height_mm = 92 +char_width_mm = 62 + +char_whitespace_top_mm = 5 +char_whitespace_bot_mm = 5 + +char_whitespace_between_lines_mm = 13 + +template_max_width_px = 258 +template_max_height_px = 131 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 55 ;25 +plateline_sensitivity_horizontal = 85 ;45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 100 ;70 +min_plate_size_height_px = 50 ;35 + +; Results with fewer characters will be discarded +postprocess_min_characters = 7 +postprocess_max_characters = 9 + +ocr_language = lkr + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = \pL +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = always \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/mx.conf b/src/ios/lib/openalpr.framework/runtime_data/config/mx.conf index 0293529..c0dc035 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/mx.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/mx.conf @@ -1,47 +1,47 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 4 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.5; -segmentation_max_segment_width_percent_vs_average = 1.35; - -plate_width_mm = 304.8 -plate_height_mm = 152.4 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 35 -char_whitespace_top_mm = 38 -char_whitespace_bot_mm = 38 - -template_max_width_px = 120 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 70 -min_plate_size_height_px = 35 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 5 -postprocess_max_characters = 7 - -detector_file = us.xml - -ocr_language = lus - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 4 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.5; +segmentation_max_segment_width_percent_vs_average = 1.35; + +plate_width_mm = 304.8 +plate_height_mm = 152.4 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 35 +char_whitespace_top_mm = 38 +char_whitespace_bot_mm = 38 + +template_max_width_px = 120 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 70 +min_plate_size_height_px = 35 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 5 +postprocess_max_characters = 7 + +detector_file = us.xml + +ocr_language = lus + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/sg.conf b/src/ios/lib/openalpr.framework/runtime_data/config/sg.conf index 7bc24cf..4feebe8 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/sg.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/sg.conf @@ -1,45 +1,45 @@ -; One-line European style plates - -; 35-50; 45-60, 55-70, 65-80, 75-90 -char_analysis_min_pct = 0.35 -char_analysis_height_range = 0.15 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 5 - -segmentation_min_box_width_px = 5 -segmentation_min_charheight_percent = 0.4; -segmentation_max_segment_width_percent_vs_average = 2.0; - -plate_width_mm = 520 -plate_height_mm = 110 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 52 -char_whitespace_top_mm = 10 -char_whitespace_bot_mm = 10 - -template_max_width_px = 226 -template_max_height_px = 48 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 70 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 65 -min_plate_size_height_px = 18 - -detector_file = eu.xml - -ocr_language = lsg - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-HJ-NP-Z] -postprocess_regex_numbers = [0-9] - - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto -invert = auto +; One-line European style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.35 +char_analysis_height_range = 0.15 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 5 + +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.4; +segmentation_max_segment_width_percent_vs_average = 2.0; + +plate_width_mm = 520 +plate_height_mm = 110 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 52 +char_whitespace_top_mm = 10 +char_whitespace_bot_mm = 10 + +template_max_width_px = 226 +template_max_height_px = 48 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 70 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 65 +min_plate_size_height_px = 18 + +detector_file = eu.xml + +ocr_language = lsg + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-HJ-NP-Z] +postprocess_regex_numbers = [0-9] + + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/us.conf b/src/ios/lib/openalpr.framework/runtime_data/config/us.conf index 437b097..19add48 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/config/us.conf +++ b/src/ios/lib/openalpr.framework/runtime_data/config/us.conf @@ -1,45 +1,45 @@ -; 30-50, 40-60, 50-70, 60-80 -char_analysis_min_pct = 0.30 -char_analysis_height_range = 0.20 -char_analysis_height_step_size = 0.10 -char_analysis_height_num_steps = 4 - -segmentation_min_speckle_height_percent = 0.3 -segmentation_min_box_width_px = 4 -segmentation_min_charheight_percent = 0.5; -segmentation_max_segment_width_percent_vs_average = 1.35; - -plate_width_mm = 304.8 -plate_height_mm = 152.4 - -multiline = 0 - -char_height_mm = 70 -char_width_mm = 35 -char_whitespace_top_mm = 38 -char_whitespace_bot_mm = 38 - -template_max_width_px = 120 -template_max_height_px = 60 - -; Higher sensitivity means less lines -plateline_sensitivity_vertical = 25 -plateline_sensitivity_horizontal = 45 - -; Regions smaller than this will be disqualified -min_plate_size_width_px = 70 -min_plate_size_height_px = 35 - -; Results with fewer or more characters will be discarded -postprocess_min_characters = 4 -postprocess_max_characters = 8 - -ocr_language = lus - -; Override for postprocess letters/numbers regex. -postprocess_regex_letters = [A-Z] -postprocess_regex_numbers = [0-9] - -; Whether the plate is always dark letters on light background, light letters on dark background, or both -; value can be either always, never, or auto +; 30-50, 40-60, 50-70, 60-80 +char_analysis_min_pct = 0.30 +char_analysis_height_range = 0.20 +char_analysis_height_step_size = 0.10 +char_analysis_height_num_steps = 4 + +segmentation_min_speckle_height_percent = 0.3 +segmentation_min_box_width_px = 4 +segmentation_min_charheight_percent = 0.5; +segmentation_max_segment_width_percent_vs_average = 1.35; + +plate_width_mm = 304.8 +plate_height_mm = 152.4 + +multiline = 0 + +char_height_mm = 70 +char_width_mm = 35 +char_whitespace_top_mm = 38 +char_whitespace_bot_mm = 38 + +template_max_width_px = 120 +template_max_height_px = 60 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 25 +plateline_sensitivity_horizontal = 45 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 70 +min_plate_size_height_px = 35 + +; Results with fewer or more characters will be discarded +postprocess_min_characters = 4 +postprocess_max_characters = 8 + +ocr_language = lus + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto invert = auto \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/config/vn2.conf b/src/ios/lib/openalpr.framework/runtime_data/config/vn2.conf new file mode 100644 index 0000000..222e7b7 --- /dev/null +++ b/src/ios/lib/openalpr.framework/runtime_data/config/vn2.conf @@ -0,0 +1,53 @@ +; Two-line Vietnam style plates + +; 35-50; 45-60, 55-70, 65-80, 75-90 +char_analysis_min_pct = 0.05 +char_analysis_height_range = 0.25 +char_analysis_height_step_size = 0.05 +char_analysis_height_num_steps = 6 + +;segmentation_min_speckle_height_percent = 0.15 +segmentation_min_box_width_px = 5 +segmentation_min_charheight_percent = 0.1 +segmentation_max_segment_width_percent_vs_average = 2.0 + +plate_width_mm = 287 +plate_height_mm = 209 + +multiline = 1 + +char_height_mm = 80 +char_width_mm = 40 +char_height_mm = 80 +char_width_mm = 40 + + +char_whitespace_top_mm = 13 +char_whitespace_bot_mm = 13 + +char_whitespace_between_lines_mm = 13 + +template_max_width_px = 287 +template_max_height_px = 209 + +; Higher sensitivity means less lines +plateline_sensitivity_vertical = 100 +plateline_sensitivity_horizontal = 80 + +; Regions smaller than this will be disqualified +min_plate_size_width_px = 60 +min_plate_size_height_px = 45 + +detector_file = vn2.xml + +ocr_language = leu + +; Override for postprocess letters/numbers regex. +postprocess_regex_letters = [A-Z] +postprocess_regex_numbers = [0-9] + +; Whether the plate is always dark letters on light background, light letters on dark background, or both +; value can be either always, never, or auto +invert = auto + + diff --git a/src/ios/lib/openalpr.framework/runtime_data/ocr/tessdata/lbr.traineddata b/src/ios/lib/openalpr.framework/runtime_data/ocr/tessdata/lbr.traineddata index dd82f9d..f9b67b1 100644 Binary files a/src/ios/lib/openalpr.framework/runtime_data/ocr/tessdata/lbr.traineddata and b/src/ios/lib/openalpr.framework/runtime_data/ocr/tessdata/lbr.traineddata differ diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/au.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/au.patterns index 6d5f2bf..c499423 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/au.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/au.patterns @@ -1,14 +1,14 @@ -act [Y]@@##@ -act [T]##### -nsw @@##@@ -nsw @@@##@ -nsw [T][AR]##@@ -nt @@##@@ -nt [T]@#### -qld ###@@@ -sa [S]###@@@ -tas @##@@ -vic @@@### -vic #@@#@@ -vic @##### +act [Y]@@##@ +act [T]##### +nsw @@##@@ +nsw @@@##@ +nsw [T][AR]##@@ +nt @@##@@ +nt [T]@#### +qld ###@@@ +sa [S]###@@@ +tas @##@@ +vic @@@### +vic #@@#@@ +vic @##### wa [1]@@@### \ No newline at end of file diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/br.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/br.patterns index 0fdfba3..92e9463 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/br.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/br.patterns @@ -1 +1 @@ -br @@@#### +br @@@#### diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/eu.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/eu.patterns index e88949b..eaa2a9c 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/eu.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/eu.patterns @@ -1,199 +1,198 @@ -ad @#### - -al @@###@@ - -am ###@@### -am ##@@### -am ###@@## -am ##@@## - -at @@??? -at @@???? -at @@????? -at @@?????? -at @??? -at @???? -at @????? -at @?????? - -az ##@@### - -ba [AEJKMOT]##[AEJKMOT]### -ba [T][A]###### -ba [T][T]###### -ba ######[AEJKT] - -be #@@@### -be ###@@@ - -bg @@####@@ -bg @####@@ - -by ####@@# - -ch @@###### -ch [APM]###### - -cy @@@### - -cz #@##### -cz #@@#### - -de @@@@#### -de @@@@### -de @@@@## -de @@@@# -de @@@#### -de @@@### -de @@@## -de @@@# -de @@@@####[HE] -de @@@@###[HE] -de @@@@##[HE] -de @@@####[HE] -de @@@###[HE] -de @@@##[HE] -de @@@#[HE] - -dk @@##### - -ee ###@@@ - -es ####@@@ -es @####@@@ - -fi @@@### - -fr @@###@@ - -gb @@##@@@ - -ge @@###@@ - -gi [G]####@ - -gr @@@#### - -hr @@###@@ -hr @@####@@ -hr @@###@ -hr @@####@ - -hu @@@### - -ie ##[12][CDGLTW]###### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]###### -ie ##[12][CDGLTW]##### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]##### -ie ##[12][CDGLTW]#### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]#### -ie ##[12][CDGLTW]### -ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]### -ie ##[CDGLTW]###### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]###### -ie ##[CDGLTW]##### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]##### -ie ##[CDGLTW]#### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]#### -ie ##[CDGLTW]### -ie ##[CDGKLMORSTW][DEHKLMNOSWXY]### - -is @@@## - -it @@###@@ - -kz ###@@@ - -li @@##### -li @@#### -li @@### - -lt @@@### - -lu @@#### - -lv @@#### -lv @@### -lv @#### -lv @### - -mc ???? - -md @@@@### -md [CK]@@### -md @@@@## -md [CK]@@## -md @@@@# -md [CK]@@# - -me @@@@### - -mk @@####@@ -mt @@@### - -nl @@#### -nl ####@@ -nl ##@@## -nl @@##@@ -nl @@@@## -nl ##@@@@ -nl ##@@@# -nl #@@@## -nl @@###@ -nl @###@@ -nl @@@##@ -nl @##@@@ -nl #@@### -nl ###@@# - -no @@##### -no ##### - -pl @@##### -pl @@####@ -pl @@###@@ -pl @@#@### -pl @@#@@## -pl @@@@### -pl @@@##@@ -pl @@@#@## -pl @@@##@# -pl @@@#@@# -pl @@@@@## -pl @@@##### -pl @@@####@ -pl @@@###@@ - -pt @@#### -pt ####@@ -pt ##@@## - -ro @@###@@@ -ro @@##@@@ -ro @###@@@ -ro @##@@@ - -rs @@###@@ - -ru @###@@## -ru @###@@### - -se @@@### - -si @@@@### - -sk @@###@@ - -sm @#### -sm @### - -tr ##@#### -tr ##@##### -tr ##@@### -tr ##@@#### -tr ##@@@## - -ua @@####@@ - -va [S][C][V]##### -va [C][V]##### +ad @#### + +al @@###@@ + +am ###@@### +am ##@@### +am ###@@## +am ##@@## + +at @@??? +at @@???? +at @@????? +at @@?????? +at @??? +at @???? +at @????? +at @?????? + +az ##@@### + +ba [AEJKMOT]##[AEJKMOT]### +ba [T][A]###### +ba [T][T]###### +ba ######[AEJKT] + +be #@@@### +be ###@@@ + +bg @@####@@ +bg @####@@ + +by ####@@# + +ch @@###### +ch [APM]###### + +cy @@@### + +cz #@##### +cz #@@#### + +de @@@@#### +de @@@@### +de @@@@## +de @@@@# +de @@@#### +de @@@### +de @@@## +de @@@# +de @@@@####[HE] +de @@@@###[HE] +de @@@@##[HE] +de @@@####[HE] +de @@@###[HE] +de @@@##[HE] +de @@@#[HE] + +dk @@##### + +ee ###@@@ + +es ####@@@ +es @####@@@ + +fi @@@### + +fr @@###@@ + +gb @@##@@@ + +ge @@###@@ + +gi [G]####@ + +gr @@@#### + +hr @@###@@ +hr @@####@@ +hr @@###@ +hr @@####@ + +hu @@@### + +ie ##[12][CDGLTW]###### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]###### +ie ##[12][CDGLTW]##### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]##### +ie ##[12][CDGLTW]#### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]#### +ie ##[12][CDGLTW]### +ie ##[12][CDGKLMORSTW][DEHKLMNOSWXY]### +ie ##[CDGLTW]###### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]###### +ie ##[CDGLTW]##### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]##### +ie ##[CDGLTW]#### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]#### +ie ##[CDGLTW]### +ie ##[CDGKLMORSTW][DEHKLMNOSWXY]### + +is @@@## + +it @@###@@ + +kz ###@@@ + +li @@##### +li @@#### +li @@### + +lt @@@### + +lu @@#### + +lv @@#### +lv @@### +lv @#### +lv @### + +mc ???? + +md @@@@### +md [CK]@@### +md @@@@## +md [CK]@@## +md @@@@# +md [CK]@@# + +me @@@@### + +mk @@####@@ +mt @@@### + +nl @@#### +nl ####@@ +nl ##@@## +nl @@##@@ +nl @@@@## +nl ##@@@@ +nl ##@@@# +nl #@@@## +nl @@###@ +nl @###@@ +nl @@@##@ +nl @##@@@ +nl #@@### +nl ###@@# + +no @@##### +no ##### + +pl @@##### +pl @@####@ +pl @@###@@ +pl @@#@### +pl @@#@@## +pl @@@@### +pl @@@##@@ +pl @@@#@## +pl @@@##@# +pl @@@#@@# +pl @@@@@## +pl @@@##### +pl @@@####@ +pl @@@###@@ + +pt @@#### +pt ####@@ +pt ##@@## + +ro @@##@@@ +ro [B]###@@@ +ro [B]##@@@ + +rs @@###@@ + +ru @###@@## +ru @###@@### + +se @@@### + +si @@@@### + +sk @@###@@ + +sm @#### +sm @### + +tr ##@#### +tr ##@##### +tr ##@@### +tr ##@@#### +tr ##@@@## + +ua @@####@@ + +va [S][C][V]##### +va [C][V]##### diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/gb.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/gb.patterns index 7b2214d..0f1dd4d 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/gb.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/gb.patterns @@ -1 +1 @@ -gb @@##@@@ +gb @@##@@@ diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/mx.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/mx.patterns index d5b4401..5b0091e 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/mx.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/mx.patterns @@ -1,5 +1,5 @@ -mx @@@#### -mx @##@@@ -mx @@@###@ -mx @@##### -mx ####@@ +mx @@@#### +mx @##@@@ +mx @@@###@ +mx @@##### +mx ####@@ diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/readme.txt b/src/ios/lib/openalpr.framework/runtime_data/postprocess/readme.txt index 68676d8..92013a2 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/readme.txt +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/readme.txt @@ -1,7 +1,7 @@ -Each line is a possible lp pattern organized by region/state and then likelihood. - -The parser goes through each line and tries to match -@ = any letter -# = any number -? = a skip position (can be anything, but remove it if encountered) -[A-FGZ] is just a single char position with specific letter requirements. In this example, the regex defines characters ABCDEFGZ +Each line is a possible lp pattern organized by region/state and then likelihood. + +The parser goes through each line and tries to match +@ = any letter +# = any number +? = a skip position (can be anything, but remove it if encountered) +[A-FGZ] is just a single char position with specific letter requirements. In this example, the regex defines characters ABCDEFGZ diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/sg.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/sg.patterns index b9dab71..a4841f6 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/sg.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/sg.patterns @@ -1 +1 @@ -sg @[A-HJ-NP-Z][A-HJ-NP-Z]####[A-EGHJ-MPR-UX-Z] +sg @[A-HJ-NP-Z][A-HJ-NP-Z]####[A-EGHJ-MPR-UX-Z] diff --git a/src/ios/lib/openalpr.framework/runtime_data/postprocess/us.patterns b/src/ios/lib/openalpr.framework/runtime_data/postprocess/us.patterns index 5da6e91..0b34a9a 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/postprocess/us.patterns +++ b/src/ios/lib/openalpr.framework/runtime_data/postprocess/us.patterns @@ -1,233 +1,233 @@ -base @@@#### -base @@@### -base ###@@@ -al #@@#### -al ##@@### -al #@##@## -al ##@##@# -al @@##### -al #####@@ -al #@####@ -al ##@###@ -al ##@#@#@ -ak @@@### -as #### -az @@@#### -az ###@@@ -ar ###@@@ -ar @@@### -ca #@@@### -ca #@@@### -ca #@##### -ca #####@# -ca ###@@@ -co ###@@@ -co @@#### -co @@@### -co @@@#### -ct #@@@@# -ct ###@@@ -ct ##### -ct ###### -ct @### -ct @@### -ct @@#### -de ###### -de ##### -de #### -de ### -dc @@#### -dc ###### -fl @@@@## -fl ####[GH]@ -fl ###[H-Y]@@ -fl @###@@ -fl @##@@@ -fl @###@@ -fl @@@@## -fl ####[GH]@ -fl ###[H-Y]@@ -fl @###@@ -fl @##@@@ -fl @###@@ -ga @@@#### -ga ####@@@ -ga ####@@ -ga #####[Q]@ -ga ###@@@ -gu @@#### -gu @@@#### -gu @@@###@ -hi [A-HJKNMPR-Z]@@### -id @###### -id #@##### -id #@@#### -id #@@@### -id [A]#####[T] -id [A]@####[T] -id #[A]####[T] -id #[A]@###[T] -id [BU]#### -id ####[BEFGHIJKLMNPRSTUXYZ] -id ##[S][A][S] -id #@@#[S] -id [J]@### -id #####[BCS] -id ###@[E] -id ##@@[E] -id ##### -il @###### -il ##### -il ###### -il @@#### -il @@@### -il @##### -il ####### -il ####@ -il #####@ -in ###@ -in ###@@ -in ###@@@ -in #### -ia @@@### -ia ###@@@ -ia ####@@ -ks ###@@@ -ks @@@### -ky ###@@@ -la @@@### -me ####@@ -me ###@@ -me ##@@ -me ###@@@ -ms @@@@@# -ms @@@### -ms ##[W]## -md #@@@## -md #[AB]#### -md @@@### -md [A]###### -md ##### -md ###[AB][A-N][A-MY] -md [AB][A-E][A-Y]##@ -md @##### -ma ###@@# -ma #@@### -ma #@@@## -ma ###### -ma ###@@@ -ma ####@@ -ma ##@@## -mi @@@#### -mi #@@@## -mn ###@@@ -mn @@@### -mo @@#@#@ -mo ###@@@ -mo #@@##@ -mt ######[A] -mt #####@ -mt ####@ -ne #@#### -ne #@@### -ne ##@### -ne ##@@## -nv ###@@@ -nv @##### -nv @@#### -nv @@@### -nh ###### -nh ####### -nh @@@### -nj @##@@@ -nj @@@##@ -nj @@###@ -nj @@@#### -nm @@@### -nm ###@@@ -nm @@@### -nm @@### -nm @### -ny @@@#### -ny @@@### -ny #@@### -ny @#@### -ny @###@@ -ny @@###@ -nc @@@#### -nd @@@### -mp @@@### -oh @@@#### -oh @@##@@ -ok ###@@@ -or ###@@@ -or @@@### -pa @@@#### -pr @@@### -ri @@### -ri ###### -ri ##### -sc @@@### -sc ####@@ -sd #@@### -sd ##@### -sd ##@@## -sd ##@@@# -tn ###@@@ -tx @@@#### -tx @##@@@ -tx ###@@@ -tx @@@### -tx @@#@### -ut @###@@ -ut ###@# -ut ###@@@ -ut @@@### -vt @@@### -vt ###@### -vt ##[B]## -vi @@@### -va @@@#### -va [J-Z]@@#### -va @@@### -va @@#### -va ####@@ -va #####[JY] -wa ###@@@ -wa @@@#### -wi ###@@@ -wi @@@### -wv [1-9DON]@@### -wv [1-9DON]@#### -wy ###### -wy ####### -wy ##### -wy ####@ -wy ###@@ -wy ##@@@ -ab @@@#### -ab @@@### -bc @@###@ -bc @@#### -bc @@@### -bc ####@@ -bc ###@@@ -mb @@@### -nl @@@### -ns @@@### -nt @@@### -nu [M][L][A]### -nu @@@### -on @@@@### -on @@##### -on [G][V]@@### -on @@@### -on ###@@@ -pe @@### -qc @##@@@ -qc ###@### -qc @@@### -qc ###@@@ -sk ###@@@ -sk @@@### -yt @@@## +base @@@#### +base @@@### +base ###@@@ +al #@@#### +al ##@@### +al #@##@## +al ##@##@# +al @@##### +al #####@@ +al #@####@ +al ##@###@ +al ##@#@#@ +ak @@@### +as #### +az @@@#### +az ###@@@ +ar ###@@@ +ar @@@### +ca #@@@### +ca #@@@### +ca #@##### +ca #####@# +ca ###@@@ +co ###@@@ +co @@#### +co @@@### +co @@@#### +ct #@@@@# +ct ###@@@ +ct ##### +ct ###### +ct @### +ct @@### +ct @@#### +de ###### +de ##### +de #### +de ### +dc @@#### +dc ###### +fl @@@@## +fl ####[GH]@ +fl ###[H-Y]@@ +fl @###@@ +fl @##@@@ +fl @###@@ +fl @@@@## +fl ####[GH]@ +fl ###[H-Y]@@ +fl @###@@ +fl @##@@@ +fl @###@@ +ga @@@#### +ga ####@@@ +ga ####@@ +ga #####[Q]@ +ga ###@@@ +gu @@#### +gu @@@#### +gu @@@###@ +hi [A-HJKNMPR-Z]@@### +id @###### +id #@##### +id #@@#### +id #@@@### +id [A]#####[T] +id [A]@####[T] +id #[A]####[T] +id #[A]@###[T] +id [BU]#### +id ####[BEFGHIJKLMNPRSTUXYZ] +id ##[S][A][S] +id #@@#[S] +id [J]@### +id #####[BCS] +id ###@[E] +id ##@@[E] +id ##### +il @###### +il ##### +il ###### +il @@#### +il @@@### +il @##### +il ####### +il ####@ +il #####@ +in ###@ +in ###@@ +in ###@@@ +in #### +ia @@@### +ia ###@@@ +ia ####@@ +ks ###@@@ +ks @@@### +ky ###@@@ +la @@@### +me ####@@ +me ###@@ +me ##@@ +me ###@@@ +ms @@@@@# +ms @@@### +ms ##[W]## +md #@@@## +md #[AB]#### +md @@@### +md [A]###### +md ##### +md ###[AB][A-N][A-MY] +md [AB][A-E][A-Y]##@ +md @##### +ma ###@@# +ma #@@### +ma #@@@## +ma ###### +ma ###@@@ +ma ####@@ +ma ##@@## +mi @@@#### +mi #@@@## +mn ###@@@ +mn @@@### +mo @@#@#@ +mo ###@@@ +mo #@@##@ +mt ######[A] +mt #####@ +mt ####@ +ne #@#### +ne #@@### +ne ##@### +ne ##@@## +nv ###@@@ +nv @##### +nv @@#### +nv @@@### +nh ###### +nh ####### +nh @@@### +nj @##@@@ +nj @@@##@ +nj @@###@ +nj @@@#### +nm @@@### +nm ###@@@ +nm @@@### +nm @@### +nm @### +ny @@@#### +ny @@@### +ny #@@### +ny @#@### +ny @###@@ +ny @@###@ +nc @@@#### +nd @@@### +mp @@@### +oh @@@#### +oh @@##@@ +ok ###@@@ +or ###@@@ +or @@@### +pa @@@#### +pr @@@### +ri @@### +ri ###### +ri ##### +sc @@@### +sc ####@@ +sd #@@### +sd ##@### +sd ##@@## +sd ##@@@# +tn ###@@@ +tx @@@#### +tx @##@@@ +tx ###@@@ +tx @@@### +tx @@#@### +ut @###@@ +ut ###@# +ut ###@@@ +ut @@@### +vt @@@### +vt ###@### +vt ##[B]## +vi @@@### +va @@@#### +va [J-Z]@@#### +va @@@### +va @@#### +va ####@@ +va #####[JY] +wa ###@@@ +wa @@@#### +wi ###@@@ +wi @@@### +wv [1-9DON]@@### +wv [1-9DON]@#### +wy ###### +wy ####### +wy ##### +wy ####@ +wy ###@@ +wy ##@@@ +ab @@@#### +ab @@@### +bc @@###@ +bc @@#### +bc @@@### +bc ####@@ +bc ###@@@ +mb @@@### +nl @@@### +ns @@@### +nt @@@### +nu [M][L][A]### +nu @@@### +on @@@@### +on @@##### +on [G][V]@@### +on @@@### +on ###@@@ +pe @@### +qc @##@@@ +qc ###@### +qc @@@### +qc ###@@@ +sk ###@@@ +sk @@@### +yt @@@## diff --git a/src/ios/lib/openalpr.framework/runtime_data/region/au.xml b/src/ios/lib/openalpr.framework/runtime_data/region/au.xml index 640ffba..e837c71 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/region/au.xml +++ b/src/ios/lib/openalpr.framework/runtime_data/region/au.xml @@ -1,855 +1,855 @@ - - - - BOOST - LBP - 16 - 44 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 12 - - - <_> - 3 - -8.9822268486022949e-01 - - <_> - - 0 -1 49 -611788592 -573485032 -117253679 1594429461 - -1971287878 -22527862 -1979021157 -1626733427 - - -7.5738126039505005e-01 7.0481771230697632e-01 - <_> - - 0 -1 67 -6294750 -244874989 -2130526208 1938772839 - -148114893 268845060 855894827 1937767359 - - -8.3813470602035522e-01 5.8474522829055786e-01 - <_> - - 0 -1 11 -1677699056 -36618160 403725789 1595490577 - -1207940968 -7794569 -1911899905 -1154826022 - - -6.8870306015014648e-01 6.9729328155517578e-01 - - <_> - 5 - -1.1421134471893311e+00 - - <_> - - 0 -1 57 -1119506 -708121466 -612065092 -743202 -1193508626 - -23197524 -2118161 -2098177 - - -7.4267381429672241e-01 5.3053784370422363e-01 - <_> - - 0 -1 7 -1677572080 -1074181040 506615293 1597720656 - -1640363268 -1077966123 436928508 -1088695875 - - -7.4100035429000854e-01 4.8635581135749817e-01 - <_> - - 0 -1 23 -84414770 583066006 -931127296 575594756 54857728 - 23068739 1263612160 -134220801 - - -6.7841631174087524e-01 5.1256632804870605e-01 - <_> - - 0 -1 44 -787854184 -573318064 789683645 488446228 - -1155351302 -2439010 -1375170676 -552942435 - - -6.5471035242080688e-01 5.3409981727600098e-01 - <_> - - 0 -1 53 -800595898 -621366522 -620510633 -749743337 - -1034952182 -928062974 6801775 1074262595 - - -7.0143872499465942e-01 4.8587721586227417e-01 - - <_> - 5 - -9.6150821447372437e-01 - - <_> - - 0 -1 40 -541371172 -589667 1602442749 -43619 -124991250 - 2008760573 -123154482 -72627255 - - -6.7388784885406494e-01 5.1606619358062744e-01 - <_> - - 0 -1 8 -72646400 -80015225 394858760 -14727777 -1145332839 - -1145335621 992677307 -1077936129 - - -6.5934449434280396e-01 4.8057270050048828e-01 - <_> - - 0 -1 41 -1060918 -12000442 453118984 -549920786 1542418820 - 352678917 1610051308 -2098177 - - -6.0796922445297241e-01 5.1345926523208618e-01 - <_> - - 0 -1 34 -1749417744 1364332732 1493720573 1595610484 - -1700261638 1970278583 1040904142 -74943796 - - -6.7741453647613525e-01 4.4649848341941833e-01 - <_> - - 0 -1 24 -1089741678 -6597552 1090668753 -1626320880 - -548872518 -5633400 184583099 -636825123 - - -5.6575518846511841e-01 5.3567945957183838e-01 - - <_> - 6 - -1.7560020685195923e+00 - - <_> - - 0 -1 22 -167773201 -2360353 -541076993 -10289 -251920405 - 1082327050 -529793297 1083171531 - - -6.7891544103622437e-01 4.0690261125564575e-01 - <_> - - 0 -1 76 -2 998962142 -1148940788 1070267870 2035936504 - 958419688 1975383548 2147483647 - - -6.8827730417251587e-01 4.0660688281059265e-01 - <_> - - 0 -1 16 4276 1431657684 1035952127 1571231228 -1733272834 - -15402508 446622687 -1163383595 - - -7.0099341869354248e-01 4.0688174962997437e-01 - <_> - - 0 -1 61 1195896586 2145385823 -2129967732 1339936015 - 1338232714 1627381991 -82321841 2144329695 - - -6.2260180711746216e-01 4.3509158492088318e-01 - <_> - - 0 -1 26 -285737074 580841251 -2006785528 584047371 - 1502441728 577284943 2135905038 1677721599 - - -6.5793162584304810e-01 3.7901020050048828e-01 - <_> - - 0 -1 52 -676619022 -573206503 453763057 487281681 -276129030 - -5726556 -1970630945 -1742028395 - - -5.5209952592849731e-01 4.6138554811477661e-01 - - <_> - 7 - -1.2151374816894531e+00 - - <_> - - 0 -1 66 -85 -211815617 -268444926 -739289265 -134221270 - 1082119455 -208666710 1476395007 - - -7.2162574529647827e-01 3.6626848578453064e-01 - <_> - - 0 -1 1 -286265718 -999299098 -391593396 -523769430 - -404792576 1157058627 -244452604 -167772161 - - -6.0357534885406494e-01 4.5322033762931824e-01 - <_> - - 0 -1 60 -255793462 -70257709 -254351630 -70320397 1909288463 - -45121 -721424433 -754984085 - - -5.4790908098220825e-01 4.7318786382675171e-01 - <_> - - 0 -1 71 -33554436 -1812277562 2119891740 334164958 - 2147349968 287338979 1936016656 2139095039 - - -7.0448672771453857e-01 3.6576277017593384e-01 - <_> - - 0 -1 78 -828176 -604415011 -1717332707 463297429 -361047880 - -623162369 -1433736440 -1163985015 - - -5.1334244012832642e-01 5.0787007808685303e-01 - <_> - - 0 -1 83 -68161830 799997919 -1356582888 -1113522566 - 734945480 364392665 1400706424 -1 - - -5.3373581171035767e-01 4.6751043200492859e-01 - <_> - - 0 -1 20 -1103673124 -548322284 1074454045 1360249113 - 1310589182 1429537920 -1979578680 1932215757 - - -6.9125539064407349e-01 3.8719448447227478e-01 - - <_> - 7 - -1.3708573579788208e+00 - - <_> - - 0 -1 70 -524289 1431323989 -39460867 1437687765 -45228340 - 990927545 -270731060 -1 - - -5.7995080947875977e-01 4.9767187237739563e-01 - <_> - - 0 -1 9 655623184 -10511395 -4259843 -34268773 -540755556 - -1078503171 -604497410 -4583798 - - -6.1646574735641479e-01 3.9822673797607422e-01 - <_> - - 0 -1 48 -538188118 1608358907 1025101263 1604179967 - -597894689 224255963 1576926959 1574829791 - - -6.2925642728805542e-01 3.6492335796356201e-01 - <_> - - 0 -1 21 -939276798 -257753089 -489952064 -169349429 - 1858071503 -94705729 -213130489 1088938791 - - -6.5357398986816406e-01 3.3915162086486816e-01 - <_> - - 0 -1 19 -552936270 523391216 -100696577 -543732683 -11891462 - 523689429 -6100737 184703099 - - -6.0573673248291016e-01 3.5936927795410156e-01 - <_> - - 0 -1 28 -422589434 -423691488 -938504690 -490755185 - -318770933 1647010671 1467924480 1132459647 - - -6.4206576347351074e-01 3.4757497906684875e-01 - <_> - - 0 -1 69 -783944702 -214179085 1931721521 858993458 - -404040966 -17077 1668546218 -11028208 - - -5.5039256811141968e-01 3.7237152457237244e-01 - - <_> - 7 - -1.1579054594039917e+00 - - <_> - - 0 -1 13 -4272908 -571236 -1696923651 456132792 -83965188 - -12545 -1363481468 -318769923 - - -6.9065040349960327e-01 2.7564468979835510e-01 - <_> - - 0 -1 31 -581968114 -540299265 -1727069430 2142976778 - -287318193 -1055025 -22282321 -32965 - - -5.8724719285964966e-01 3.7282180786132812e-01 - <_> - - 0 -1 50 -6038341 -640165672 463208439 421485845 -269825286 - -33620748 -1708470305 -620048939 - - -4.1684821248054504e-01 5.3800636529922485e-01 - <_> - - 0 -1 3 -6430 -286266012 -287322898 -319895826 1606896711 - 1948587903 1467434225 -184549377 - - -5.9499925374984741e-01 3.7343171238899231e-01 - <_> - - 0 -1 75 -1071192570 1138221878 -46664013 2005367587 - -352330769 -97783513 -905969969 1075299911 - - -6.4896816015243530e-01 3.2506215572357178e-01 - <_> - - 0 -1 85 -7340034 -1549099046 843056536 1000387532 1341479372 - 730346793 2110204140 -68421681 - - -4.5823952555656433e-01 4.5764750242233276e-01 - <_> - - 0 -1 46 -402653794 -782245121 314947160 398323455 1436373236 - 293425369 372627928 1946156991 - - -5.9321647882461548e-01 3.5472938418388367e-01 - - <_> - 8 - -1.6782619953155518e+00 - - <_> - - 0 -1 10 873553151 2004180213 -2228225 -58913 -1125475105 - -983116 -1090846721 -1157632065 - - -5.4920834302902222e-01 4.2633989453315735e-01 - <_> - - 0 -1 80 -681844738 1056975922 561003192 2146500470 214478076 - 202376324 767075576 -131073 - - -5.7025521993637085e-01 3.7582042813301086e-01 - <_> - - 0 -1 55 -125150774 -8730 -545267713 -10494133 720038827 - 1610612715 -270345237 -344997758 - - -5.1887893676757812e-01 4.0973290801048279e-01 - <_> - - 0 -1 38 -584001028 489741808 -42207235 503252372 -1657349640 - -1723926019 -1680196609 153796781 - - -6.3692367076873779e-01 3.1177058815956116e-01 - <_> - - 0 -1 82 -286265654 547679875 -1400445950 -1059936821 - 930072066 1180585997 -258477310 1941960687 - - -6.5258508920669556e-01 3.1520101428031921e-01 - <_> - - 0 -1 30 -542221264 -64290 -115418115 -542109068 -1884628452 - -6644857 782818812 -1205688280 - - -5.6938469409942627e-01 3.5461488366127014e-01 - <_> - - 0 -1 18 -15734801 1032825246 -687726584 297774843 - -1498729557 66534254 1715609562 1946157055 - - -5.5432200431823730e-01 3.2321223616600037e-01 - <_> - - 0 -1 35 -1065096062 -84943881 -570294785 -1045448925 - -353914625 -128196145 -273751377 -2113150457 - - -4.6718406677246094e-01 4.1839256882667542e-01 - - <_> - 9 - -1.8586442470550537e+00 - - <_> - - 0 -1 62 -1039938489 -36489 -348127361 -513 -88084689 - -3411553 -285475073 -230950913 - - -5.2433896064758301e-01 4.3869677186012268e-01 - <_> - - 0 -1 47 -68160017 -67112461 -269750015 -1576601 -69209890 - 289042673 -271590433 2012741631 - - -5.0064951181411743e-01 4.2426300048828125e-01 - <_> - - 0 -1 74 -1 2003850580 -1108279300 389044597 2136800716 - 1027633524 517520350 -4194305 - - -4.2682534456253052e-01 4.7421252727508545e-01 - <_> - - 0 -1 58 -1213068112 -536915939 -1080057863 1595874817 - -433959436 -5054980 -341144337 -550875515 - - -5.4924941062927246e-01 3.6996433138847351e-01 - <_> - - 0 -1 17 -570425850 991534916 855818035 2063621960 1785546766 - 1062771928 -32834882 -11535521 - - -5.3338468074798584e-01 3.7742823362350464e-01 - <_> - - 0 -1 65 1755451637 -1953609758 -4228609 -37791274 - -1466384897 -1348535297 -1161896257 -1549632026 - - -4.7544640302658081e-01 3.8450938463211060e-01 - <_> - - 0 -1 6 -232593430 -1307839544 -1343531197 1094448996 - -90448405 -299175006 -348390929 1076097603 - - -6.0394722223281860e-01 3.0843117833137512e-01 - <_> - - 0 -1 29 -8394754 1073531900 196423260 755082090 2111333900 - 2034519740 836572127 -9 - - -4.8120620846748352e-01 3.7419813871383667e-01 - <_> - - 0 -1 25 -137374758 319557367 -568726642 64821167 861795555 - 14684406 -1354713171 464377851 - - -5.6392318010330200e-01 3.4628465771675110e-01 - - <_> - 9 - -1.1646637916564941e+00 - - <_> - - 0 -1 14 -1 -76292 -857749057 -593901347 -290799697 -1090401 - -1999699413 -1963987201 - - -5.4174631834030151e-01 3.7251868844032288e-01 - <_> - - 0 -1 64 -8705 -537207489 -4239937 -541254337 1531993580 - -4956764 -269291571 -12884219 - - -3.9605358242988586e-01 5.0030308961868286e-01 - <_> - - 0 -1 59 -1073495033 -76581641 -171966465 -8396801 -117455345 - -67108865 -1062207745 -803473873 - - -3.6505150794982910e-01 4.9429062008857727e-01 - <_> - - 0 -1 73 -514 1071182842 -269553700 196673532 -539004706 - 942702557 2138922334 2147483647 - - -5.8632147312164307e-01 2.8380626440048218e-01 - <_> - - 0 -1 42 -168165409 956350580 1433794553 335084340 - -1997487890 134781876 -841695318 226286586 - - -5.1184880733489990e-01 3.7335854768753052e-01 - <_> - - 0 -1 36 -8417330 -201338881 -1615940728 254748635 -54790209 - 348076479 638561215 2013248319 - - -5.6350380182266235e-01 2.8398692607879639e-01 - <_> - - 0 -1 81 -587260784 -576749575 -1669606123 453170521 - -83953252 -623125537 -90477824 -1706049971 - - -4.9625855684280396e-01 3.4869700670242310e-01 - <_> - - 0 -1 84 -9938 696398318 1070208736 967486022 670776829 - 434662137 872353116 1811674871 - - -5.8320373296737671e-01 2.6583945751190186e-01 - <_> - - 0 -1 5 -363141622 -239875254 -1432323398 464676619 - -656156600 -655048034 -391188993 -84412465 - - -5.2150756120681763e-01 3.4631469845771790e-01 - - <_> - 10 - -1.2043844461441040e+00 - - <_> - - 0 -1 43 -571488022 -570436133 -281030916 -583199483 - -641536514 -1615143425 -116326401 -550844145 - - -6.6361653804779053e-01 1.9604672491550446e-01 - <_> - - 0 -1 12 -262145 -705568772 -175415297 -178392083 -1437799681 - -1258629332 1000844015 21979147 - - -5.6519657373428345e-01 3.0456781387329102e-01 - <_> - - 0 -1 51 -1342172400 -191617 -643 -36603918 -91291650 - -17053217 -1577783044 -1260963209 - - -5.8604788780212402e-01 2.9618346691131592e-01 - <_> - - 0 -1 54 -806359297 -4121 -1513370873 736620259 196577104 - -405277098 -34120841 -1048973 - - -3.6587005853652954e-01 4.7734427452087402e-01 - <_> - - 0 -1 63 1967936212 -71692 -14222346 -1345844538 -11780 - -1077960993 -1615157796 791500233 - - -6.5954190492630005e-01 2.5595691800117493e-01 - <_> - - 0 -1 68 -531634558 865068942 -214445902 2138308467 81786719 - -5247442 -1057227777 1080554471 - - -5.7511496543884277e-01 2.8192704916000366e-01 - <_> - - 0 -1 4 -1042088222 -285753242 2012049383 -245161914 - -314395669 -213939586 621805471 1114071675 - - -6.1220860481262207e-01 2.3731665313243866e-01 - <_> - - 0 -1 56 -1443145485 1988102498 534740469 1327645410 - -342172998 -1145315953 2064154367 -232077321 - - -3.7831282615661621e-01 4.3669494986534119e-01 - <_> - - 0 -1 32 -10553354 1878801516 166209754 799550440 1033640828 - 757621993 206579948 1610612567 - - -5.7260602712631226e-01 2.6549491286277771e-01 - <_> - - 0 -1 2 -335546834 -552104052 -158802433 1929566028 180870239 - 1601293336 -366221073 -2892043 - - -4.6849688887596130e-01 3.5707718133926392e-01 - - <_> - 10 - -1.7368365526199341e+00 - - <_> - - 0 -1 72 -113 -817 -140552306 -3145873 1732237303 1981281703 - -134750257 -134217729 - - -5.4474252462387085e-01 3.1632161140441895e-01 - <_> - - 0 -1 39 -72655696 2013224444 -1111523331 1606092792 - -341115654 2146036667 -1129779250 -4456739 - - -5.3460186719894409e-01 3.2928371429443359e-01 - <_> - - 0 -1 0 -2097169 -825229530 -269562298 -831523257 -301990081 - 1082130175 1937224823 -134219785 - - -4.0298810601234436e-01 4.2096018791198730e-01 - <_> - - 0 -1 77 -30158608 -571467276 -1168352803 429370257 - -631056196 -16855555 719990476 -1968224636 - - -4.8689436912536621e-01 3.4727278351783752e-01 - <_> - - 0 -1 33 1433925623 354472528 1433785845 87126399 -570561537 - 186816912 1572383037 229432799 - - -5.1943379640579224e-01 3.3485844731330872e-01 - <_> - - 0 -1 27 -1112651588 -1109424130 1597931517 825755554 -90440 - -7087629 -553719032 -659554565 - - -5.0690883398056030e-01 3.0206778645515442e-01 - <_> - - 0 -1 45 -537308019 401852740 2137390506 1474785670 - 1724184559 1733253107 -119477265 1942486011 - - -4.7200435400009155e-01 3.4845206141471863e-01 - <_> - - 0 -1 15 -827403230 1380898820 -1171928688 1594721160 - 1794931804 142497885 -626327570 -88430851 - - -6.2450623512268066e-01 2.4470937252044678e-01 - <_> - - 0 -1 37 1998842498 -639640488 1392994901 1600123220 - -771092838 -51660481 176868063 -636760815 - - -4.9276769161224365e-01 3.0157554149627686e-01 - <_> - - 0 -1 79 -1060970492 -201327841 -1883509605 -2049 -941883442 - -90457258 1188654255 1096937603 - - -6.1707288026809692e-01 2.6061785221099854e-01 - - <_> - - 0 2 1 1 - <_> - - 0 2 1 3 - <_> - - 0 3 14 1 - <_> - - 0 5 2 3 - <_> - - 1 0 2 2 - <_> - - 1 8 12 1 - <_> - - 2 0 2 3 - <_> - - 2 0 9 1 - <_> - - 2 7 14 2 - <_> - - 3 0 3 1 - <_> - - 3 0 5 1 - <_> - - 3 0 9 1 - <_> - - 3 1 5 2 - <_> - - 3 1 9 1 - <_> - - 3 1 9 2 - <_> - - 3 4 11 1 - <_> - - 4 0 5 1 - <_> - - 4 3 13 1 - <_> - - 4 6 2 2 - <_> - - 4 13 7 1 - <_> - - 5 1 11 1 - <_> - - 6 0 1 3 - <_> - - 6 0 3 3 - <_> - - 6 6 1 3 - <_> - - 6 13 10 1 - <_> - - 7 1 3 5 - <_> - - 7 3 1 4 - <_> - - 8 1 6 1 - <_> - - 8 2 1 3 - <_> - - 8 7 1 3 - <_> - - 9 0 6 1 - <_> - - 9 2 11 4 - <_> - - 9 7 1 3 - <_> - - 9 10 5 2 - <_> - - 10 0 8 1 - <_> - - 11 0 1 2 - <_> - - 11 2 3 4 - <_> - - 11 12 10 1 - <_> - - 11 13 5 1 - <_> - - 12 0 7 1 - <_> - - 12 1 7 1 - <_> - - 12 4 2 4 - <_> - - 12 10 4 2 - <_> - - 12 12 7 1 - <_> - - 12 13 8 1 - <_> - - 13 2 6 1 - <_> - - 13 3 3 4 - <_> - - 13 4 6 3 - <_> - - 13 6 6 3 - <_> - - 13 13 8 1 - <_> - - 13 13 9 1 - <_> - - 14 0 2 1 - <_> - - 14 13 8 1 - <_> - - 15 0 2 3 - <_> - - 15 3 4 3 - <_> - - 16 0 4 2 - <_> - - 16 0 8 1 - <_> - - 17 7 3 3 - <_> - - 17 13 6 1 - <_> - - 18 0 1 2 - <_> - - 18 0 2 3 - <_> - - 18 1 3 4 - <_> - - 19 0 1 2 - <_> - - 20 1 1 5 - <_> - - 20 13 4 1 - <_> - - 21 0 3 1 - <_> - - 21 3 3 3 - <_> - - 21 4 3 3 - <_> - - 23 0 2 3 - <_> - - 23 0 4 3 - <_> - - 23 10 2 2 - <_> - - 24 4 2 4 - <_> - - 24 6 3 2 - <_> - - 24 7 2 3 - <_> - - 24 10 2 2 - <_> - - 25 0 2 3 - <_> - - 26 7 2 3 - <_> - - 26 13 5 1 - <_> - - 26 13 6 1 - <_> - - 27 0 2 3 - <_> - - 27 10 2 2 - <_> - - 29 13 5 1 - <_> - - 30 5 1 2 - <_> - - 30 7 1 3 - <_> - - 34 7 1 3 - <_> - - 35 7 1 3 - + + + + BOOST + LBP + 16 + 44 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 12 + + + <_> + 3 + -8.9822268486022949e-01 + + <_> + + 0 -1 49 -611788592 -573485032 -117253679 1594429461 + -1971287878 -22527862 -1979021157 -1626733427 + + -7.5738126039505005e-01 7.0481771230697632e-01 + <_> + + 0 -1 67 -6294750 -244874989 -2130526208 1938772839 + -148114893 268845060 855894827 1937767359 + + -8.3813470602035522e-01 5.8474522829055786e-01 + <_> + + 0 -1 11 -1677699056 -36618160 403725789 1595490577 + -1207940968 -7794569 -1911899905 -1154826022 + + -6.8870306015014648e-01 6.9729328155517578e-01 + + <_> + 5 + -1.1421134471893311e+00 + + <_> + + 0 -1 57 -1119506 -708121466 -612065092 -743202 -1193508626 + -23197524 -2118161 -2098177 + + -7.4267381429672241e-01 5.3053784370422363e-01 + <_> + + 0 -1 7 -1677572080 -1074181040 506615293 1597720656 + -1640363268 -1077966123 436928508 -1088695875 + + -7.4100035429000854e-01 4.8635581135749817e-01 + <_> + + 0 -1 23 -84414770 583066006 -931127296 575594756 54857728 + 23068739 1263612160 -134220801 + + -6.7841631174087524e-01 5.1256632804870605e-01 + <_> + + 0 -1 44 -787854184 -573318064 789683645 488446228 + -1155351302 -2439010 -1375170676 -552942435 + + -6.5471035242080688e-01 5.3409981727600098e-01 + <_> + + 0 -1 53 -800595898 -621366522 -620510633 -749743337 + -1034952182 -928062974 6801775 1074262595 + + -7.0143872499465942e-01 4.8587721586227417e-01 + + <_> + 5 + -9.6150821447372437e-01 + + <_> + + 0 -1 40 -541371172 -589667 1602442749 -43619 -124991250 + 2008760573 -123154482 -72627255 + + -6.7388784885406494e-01 5.1606619358062744e-01 + <_> + + 0 -1 8 -72646400 -80015225 394858760 -14727777 -1145332839 + -1145335621 992677307 -1077936129 + + -6.5934449434280396e-01 4.8057270050048828e-01 + <_> + + 0 -1 41 -1060918 -12000442 453118984 -549920786 1542418820 + 352678917 1610051308 -2098177 + + -6.0796922445297241e-01 5.1345926523208618e-01 + <_> + + 0 -1 34 -1749417744 1364332732 1493720573 1595610484 + -1700261638 1970278583 1040904142 -74943796 + + -6.7741453647613525e-01 4.4649848341941833e-01 + <_> + + 0 -1 24 -1089741678 -6597552 1090668753 -1626320880 + -548872518 -5633400 184583099 -636825123 + + -5.6575518846511841e-01 5.3567945957183838e-01 + + <_> + 6 + -1.7560020685195923e+00 + + <_> + + 0 -1 22 -167773201 -2360353 -541076993 -10289 -251920405 + 1082327050 -529793297 1083171531 + + -6.7891544103622437e-01 4.0690261125564575e-01 + <_> + + 0 -1 76 -2 998962142 -1148940788 1070267870 2035936504 + 958419688 1975383548 2147483647 + + -6.8827730417251587e-01 4.0660688281059265e-01 + <_> + + 0 -1 16 4276 1431657684 1035952127 1571231228 -1733272834 + -15402508 446622687 -1163383595 + + -7.0099341869354248e-01 4.0688174962997437e-01 + <_> + + 0 -1 61 1195896586 2145385823 -2129967732 1339936015 + 1338232714 1627381991 -82321841 2144329695 + + -6.2260180711746216e-01 4.3509158492088318e-01 + <_> + + 0 -1 26 -285737074 580841251 -2006785528 584047371 + 1502441728 577284943 2135905038 1677721599 + + -6.5793162584304810e-01 3.7901020050048828e-01 + <_> + + 0 -1 52 -676619022 -573206503 453763057 487281681 -276129030 + -5726556 -1970630945 -1742028395 + + -5.5209952592849731e-01 4.6138554811477661e-01 + + <_> + 7 + -1.2151374816894531e+00 + + <_> + + 0 -1 66 -85 -211815617 -268444926 -739289265 -134221270 + 1082119455 -208666710 1476395007 + + -7.2162574529647827e-01 3.6626848578453064e-01 + <_> + + 0 -1 1 -286265718 -999299098 -391593396 -523769430 + -404792576 1157058627 -244452604 -167772161 + + -6.0357534885406494e-01 4.5322033762931824e-01 + <_> + + 0 -1 60 -255793462 -70257709 -254351630 -70320397 1909288463 + -45121 -721424433 -754984085 + + -5.4790908098220825e-01 4.7318786382675171e-01 + <_> + + 0 -1 71 -33554436 -1812277562 2119891740 334164958 + 2147349968 287338979 1936016656 2139095039 + + -7.0448672771453857e-01 3.6576277017593384e-01 + <_> + + 0 -1 78 -828176 -604415011 -1717332707 463297429 -361047880 + -623162369 -1433736440 -1163985015 + + -5.1334244012832642e-01 5.0787007808685303e-01 + <_> + + 0 -1 83 -68161830 799997919 -1356582888 -1113522566 + 734945480 364392665 1400706424 -1 + + -5.3373581171035767e-01 4.6751043200492859e-01 + <_> + + 0 -1 20 -1103673124 -548322284 1074454045 1360249113 + 1310589182 1429537920 -1979578680 1932215757 + + -6.9125539064407349e-01 3.8719448447227478e-01 + + <_> + 7 + -1.3708573579788208e+00 + + <_> + + 0 -1 70 -524289 1431323989 -39460867 1437687765 -45228340 + 990927545 -270731060 -1 + + -5.7995080947875977e-01 4.9767187237739563e-01 + <_> + + 0 -1 9 655623184 -10511395 -4259843 -34268773 -540755556 + -1078503171 -604497410 -4583798 + + -6.1646574735641479e-01 3.9822673797607422e-01 + <_> + + 0 -1 48 -538188118 1608358907 1025101263 1604179967 + -597894689 224255963 1576926959 1574829791 + + -6.2925642728805542e-01 3.6492335796356201e-01 + <_> + + 0 -1 21 -939276798 -257753089 -489952064 -169349429 + 1858071503 -94705729 -213130489 1088938791 + + -6.5357398986816406e-01 3.3915162086486816e-01 + <_> + + 0 -1 19 -552936270 523391216 -100696577 -543732683 -11891462 + 523689429 -6100737 184703099 + + -6.0573673248291016e-01 3.5936927795410156e-01 + <_> + + 0 -1 28 -422589434 -423691488 -938504690 -490755185 + -318770933 1647010671 1467924480 1132459647 + + -6.4206576347351074e-01 3.4757497906684875e-01 + <_> + + 0 -1 69 -783944702 -214179085 1931721521 858993458 + -404040966 -17077 1668546218 -11028208 + + -5.5039256811141968e-01 3.7237152457237244e-01 + + <_> + 7 + -1.1579054594039917e+00 + + <_> + + 0 -1 13 -4272908 -571236 -1696923651 456132792 -83965188 + -12545 -1363481468 -318769923 + + -6.9065040349960327e-01 2.7564468979835510e-01 + <_> + + 0 -1 31 -581968114 -540299265 -1727069430 2142976778 + -287318193 -1055025 -22282321 -32965 + + -5.8724719285964966e-01 3.7282180786132812e-01 + <_> + + 0 -1 50 -6038341 -640165672 463208439 421485845 -269825286 + -33620748 -1708470305 -620048939 + + -4.1684821248054504e-01 5.3800636529922485e-01 + <_> + + 0 -1 3 -6430 -286266012 -287322898 -319895826 1606896711 + 1948587903 1467434225 -184549377 + + -5.9499925374984741e-01 3.7343171238899231e-01 + <_> + + 0 -1 75 -1071192570 1138221878 -46664013 2005367587 + -352330769 -97783513 -905969969 1075299911 + + -6.4896816015243530e-01 3.2506215572357178e-01 + <_> + + 0 -1 85 -7340034 -1549099046 843056536 1000387532 1341479372 + 730346793 2110204140 -68421681 + + -4.5823952555656433e-01 4.5764750242233276e-01 + <_> + + 0 -1 46 -402653794 -782245121 314947160 398323455 1436373236 + 293425369 372627928 1946156991 + + -5.9321647882461548e-01 3.5472938418388367e-01 + + <_> + 8 + -1.6782619953155518e+00 + + <_> + + 0 -1 10 873553151 2004180213 -2228225 -58913 -1125475105 + -983116 -1090846721 -1157632065 + + -5.4920834302902222e-01 4.2633989453315735e-01 + <_> + + 0 -1 80 -681844738 1056975922 561003192 2146500470 214478076 + 202376324 767075576 -131073 + + -5.7025521993637085e-01 3.7582042813301086e-01 + <_> + + 0 -1 55 -125150774 -8730 -545267713 -10494133 720038827 + 1610612715 -270345237 -344997758 + + -5.1887893676757812e-01 4.0973290801048279e-01 + <_> + + 0 -1 38 -584001028 489741808 -42207235 503252372 -1657349640 + -1723926019 -1680196609 153796781 + + -6.3692367076873779e-01 3.1177058815956116e-01 + <_> + + 0 -1 82 -286265654 547679875 -1400445950 -1059936821 + 930072066 1180585997 -258477310 1941960687 + + -6.5258508920669556e-01 3.1520101428031921e-01 + <_> + + 0 -1 30 -542221264 -64290 -115418115 -542109068 -1884628452 + -6644857 782818812 -1205688280 + + -5.6938469409942627e-01 3.5461488366127014e-01 + <_> + + 0 -1 18 -15734801 1032825246 -687726584 297774843 + -1498729557 66534254 1715609562 1946157055 + + -5.5432200431823730e-01 3.2321223616600037e-01 + <_> + + 0 -1 35 -1065096062 -84943881 -570294785 -1045448925 + -353914625 -128196145 -273751377 -2113150457 + + -4.6718406677246094e-01 4.1839256882667542e-01 + + <_> + 9 + -1.8586442470550537e+00 + + <_> + + 0 -1 62 -1039938489 -36489 -348127361 -513 -88084689 + -3411553 -285475073 -230950913 + + -5.2433896064758301e-01 4.3869677186012268e-01 + <_> + + 0 -1 47 -68160017 -67112461 -269750015 -1576601 -69209890 + 289042673 -271590433 2012741631 + + -5.0064951181411743e-01 4.2426300048828125e-01 + <_> + + 0 -1 74 -1 2003850580 -1108279300 389044597 2136800716 + 1027633524 517520350 -4194305 + + -4.2682534456253052e-01 4.7421252727508545e-01 + <_> + + 0 -1 58 -1213068112 -536915939 -1080057863 1595874817 + -433959436 -5054980 -341144337 -550875515 + + -5.4924941062927246e-01 3.6996433138847351e-01 + <_> + + 0 -1 17 -570425850 991534916 855818035 2063621960 1785546766 + 1062771928 -32834882 -11535521 + + -5.3338468074798584e-01 3.7742823362350464e-01 + <_> + + 0 -1 65 1755451637 -1953609758 -4228609 -37791274 + -1466384897 -1348535297 -1161896257 -1549632026 + + -4.7544640302658081e-01 3.8450938463211060e-01 + <_> + + 0 -1 6 -232593430 -1307839544 -1343531197 1094448996 + -90448405 -299175006 -348390929 1076097603 + + -6.0394722223281860e-01 3.0843117833137512e-01 + <_> + + 0 -1 29 -8394754 1073531900 196423260 755082090 2111333900 + 2034519740 836572127 -9 + + -4.8120620846748352e-01 3.7419813871383667e-01 + <_> + + 0 -1 25 -137374758 319557367 -568726642 64821167 861795555 + 14684406 -1354713171 464377851 + + -5.6392318010330200e-01 3.4628465771675110e-01 + + <_> + 9 + -1.1646637916564941e+00 + + <_> + + 0 -1 14 -1 -76292 -857749057 -593901347 -290799697 -1090401 + -1999699413 -1963987201 + + -5.4174631834030151e-01 3.7251868844032288e-01 + <_> + + 0 -1 64 -8705 -537207489 -4239937 -541254337 1531993580 + -4956764 -269291571 -12884219 + + -3.9605358242988586e-01 5.0030308961868286e-01 + <_> + + 0 -1 59 -1073495033 -76581641 -171966465 -8396801 -117455345 + -67108865 -1062207745 -803473873 + + -3.6505150794982910e-01 4.9429062008857727e-01 + <_> + + 0 -1 73 -514 1071182842 -269553700 196673532 -539004706 + 942702557 2138922334 2147483647 + + -5.8632147312164307e-01 2.8380626440048218e-01 + <_> + + 0 -1 42 -168165409 956350580 1433794553 335084340 + -1997487890 134781876 -841695318 226286586 + + -5.1184880733489990e-01 3.7335854768753052e-01 + <_> + + 0 -1 36 -8417330 -201338881 -1615940728 254748635 -54790209 + 348076479 638561215 2013248319 + + -5.6350380182266235e-01 2.8398692607879639e-01 + <_> + + 0 -1 81 -587260784 -576749575 -1669606123 453170521 + -83953252 -623125537 -90477824 -1706049971 + + -4.9625855684280396e-01 3.4869700670242310e-01 + <_> + + 0 -1 84 -9938 696398318 1070208736 967486022 670776829 + 434662137 872353116 1811674871 + + -5.8320373296737671e-01 2.6583945751190186e-01 + <_> + + 0 -1 5 -363141622 -239875254 -1432323398 464676619 + -656156600 -655048034 -391188993 -84412465 + + -5.2150756120681763e-01 3.4631469845771790e-01 + + <_> + 10 + -1.2043844461441040e+00 + + <_> + + 0 -1 43 -571488022 -570436133 -281030916 -583199483 + -641536514 -1615143425 -116326401 -550844145 + + -6.6361653804779053e-01 1.9604672491550446e-01 + <_> + + 0 -1 12 -262145 -705568772 -175415297 -178392083 -1437799681 + -1258629332 1000844015 21979147 + + -5.6519657373428345e-01 3.0456781387329102e-01 + <_> + + 0 -1 51 -1342172400 -191617 -643 -36603918 -91291650 + -17053217 -1577783044 -1260963209 + + -5.8604788780212402e-01 2.9618346691131592e-01 + <_> + + 0 -1 54 -806359297 -4121 -1513370873 736620259 196577104 + -405277098 -34120841 -1048973 + + -3.6587005853652954e-01 4.7734427452087402e-01 + <_> + + 0 -1 63 1967936212 -71692 -14222346 -1345844538 -11780 + -1077960993 -1615157796 791500233 + + -6.5954190492630005e-01 2.5595691800117493e-01 + <_> + + 0 -1 68 -531634558 865068942 -214445902 2138308467 81786719 + -5247442 -1057227777 1080554471 + + -5.7511496543884277e-01 2.8192704916000366e-01 + <_> + + 0 -1 4 -1042088222 -285753242 2012049383 -245161914 + -314395669 -213939586 621805471 1114071675 + + -6.1220860481262207e-01 2.3731665313243866e-01 + <_> + + 0 -1 56 -1443145485 1988102498 534740469 1327645410 + -342172998 -1145315953 2064154367 -232077321 + + -3.7831282615661621e-01 4.3669494986534119e-01 + <_> + + 0 -1 32 -10553354 1878801516 166209754 799550440 1033640828 + 757621993 206579948 1610612567 + + -5.7260602712631226e-01 2.6549491286277771e-01 + <_> + + 0 -1 2 -335546834 -552104052 -158802433 1929566028 180870239 + 1601293336 -366221073 -2892043 + + -4.6849688887596130e-01 3.5707718133926392e-01 + + <_> + 10 + -1.7368365526199341e+00 + + <_> + + 0 -1 72 -113 -817 -140552306 -3145873 1732237303 1981281703 + -134750257 -134217729 + + -5.4474252462387085e-01 3.1632161140441895e-01 + <_> + + 0 -1 39 -72655696 2013224444 -1111523331 1606092792 + -341115654 2146036667 -1129779250 -4456739 + + -5.3460186719894409e-01 3.2928371429443359e-01 + <_> + + 0 -1 0 -2097169 -825229530 -269562298 -831523257 -301990081 + 1082130175 1937224823 -134219785 + + -4.0298810601234436e-01 4.2096018791198730e-01 + <_> + + 0 -1 77 -30158608 -571467276 -1168352803 429370257 + -631056196 -16855555 719990476 -1968224636 + + -4.8689436912536621e-01 3.4727278351783752e-01 + <_> + + 0 -1 33 1433925623 354472528 1433785845 87126399 -570561537 + 186816912 1572383037 229432799 + + -5.1943379640579224e-01 3.3485844731330872e-01 + <_> + + 0 -1 27 -1112651588 -1109424130 1597931517 825755554 -90440 + -7087629 -553719032 -659554565 + + -5.0690883398056030e-01 3.0206778645515442e-01 + <_> + + 0 -1 45 -537308019 401852740 2137390506 1474785670 + 1724184559 1733253107 -119477265 1942486011 + + -4.7200435400009155e-01 3.4845206141471863e-01 + <_> + + 0 -1 15 -827403230 1380898820 -1171928688 1594721160 + 1794931804 142497885 -626327570 -88430851 + + -6.2450623512268066e-01 2.4470937252044678e-01 + <_> + + 0 -1 37 1998842498 -639640488 1392994901 1600123220 + -771092838 -51660481 176868063 -636760815 + + -4.9276769161224365e-01 3.0157554149627686e-01 + <_> + + 0 -1 79 -1060970492 -201327841 -1883509605 -2049 -941883442 + -90457258 1188654255 1096937603 + + -6.1707288026809692e-01 2.6061785221099854e-01 + + <_> + + 0 2 1 1 + <_> + + 0 2 1 3 + <_> + + 0 3 14 1 + <_> + + 0 5 2 3 + <_> + + 1 0 2 2 + <_> + + 1 8 12 1 + <_> + + 2 0 2 3 + <_> + + 2 0 9 1 + <_> + + 2 7 14 2 + <_> + + 3 0 3 1 + <_> + + 3 0 5 1 + <_> + + 3 0 9 1 + <_> + + 3 1 5 2 + <_> + + 3 1 9 1 + <_> + + 3 1 9 2 + <_> + + 3 4 11 1 + <_> + + 4 0 5 1 + <_> + + 4 3 13 1 + <_> + + 4 6 2 2 + <_> + + 4 13 7 1 + <_> + + 5 1 11 1 + <_> + + 6 0 1 3 + <_> + + 6 0 3 3 + <_> + + 6 6 1 3 + <_> + + 6 13 10 1 + <_> + + 7 1 3 5 + <_> + + 7 3 1 4 + <_> + + 8 1 6 1 + <_> + + 8 2 1 3 + <_> + + 8 7 1 3 + <_> + + 9 0 6 1 + <_> + + 9 2 11 4 + <_> + + 9 7 1 3 + <_> + + 9 10 5 2 + <_> + + 10 0 8 1 + <_> + + 11 0 1 2 + <_> + + 11 2 3 4 + <_> + + 11 12 10 1 + <_> + + 11 13 5 1 + <_> + + 12 0 7 1 + <_> + + 12 1 7 1 + <_> + + 12 4 2 4 + <_> + + 12 10 4 2 + <_> + + 12 12 7 1 + <_> + + 12 13 8 1 + <_> + + 13 2 6 1 + <_> + + 13 3 3 4 + <_> + + 13 4 6 3 + <_> + + 13 6 6 3 + <_> + + 13 13 8 1 + <_> + + 13 13 9 1 + <_> + + 14 0 2 1 + <_> + + 14 13 8 1 + <_> + + 15 0 2 3 + <_> + + 15 3 4 3 + <_> + + 16 0 4 2 + <_> + + 16 0 8 1 + <_> + + 17 7 3 3 + <_> + + 17 13 6 1 + <_> + + 18 0 1 2 + <_> + + 18 0 2 3 + <_> + + 18 1 3 4 + <_> + + 19 0 1 2 + <_> + + 20 1 1 5 + <_> + + 20 13 4 1 + <_> + + 21 0 3 1 + <_> + + 21 3 3 3 + <_> + + 21 4 3 3 + <_> + + 23 0 2 3 + <_> + + 23 0 4 3 + <_> + + 23 10 2 2 + <_> + + 24 4 2 4 + <_> + + 24 6 3 2 + <_> + + 24 7 2 3 + <_> + + 24 10 2 2 + <_> + + 25 0 2 3 + <_> + + 26 7 2 3 + <_> + + 26 13 5 1 + <_> + + 26 13 6 1 + <_> + + 27 0 2 3 + <_> + + 27 10 2 2 + <_> + + 29 13 5 1 + <_> + + 30 5 1 2 + <_> + + 30 7 1 3 + <_> + + 34 7 1 3 + <_> + + 35 7 1 3 + diff --git a/src/ios/lib/openalpr.framework/runtime_data/region/eu.xml b/src/ios/lib/openalpr.framework/runtime_data/region/eu.xml index 52288d3..bffd66e 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/region/eu.xml +++ b/src/ios/lib/openalpr.framework/runtime_data/region/eu.xml @@ -1,819 +1,819 @@ - - - - BOOST - LBP - 13 - 52 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 12 - - - <_> - 4 - -1.8097745180130005e+00 - - <_> - - 0 -1 40 805311953 -691727 2113524735 -2108461 -1078407169 - -4473889 -1146109953 -1074185492 - - -8.3389264345169067e-01 6.6482132673263550e-01 - <_> - - 0 -1 14 -1624723464 -4443984 -64703235 -1216868228 -7684673 - -1070151 -1618019585 -1433916280 - - -7.7608370780944824e-01 5.8700811862945557e-01 - <_> - - 0 -1 19 614727832 -1612616257 1745255677 -6475305 - -1366753605 -1079144802 1002113791 -1629746758 - - -6.9801986217498779e-01 5.1161581277847290e-01 - <_> - - 0 -1 45 -2147269630 -2099757 -772579841 -547884401 - -609488921 -76826409 -371196929 -1039424890 - - -6.3432163000106812e-01 4.9822175502777100e-01 - - <_> - 6 - -1.6889376640319824e+00 - - <_> - - 0 -1 37 823136753 -2542607 1599577599 -2237985 -1147536901 - -71591686 -1148470273 -1075901777 - - -7.8587698936462402e-01 5.9190028905868530e-01 - <_> - - 0 -1 22 1600978680 -33696264 -1084877327 -58928 -1146963009 - -5579557 -546776577 -1618474808 - - -6.5951651334762573e-01 5.8263260126113892e-01 - <_> - - 0 -1 21 -462951934 13628047 -509885886 -352329529 -899942545 - 1078690347 -202390009 -512232577 - - -6.3200807571411133e-01 5.2623480558395386e-01 - <_> - - 0 -1 51 487594460 -619080456 -1718052525 -1075865123 - -71540772 -76707172 -548220929 -128836 - - -5.7273632287979126e-01 5.5056226253509521e-01 - <_> - - 0 -1 60 -479993342 -527044089 -626798585 1653596839 - 1110959381 575397931 -77506010 1937757023 - - -6.4247721433639526e-01 5.0577211380004883e-01 - <_> - - 0 -1 46 268457040 -2138636 -6980099 -34121275 -1427580418 - -335560209 -1734673665 -1719069704 - - -6.7786401510238647e-01 4.5851442217826843e-01 - - <_> - 5 - -1.3629199266433716e+00 - - <_> - - 0 -1 78 -1270 -385885489 -1072442624 -101202993 -205784318 - 50579755 -223875328 -134217729 - - -8.0022150278091431e-01 4.2767858505249023e-01 - <_> - - 0 -1 43 805852408 -1240592 -1178348033 1566527989 - -1188320001 -67132721 -1148604417 -1077994501 - - -7.1916246414184570e-01 5.3092259168624878e-01 - <_> - - 0 -1 52 -2099542 279371931 570426146 25981188 -138186334 - 269492775 1459827403 2013265919 - - -7.1977400779724121e-01 4.2900100350379944e-01 - <_> - - 0 -1 17 -538974994 148694470 -1944156952 -1982269969 - 1299832780 267128979 -74908676 -1025 - - -6.0405021905899048e-01 5.2153891324996948e-01 - <_> - - 0 -1 39 928529624 -202827784 2018546933 -77671227 - -1633105201 -106405207 420279249 252182572 - - -7.9407596588134766e-01 4.4149830937385559e-01 - - <_> - 6 - -1.6914845705032349e+00 - - <_> - - 0 -1 74 -117447418 -203424957 -1333007190 -136315905 - -207628529 1527491074 -273419265 -469763089 - - -7.6240599155426025e-01 4.2571428418159485e-01 - <_> - - 0 -1 10 -881930242 -1081718372 759341055 -1079899620 - -9704705 -10834632 -80831553 -1366686534 - - -7.0847225189208984e-01 4.7101745009422302e-01 - <_> - - 0 -1 56 -65538 1059902300 1649449468 495195900 -1188287571 - 719866089 413712380 -17409 - - -6.0372650623321533e-01 5.1609545946121216e-01 - <_> - - 0 -1 34 -1073486846 -545265809 -2101249 -134217745 - -276824065 -538968073 -704659973 -1072701149 - - -5.2723455429077148e-01 5.9482514858245850e-01 - <_> - - 0 -1 59 -1744826288 -71879692 -1785233955 -323460 - -1164198417 -4576611 -1879442465 -1098374692 - - -6.6947019100189209e-01 4.8889532685279846e-01 - <_> - - 0 -1 5 -420483410 -1594899217 -532159314 -932782337 - 1943533343 1696295075 -134559905 -34078725 - - -6.8049335479736328e-01 4.5776519179344177e-01 - - <_> - 5 - -1.0514695644378662e+00 - - <_> - - 0 -1 0 -1899833345 -1060353 -545816577 -2369025 -1953517569 - -4200225 -1412707329 -1884303875 - - -7.1151864528656006e-01 4.1955834627151489e-01 - <_> - - 0 -1 26 470291672 1594456488 923230163 -2155043 -548005457 - -1156854119 -1148534817 -1074156579 - - -6.6359061002731323e-01 4.6632391214370728e-01 - <_> - - 0 -1 73 -2098180 1406937524 18879260 1072970683 1604073656 - 386138325 2141787068 -1 - - -6.0595369338989258e-01 4.8956662416458130e-01 - <_> - - 0 -1 48 -1065107456 -72363733 -83362849 -536886273 - -615521281 -73727349 -104368129 -1039669885 - - -5.7387554645538330e-01 5.1478314399719238e-01 - <_> - - 0 -1 30 -804220688 -604380848 93818999 1903284625 - -1837057622 -105322486 1001658814 146809632 - - -6.8071007728576660e-01 4.5826134085655212e-01 - - <_> - 7 - -1.2851260900497437e+00 - - <_> - - 0 -1 76 -469762302 -406855813 -900735066 -754977809 - -480248062 1467738447 -947127609 -738198529 - - -7.7277177572250366e-01 1.8757019937038422e-01 - <_> - - 0 -1 41 -1879043887 -697865 -8921089 -2661417 -1141637121 - -6917 -1080640513 -1077996323 - - -6.5664166212081909e-01 4.0080460906028748e-01 - <_> - - 0 -1 54 523766968 1071455224 930560885 -2098947 2106400509 - -1078052162 1591720959 -1075896931 - - -6.1509358882904053e-01 4.2310744524002075e-01 - <_> - - 0 -1 64 -8651778 -4277508 799804080 1006344958 -14402568 - 410268661 2147327960 -1 - - -4.9080836772918701e-01 5.2360612154006958e-01 - <_> - - 0 -1 24 1088939042 1810221070 -279576713 -404492753 - 1618469823 718008371 -149431041 1614276131 - - -6.7838019132614136e-01 3.8422819972038269e-01 - <_> - - 0 -1 58 -1073494493 -2129 -134254593 -134219777 -134217793 - -1 -306473026 -1018443994 - - -4.2494711279869080e-01 5.7714998722076416e-01 - <_> - - 0 -1 33 -5221000 -1114344044 -1099382275 -319523 1782890237 - -17110082 1000266751 -1909977844 - - -6.6518503427505493e-01 3.9107745885848999e-01 - - <_> - 7 - -1.3347427845001221e+00 - - <_> - - 0 -1 35 -1064835289 -262657 -304612481 -10753 -68160513 - -72365105 -337910785 -509876305 - - -6.8524187803268433e-01 3.7823274731636047e-01 - <_> - - 0 -1 6 -285278470 550824651 -1094793490 -1427444482 - -12229897 1936169977 -270537745 -1281 - - -6.9259029626846313e-01 3.6514124274253845e-01 - <_> - - 0 -1 50 -2 1072971740 1469594812 2147236670 1072445948 - 1071398300 258306045 2138439679 - - -6.4422893524169922e-01 3.5341870784759521e-01 - <_> - - 0 -1 77 -1065714 254791671 -731382782 -2101936449 1842282242 - 2013256162 1924135744 -469762069 - - -6.3399165868759155e-01 3.5231015086174011e-01 - <_> - - 0 -1 12 -561580302 -605386104 -1675307299 -35200410 - -1192691478 -7641158 -581569329 -1369166102 - - -5.7274460792541504e-01 4.2036578059196472e-01 - <_> - - 0 -1 55 -2138864126 -4201985 -642265613 -210241921 -19989761 - -3952177 -141558833 -2095331545 - - -5.2967888116836548e-01 4.3784245848655701e-01 - <_> - - 0 -1 8 -830297412 -7802014 1277567223 1068347800 2064507871 - -69260897 -70362181 -1083442246 - - -5.0855410099029541e-01 4.3978407979011536e-01 - - <_> - 7 - -1.1835207939147949e+00 - - <_> - - 0 -1 62 -1025 -4396129 1971420605 2147480543 -72745987 - 999057909 998865912 -1 - - -6.2991225719451904e-01 4.2762723565101624e-01 - <_> - - 0 -1 11 -1499277837 -1056769 -575146113 -3147017 -1906574593 - -4199525 -1409286145 -1360048899 - - -5.1901364326477051e-01 4.7817090153694153e-01 - <_> - - 0 -1 65 -1 1069088700 -42160132 2147384700 -216067 183271421 - 1070607356 -1 - - -3.9919072389602661e-01 5.6214183568954468e-01 - <_> - - 0 -1 7 -357904642 231662471 10134269 1534886015 1336724732 - 1600028668 939520767 -805610049 - - -5.3103089332580566e-01 4.1148453950881958e-01 - <_> - - 0 -1 27 1078457858 -137102849 -1002967209 -671383873 - 1475047263 1759237042 2053111259 1079494146 - - -6.8956327438354492e-01 3.1366679072380066e-01 - <_> - - 0 -1 69 1543485614 532452284 465371692 1071593917 805052841 - 114115064 801844479 2145353727 - - -6.5592241287231445e-01 3.1573730707168579e-01 - <_> - - 0 -1 70 -1621418188 -12621959 -1156064295 -1619035693 - -1147405636 -72399880 264178616 162469136 - - -6.0899454355239868e-01 3.2693719863891602e-01 - - <_> - 8 - -1.3792396783828735e+00 - - <_> - - 0 -1 63 -896547289 -69206021 -113517697 -1052225 -68420609 - -67116645 -262145 -746600513 - - -6.4787888526916504e-01 3.4486734867095947e-01 - <_> - - 0 -1 16 682098471 16776910 -37761185 -67637249 -10748929 - -224138833 -11537429 -356519169 - - -5.3469586372375488e-01 4.4898313283920288e-01 - <_> - - 0 -1 80 -2097156 -550503779 -136588804 -1507362 -71830028 - 356891563 -3596 -33554441 - - -4.7742679715156555e-01 4.9222531914710999e-01 - <_> - - 0 -1 31 -9447425 -18531 1463749625 1467983669 -1619632146 - -1088585865 1599745195 2066940426 - - -4.2506697773933411e-01 5.0970840454101562e-01 - <_> - - 0 -1 9 -554774785 469641207 -1631651073 1064967857 - -689152273 -591873 -71685 -10289665 - - -3.9916789531707764e-01 5.2942800521850586e-01 - <_> - - 0 -1 32 -460868 -1149758532 -1955583982 999878622 995457144 - 100663605 769463536 1609564143 - - -6.4832550287246704e-01 3.3265480399131775e-01 - <_> - - 0 -1 61 -525614592 -73410230 -1055140389 1397186271 - 1796729711 -81276894 -10489481 1393553927 - - -5.8127319812774658e-01 3.2805305719375610e-01 - <_> - - 0 -1 71 -69206083 2140951352 1605407413 1073482444 - -1166230804 984105561 265051901 -4202499 - - -4.3958845734596252e-01 4.4159027934074402e-01 - - <_> - 9 - -1.6337682008743286e+00 - - <_> - - 0 -1 49 -1 -254281737 -847263745 -704649317 -547359277 - -214437129 -137368609 -1025 - - -5.8612054586410522e-01 5.3436428308486938e-01 - <_> - - 0 -1 3 -1964573706 -2163202 -629999617 1724277282 - -1345454081 -54273 -1947226113 -134494477 - - -5.9594768285751343e-01 3.4550479054450989e-01 - <_> - - 0 -1 25 -33624106 1979243351 -1684228388 -1327580354 - 1869634120 1507656105 1004215260 -65537 - - -5.5408185720443726e-01 3.4455263614654541e-01 - <_> - - 0 -1 20 216 -273853464 -1746981891 2147439095 -1342177362 - -1882457730 535869183 -1892939286 - - -6.8447190523147583e-01 2.6072457432746887e-01 - <_> - - 0 -1 79 -9470 -881859202 -472124544 1722743726 2040260640 - 88788209 -311968000 -420088102 - - -5.8676868677139282e-01 3.3556821942329407e-01 - <_> - - 0 -1 47 2147466972 2069665750 405150428 1073037215 721199016 - 465318864 1859398396 2139054079 - - -6.0411739349365234e-01 2.8773531317710876e-01 - <_> - - 0 -1 44 -1073955720 2142794040 2033980733 -1107354732 - -1141629188 -5309192 -340984065 796396953 - - -7.0512706041336060e-01 2.0565895736217499e-01 - <_> - - 0 -1 1 -285218257 641662811 -317140617 -1615220229 - 1397455865 1830527419 -480512675 1879048055 - - -4.5888698101043701e-01 3.7875139713287354e-01 - <_> - - 0 -1 67 -136335093 1363122398 -1475206391 2001653675 - -275119445 1368433380 831138571 2132278783 - - -4.4568619132041931e-01 3.9391869306564331e-01 - - <_> - 9 - -1.6722478866577148e+00 - - <_> - - 0 -1 13 -2097665 285007871 -14702337 -1073745441 -603979783 - -12805 -7606276 -33 - - -6.4239740371704102e-01 3.0229949951171875e-01 - <_> - - 0 -1 68 -1297 -605028505 1663525735 -4983053 -1132728133 - -326122023 -1512309265 -1049601 - - -3.4561732411384583e-01 6.5836638212203979e-01 - <_> - - 0 -1 28 -1879027627 -11273 -38282337 -69730305 -1192231939 - -263686 -1109656581 -1142203922 - - -4.3300274014472961e-01 4.2989093065261841e-01 - <_> - - 0 -1 75 -50337789 2147446389 -16778341 1374150655 -134224126 - 2013265911 -285214754 -202385409 - - -3.8676849007606506e-01 4.9856430292129517e-01 - <_> - - 0 -1 18 120097976 1060086728 -1389487875 -1137790177 - 1602117610 -1619061910 -35668997 -1343251714 - - -5.7169276475906372e-01 3.2476642727851868e-01 - <_> - - 0 -1 57 -293082161 1154481003 1111976386 1447558455 - 1677190926 69697407 1417113986 -1553 - - -4.1726982593536377e-01 4.2075014114379883e-01 - <_> - - 0 -1 29 -1313845040 -4467728 1134850749 -175787547 - -1194534214 -878738628 1573022699 883187712 - - -6.9330018758773804e-01 2.6707106828689575e-01 - <_> - - 0 -1 38 -78190598 -19340938 -1491289896 1809372080 524079264 - 491799709 1996433399 -16778277 - - -4.9384438991546631e-01 3.3502304553985596e-01 - <_> - - 0 -1 2 -1562189238 -691542934 -1197225897 -421099968 - 198047231 -273967949 954460927 -161480843 - - -5.9740668535232544e-01 2.6929464936256409e-01 - - <_> - 9 - -1.4638713598251343e+00 - - <_> - - 0 -1 53 -1 -4262913 2134212095 2145352703 -1058817 993552889 - 1055702527 -1 - - -5.8213829994201660e-01 4.4301766157150269e-01 - <_> - - 0 -1 23 -528260318 -75500601 -579380737 -2099850 -1063233 - -72614673 -69469185 -948439049 - - -4.8428696393966675e-01 3.6954393982887268e-01 - <_> - - 0 -1 72 -62975984 -109063308 -220856875 -212370443 - -1694834769 -4560166 872043843 -1157812201 - - -4.9901553988456726e-01 3.3146089315414429e-01 - <_> - - 0 -1 42 497556920 532413304 -1102144617 501201365 1535916763 - 1594493624 2142156779 1876574201 - - -6.4244377613067627e-01 2.4512745440006256e-01 - <_> - - 0 -1 4 1120136910 -521672978 111862860 -806363025 -516557833 - -670045001 1709173499 -67114049 - - -5.2952063083648682e-01 3.0346292257308960e-01 - <_> - - 0 -1 36 -997733374 -206319209 -415124517 -406932517 - -746852645 -7087441 -395582722 1111744578 - - -5.4006469249725342e-01 3.0697867274284363e-01 - <_> - - 0 -1 15 -720467974 -541134070 -1319464207 -1162493988 - -922194945 -1146112565 -741476891 -1349606460 - - -5.7269197702407837e-01 2.6673358678817749e-01 - <_> - - 0 -1 81 -100667637 657118705 -1242872032 2016867655 - -541072749 63672337 -136122523 -182452739 - - -4.3601182103157043e-01 3.6583909392356873e-01 - <_> - - 0 -1 66 -938523136 -69889 -1720331847 -2371401 -347348081 - -81010021 -646974889 56092062 - - -5.2380156517028809e-01 2.9095169901847839e-01 - - <_> - - 0 0 4 1 - <_> - - 0 1 2 3 - <_> - - 0 1 5 2 - <_> - - 0 1 6 1 - <_> - - 0 3 10 1 - <_> - - 0 5 3 2 - <_> - - 0 6 2 2 - <_> - - 0 9 5 1 - <_> - - 0 9 11 1 - <_> - - 0 10 4 1 - <_> - - 0 10 8 1 - <_> - - 1 0 3 1 - <_> - - 1 1 14 1 - <_> - - 1 4 2 3 - <_> - - 2 10 11 1 - <_> - - 2 10 14 1 - <_> - - 3 1 1 2 - <_> - - 3 4 2 3 - <_> - - 3 9 12 1 - <_> - - 4 0 8 1 - <_> - - 4 0 13 1 - <_> - - 4 2 1 2 - <_> - - 4 10 13 1 - <_> - - 5 0 1 2 - <_> - - 5 0 2 3 - <_> - - 5 7 1 2 - <_> - - 7 9 13 1 - <_> - - 10 0 2 3 - <_> - - 10 0 3 1 - <_> - - 10 1 8 1 - <_> - - 10 1 13 1 - <_> - - 10 2 12 1 - <_> - - 11 4 1 3 - <_> - - 11 10 5 1 - <_> - - 12 0 1 2 - <_> - - 13 0 1 2 - <_> - - 13 0 1 3 - <_> - - 13 0 9 1 - <_> - - 14 4 2 3 - <_> - - 15 10 10 1 - <_> - - 16 0 7 1 - <_> - - 17 0 4 1 - <_> - - 18 9 8 1 - <_> - - 19 0 8 1 - <_> - - 19 10 4 1 - <_> - - 20 0 1 2 - <_> - - 20 0 4 1 - <_> - - 20 7 2 2 - <_> - - 21 0 1 2 - <_> - - 21 4 2 2 - <_> - - 21 7 2 2 - <_> - - 21 9 7 1 - <_> - - 22 3 2 3 - <_> - - 24 7 1 2 - <_> - - 24 9 8 1 - <_> - - 25 0 1 2 - <_> - - 25 7 1 2 - <_> - - 26 3 2 1 - <_> - - 27 0 1 2 - <_> - - 27 0 6 1 - <_> - - 27 1 1 3 - <_> - - 28 0 1 3 - <_> - - 28 7 1 2 - <_> - - 30 0 1 2 - <_> - - 30 4 2 3 - <_> - - 30 7 1 2 - <_> - - 31 0 1 2 - <_> - - 31 3 3 3 - <_> - - 33 3 4 2 - <_> - - 34 6 3 2 - <_> - - 34 10 6 1 - <_> - - 35 7 1 2 - <_> - - 37 0 5 1 - <_> - - 37 4 2 3 - <_> - - 49 0 1 2 - <_> - - 49 1 1 1 - <_> - - 49 1 1 2 - <_> - - 49 2 1 1 - <_> - - 49 3 1 2 - <_> - - 49 4 1 2 - <_> - - 49 4 1 3 - <_> - - 49 8 1 1 - + + + + BOOST + LBP + 13 + 52 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 12 + + + <_> + 4 + -1.8097745180130005e+00 + + <_> + + 0 -1 40 805311953 -691727 2113524735 -2108461 -1078407169 + -4473889 -1146109953 -1074185492 + + -8.3389264345169067e-01 6.6482132673263550e-01 + <_> + + 0 -1 14 -1624723464 -4443984 -64703235 -1216868228 -7684673 + -1070151 -1618019585 -1433916280 + + -7.7608370780944824e-01 5.8700811862945557e-01 + <_> + + 0 -1 19 614727832 -1612616257 1745255677 -6475305 + -1366753605 -1079144802 1002113791 -1629746758 + + -6.9801986217498779e-01 5.1161581277847290e-01 + <_> + + 0 -1 45 -2147269630 -2099757 -772579841 -547884401 + -609488921 -76826409 -371196929 -1039424890 + + -6.3432163000106812e-01 4.9822175502777100e-01 + + <_> + 6 + -1.6889376640319824e+00 + + <_> + + 0 -1 37 823136753 -2542607 1599577599 -2237985 -1147536901 + -71591686 -1148470273 -1075901777 + + -7.8587698936462402e-01 5.9190028905868530e-01 + <_> + + 0 -1 22 1600978680 -33696264 -1084877327 -58928 -1146963009 + -5579557 -546776577 -1618474808 + + -6.5951651334762573e-01 5.8263260126113892e-01 + <_> + + 0 -1 21 -462951934 13628047 -509885886 -352329529 -899942545 + 1078690347 -202390009 -512232577 + + -6.3200807571411133e-01 5.2623480558395386e-01 + <_> + + 0 -1 51 487594460 -619080456 -1718052525 -1075865123 + -71540772 -76707172 -548220929 -128836 + + -5.7273632287979126e-01 5.5056226253509521e-01 + <_> + + 0 -1 60 -479993342 -527044089 -626798585 1653596839 + 1110959381 575397931 -77506010 1937757023 + + -6.4247721433639526e-01 5.0577211380004883e-01 + <_> + + 0 -1 46 268457040 -2138636 -6980099 -34121275 -1427580418 + -335560209 -1734673665 -1719069704 + + -6.7786401510238647e-01 4.5851442217826843e-01 + + <_> + 5 + -1.3629199266433716e+00 + + <_> + + 0 -1 78 -1270 -385885489 -1072442624 -101202993 -205784318 + 50579755 -223875328 -134217729 + + -8.0022150278091431e-01 4.2767858505249023e-01 + <_> + + 0 -1 43 805852408 -1240592 -1178348033 1566527989 + -1188320001 -67132721 -1148604417 -1077994501 + + -7.1916246414184570e-01 5.3092259168624878e-01 + <_> + + 0 -1 52 -2099542 279371931 570426146 25981188 -138186334 + 269492775 1459827403 2013265919 + + -7.1977400779724121e-01 4.2900100350379944e-01 + <_> + + 0 -1 17 -538974994 148694470 -1944156952 -1982269969 + 1299832780 267128979 -74908676 -1025 + + -6.0405021905899048e-01 5.2153891324996948e-01 + <_> + + 0 -1 39 928529624 -202827784 2018546933 -77671227 + -1633105201 -106405207 420279249 252182572 + + -7.9407596588134766e-01 4.4149830937385559e-01 + + <_> + 6 + -1.6914845705032349e+00 + + <_> + + 0 -1 74 -117447418 -203424957 -1333007190 -136315905 + -207628529 1527491074 -273419265 -469763089 + + -7.6240599155426025e-01 4.2571428418159485e-01 + <_> + + 0 -1 10 -881930242 -1081718372 759341055 -1079899620 + -9704705 -10834632 -80831553 -1366686534 + + -7.0847225189208984e-01 4.7101745009422302e-01 + <_> + + 0 -1 56 -65538 1059902300 1649449468 495195900 -1188287571 + 719866089 413712380 -17409 + + -6.0372650623321533e-01 5.1609545946121216e-01 + <_> + + 0 -1 34 -1073486846 -545265809 -2101249 -134217745 + -276824065 -538968073 -704659973 -1072701149 + + -5.2723455429077148e-01 5.9482514858245850e-01 + <_> + + 0 -1 59 -1744826288 -71879692 -1785233955 -323460 + -1164198417 -4576611 -1879442465 -1098374692 + + -6.6947019100189209e-01 4.8889532685279846e-01 + <_> + + 0 -1 5 -420483410 -1594899217 -532159314 -932782337 + 1943533343 1696295075 -134559905 -34078725 + + -6.8049335479736328e-01 4.5776519179344177e-01 + + <_> + 5 + -1.0514695644378662e+00 + + <_> + + 0 -1 0 -1899833345 -1060353 -545816577 -2369025 -1953517569 + -4200225 -1412707329 -1884303875 + + -7.1151864528656006e-01 4.1955834627151489e-01 + <_> + + 0 -1 26 470291672 1594456488 923230163 -2155043 -548005457 + -1156854119 -1148534817 -1074156579 + + -6.6359061002731323e-01 4.6632391214370728e-01 + <_> + + 0 -1 73 -2098180 1406937524 18879260 1072970683 1604073656 + 386138325 2141787068 -1 + + -6.0595369338989258e-01 4.8956662416458130e-01 + <_> + + 0 -1 48 -1065107456 -72363733 -83362849 -536886273 + -615521281 -73727349 -104368129 -1039669885 + + -5.7387554645538330e-01 5.1478314399719238e-01 + <_> + + 0 -1 30 -804220688 -604380848 93818999 1903284625 + -1837057622 -105322486 1001658814 146809632 + + -6.8071007728576660e-01 4.5826134085655212e-01 + + <_> + 7 + -1.2851260900497437e+00 + + <_> + + 0 -1 76 -469762302 -406855813 -900735066 -754977809 + -480248062 1467738447 -947127609 -738198529 + + -7.7277177572250366e-01 1.8757019937038422e-01 + <_> + + 0 -1 41 -1879043887 -697865 -8921089 -2661417 -1141637121 + -6917 -1080640513 -1077996323 + + -6.5664166212081909e-01 4.0080460906028748e-01 + <_> + + 0 -1 54 523766968 1071455224 930560885 -2098947 2106400509 + -1078052162 1591720959 -1075896931 + + -6.1509358882904053e-01 4.2310744524002075e-01 + <_> + + 0 -1 64 -8651778 -4277508 799804080 1006344958 -14402568 + 410268661 2147327960 -1 + + -4.9080836772918701e-01 5.2360612154006958e-01 + <_> + + 0 -1 24 1088939042 1810221070 -279576713 -404492753 + 1618469823 718008371 -149431041 1614276131 + + -6.7838019132614136e-01 3.8422819972038269e-01 + <_> + + 0 -1 58 -1073494493 -2129 -134254593 -134219777 -134217793 + -1 -306473026 -1018443994 + + -4.2494711279869080e-01 5.7714998722076416e-01 + <_> + + 0 -1 33 -5221000 -1114344044 -1099382275 -319523 1782890237 + -17110082 1000266751 -1909977844 + + -6.6518503427505493e-01 3.9107745885848999e-01 + + <_> + 7 + -1.3347427845001221e+00 + + <_> + + 0 -1 35 -1064835289 -262657 -304612481 -10753 -68160513 + -72365105 -337910785 -509876305 + + -6.8524187803268433e-01 3.7823274731636047e-01 + <_> + + 0 -1 6 -285278470 550824651 -1094793490 -1427444482 + -12229897 1936169977 -270537745 -1281 + + -6.9259029626846313e-01 3.6514124274253845e-01 + <_> + + 0 -1 50 -2 1072971740 1469594812 2147236670 1072445948 + 1071398300 258306045 2138439679 + + -6.4422893524169922e-01 3.5341870784759521e-01 + <_> + + 0 -1 77 -1065714 254791671 -731382782 -2101936449 1842282242 + 2013256162 1924135744 -469762069 + + -6.3399165868759155e-01 3.5231015086174011e-01 + <_> + + 0 -1 12 -561580302 -605386104 -1675307299 -35200410 + -1192691478 -7641158 -581569329 -1369166102 + + -5.7274460792541504e-01 4.2036578059196472e-01 + <_> + + 0 -1 55 -2138864126 -4201985 -642265613 -210241921 -19989761 + -3952177 -141558833 -2095331545 + + -5.2967888116836548e-01 4.3784245848655701e-01 + <_> + + 0 -1 8 -830297412 -7802014 1277567223 1068347800 2064507871 + -69260897 -70362181 -1083442246 + + -5.0855410099029541e-01 4.3978407979011536e-01 + + <_> + 7 + -1.1835207939147949e+00 + + <_> + + 0 -1 62 -1025 -4396129 1971420605 2147480543 -72745987 + 999057909 998865912 -1 + + -6.2991225719451904e-01 4.2762723565101624e-01 + <_> + + 0 -1 11 -1499277837 -1056769 -575146113 -3147017 -1906574593 + -4199525 -1409286145 -1360048899 + + -5.1901364326477051e-01 4.7817090153694153e-01 + <_> + + 0 -1 65 -1 1069088700 -42160132 2147384700 -216067 183271421 + 1070607356 -1 + + -3.9919072389602661e-01 5.6214183568954468e-01 + <_> + + 0 -1 7 -357904642 231662471 10134269 1534886015 1336724732 + 1600028668 939520767 -805610049 + + -5.3103089332580566e-01 4.1148453950881958e-01 + <_> + + 0 -1 27 1078457858 -137102849 -1002967209 -671383873 + 1475047263 1759237042 2053111259 1079494146 + + -6.8956327438354492e-01 3.1366679072380066e-01 + <_> + + 0 -1 69 1543485614 532452284 465371692 1071593917 805052841 + 114115064 801844479 2145353727 + + -6.5592241287231445e-01 3.1573730707168579e-01 + <_> + + 0 -1 70 -1621418188 -12621959 -1156064295 -1619035693 + -1147405636 -72399880 264178616 162469136 + + -6.0899454355239868e-01 3.2693719863891602e-01 + + <_> + 8 + -1.3792396783828735e+00 + + <_> + + 0 -1 63 -896547289 -69206021 -113517697 -1052225 -68420609 + -67116645 -262145 -746600513 + + -6.4787888526916504e-01 3.4486734867095947e-01 + <_> + + 0 -1 16 682098471 16776910 -37761185 -67637249 -10748929 + -224138833 -11537429 -356519169 + + -5.3469586372375488e-01 4.4898313283920288e-01 + <_> + + 0 -1 80 -2097156 -550503779 -136588804 -1507362 -71830028 + 356891563 -3596 -33554441 + + -4.7742679715156555e-01 4.9222531914710999e-01 + <_> + + 0 -1 31 -9447425 -18531 1463749625 1467983669 -1619632146 + -1088585865 1599745195 2066940426 + + -4.2506697773933411e-01 5.0970840454101562e-01 + <_> + + 0 -1 9 -554774785 469641207 -1631651073 1064967857 + -689152273 -591873 -71685 -10289665 + + -3.9916789531707764e-01 5.2942800521850586e-01 + <_> + + 0 -1 32 -460868 -1149758532 -1955583982 999878622 995457144 + 100663605 769463536 1609564143 + + -6.4832550287246704e-01 3.3265480399131775e-01 + <_> + + 0 -1 61 -525614592 -73410230 -1055140389 1397186271 + 1796729711 -81276894 -10489481 1393553927 + + -5.8127319812774658e-01 3.2805305719375610e-01 + <_> + + 0 -1 71 -69206083 2140951352 1605407413 1073482444 + -1166230804 984105561 265051901 -4202499 + + -4.3958845734596252e-01 4.4159027934074402e-01 + + <_> + 9 + -1.6337682008743286e+00 + + <_> + + 0 -1 49 -1 -254281737 -847263745 -704649317 -547359277 + -214437129 -137368609 -1025 + + -5.8612054586410522e-01 5.3436428308486938e-01 + <_> + + 0 -1 3 -1964573706 -2163202 -629999617 1724277282 + -1345454081 -54273 -1947226113 -134494477 + + -5.9594768285751343e-01 3.4550479054450989e-01 + <_> + + 0 -1 25 -33624106 1979243351 -1684228388 -1327580354 + 1869634120 1507656105 1004215260 -65537 + + -5.5408185720443726e-01 3.4455263614654541e-01 + <_> + + 0 -1 20 216 -273853464 -1746981891 2147439095 -1342177362 + -1882457730 535869183 -1892939286 + + -6.8447190523147583e-01 2.6072457432746887e-01 + <_> + + 0 -1 79 -9470 -881859202 -472124544 1722743726 2040260640 + 88788209 -311968000 -420088102 + + -5.8676868677139282e-01 3.3556821942329407e-01 + <_> + + 0 -1 47 2147466972 2069665750 405150428 1073037215 721199016 + 465318864 1859398396 2139054079 + + -6.0411739349365234e-01 2.8773531317710876e-01 + <_> + + 0 -1 44 -1073955720 2142794040 2033980733 -1107354732 + -1141629188 -5309192 -340984065 796396953 + + -7.0512706041336060e-01 2.0565895736217499e-01 + <_> + + 0 -1 1 -285218257 641662811 -317140617 -1615220229 + 1397455865 1830527419 -480512675 1879048055 + + -4.5888698101043701e-01 3.7875139713287354e-01 + <_> + + 0 -1 67 -136335093 1363122398 -1475206391 2001653675 + -275119445 1368433380 831138571 2132278783 + + -4.4568619132041931e-01 3.9391869306564331e-01 + + <_> + 9 + -1.6722478866577148e+00 + + <_> + + 0 -1 13 -2097665 285007871 -14702337 -1073745441 -603979783 + -12805 -7606276 -33 + + -6.4239740371704102e-01 3.0229949951171875e-01 + <_> + + 0 -1 68 -1297 -605028505 1663525735 -4983053 -1132728133 + -326122023 -1512309265 -1049601 + + -3.4561732411384583e-01 6.5836638212203979e-01 + <_> + + 0 -1 28 -1879027627 -11273 -38282337 -69730305 -1192231939 + -263686 -1109656581 -1142203922 + + -4.3300274014472961e-01 4.2989093065261841e-01 + <_> + + 0 -1 75 -50337789 2147446389 -16778341 1374150655 -134224126 + 2013265911 -285214754 -202385409 + + -3.8676849007606506e-01 4.9856430292129517e-01 + <_> + + 0 -1 18 120097976 1060086728 -1389487875 -1137790177 + 1602117610 -1619061910 -35668997 -1343251714 + + -5.7169276475906372e-01 3.2476642727851868e-01 + <_> + + 0 -1 57 -293082161 1154481003 1111976386 1447558455 + 1677190926 69697407 1417113986 -1553 + + -4.1726982593536377e-01 4.2075014114379883e-01 + <_> + + 0 -1 29 -1313845040 -4467728 1134850749 -175787547 + -1194534214 -878738628 1573022699 883187712 + + -6.9330018758773804e-01 2.6707106828689575e-01 + <_> + + 0 -1 38 -78190598 -19340938 -1491289896 1809372080 524079264 + 491799709 1996433399 -16778277 + + -4.9384438991546631e-01 3.3502304553985596e-01 + <_> + + 0 -1 2 -1562189238 -691542934 -1197225897 -421099968 + 198047231 -273967949 954460927 -161480843 + + -5.9740668535232544e-01 2.6929464936256409e-01 + + <_> + 9 + -1.4638713598251343e+00 + + <_> + + 0 -1 53 -1 -4262913 2134212095 2145352703 -1058817 993552889 + 1055702527 -1 + + -5.8213829994201660e-01 4.4301766157150269e-01 + <_> + + 0 -1 23 -528260318 -75500601 -579380737 -2099850 -1063233 + -72614673 -69469185 -948439049 + + -4.8428696393966675e-01 3.6954393982887268e-01 + <_> + + 0 -1 72 -62975984 -109063308 -220856875 -212370443 + -1694834769 -4560166 872043843 -1157812201 + + -4.9901553988456726e-01 3.3146089315414429e-01 + <_> + + 0 -1 42 497556920 532413304 -1102144617 501201365 1535916763 + 1594493624 2142156779 1876574201 + + -6.4244377613067627e-01 2.4512745440006256e-01 + <_> + + 0 -1 4 1120136910 -521672978 111862860 -806363025 -516557833 + -670045001 1709173499 -67114049 + + -5.2952063083648682e-01 3.0346292257308960e-01 + <_> + + 0 -1 36 -997733374 -206319209 -415124517 -406932517 + -746852645 -7087441 -395582722 1111744578 + + -5.4006469249725342e-01 3.0697867274284363e-01 + <_> + + 0 -1 15 -720467974 -541134070 -1319464207 -1162493988 + -922194945 -1146112565 -741476891 -1349606460 + + -5.7269197702407837e-01 2.6673358678817749e-01 + <_> + + 0 -1 81 -100667637 657118705 -1242872032 2016867655 + -541072749 63672337 -136122523 -182452739 + + -4.3601182103157043e-01 3.6583909392356873e-01 + <_> + + 0 -1 66 -938523136 -69889 -1720331847 -2371401 -347348081 + -81010021 -646974889 56092062 + + -5.2380156517028809e-01 2.9095169901847839e-01 + + <_> + + 0 0 4 1 + <_> + + 0 1 2 3 + <_> + + 0 1 5 2 + <_> + + 0 1 6 1 + <_> + + 0 3 10 1 + <_> + + 0 5 3 2 + <_> + + 0 6 2 2 + <_> + + 0 9 5 1 + <_> + + 0 9 11 1 + <_> + + 0 10 4 1 + <_> + + 0 10 8 1 + <_> + + 1 0 3 1 + <_> + + 1 1 14 1 + <_> + + 1 4 2 3 + <_> + + 2 10 11 1 + <_> + + 2 10 14 1 + <_> + + 3 1 1 2 + <_> + + 3 4 2 3 + <_> + + 3 9 12 1 + <_> + + 4 0 8 1 + <_> + + 4 0 13 1 + <_> + + 4 2 1 2 + <_> + + 4 10 13 1 + <_> + + 5 0 1 2 + <_> + + 5 0 2 3 + <_> + + 5 7 1 2 + <_> + + 7 9 13 1 + <_> + + 10 0 2 3 + <_> + + 10 0 3 1 + <_> + + 10 1 8 1 + <_> + + 10 1 13 1 + <_> + + 10 2 12 1 + <_> + + 11 4 1 3 + <_> + + 11 10 5 1 + <_> + + 12 0 1 2 + <_> + + 13 0 1 2 + <_> + + 13 0 1 3 + <_> + + 13 0 9 1 + <_> + + 14 4 2 3 + <_> + + 15 10 10 1 + <_> + + 16 0 7 1 + <_> + + 17 0 4 1 + <_> + + 18 9 8 1 + <_> + + 19 0 8 1 + <_> + + 19 10 4 1 + <_> + + 20 0 1 2 + <_> + + 20 0 4 1 + <_> + + 20 7 2 2 + <_> + + 21 0 1 2 + <_> + + 21 4 2 2 + <_> + + 21 7 2 2 + <_> + + 21 9 7 1 + <_> + + 22 3 2 3 + <_> + + 24 7 1 2 + <_> + + 24 9 8 1 + <_> + + 25 0 1 2 + <_> + + 25 7 1 2 + <_> + + 26 3 2 1 + <_> + + 27 0 1 2 + <_> + + 27 0 6 1 + <_> + + 27 1 1 3 + <_> + + 28 0 1 3 + <_> + + 28 7 1 2 + <_> + + 30 0 1 2 + <_> + + 30 4 2 3 + <_> + + 30 7 1 2 + <_> + + 31 0 1 2 + <_> + + 31 3 3 3 + <_> + + 33 3 4 2 + <_> + + 34 6 3 2 + <_> + + 34 10 6 1 + <_> + + 35 7 1 2 + <_> + + 37 0 5 1 + <_> + + 37 4 2 3 + <_> + + 49 0 1 2 + <_> + + 49 1 1 1 + <_> + + 49 1 1 2 + <_> + + 49 2 1 1 + <_> + + 49 3 1 2 + <_> + + 49 4 1 2 + <_> + + 49 4 1 3 + <_> + + 49 8 1 1 + diff --git a/src/ios/lib/openalpr.framework/runtime_data/region/kr2.xml b/src/ios/lib/openalpr.framework/runtime_data/region/kr2.xml index 963a7b2..9bd921b 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/region/kr2.xml +++ b/src/ios/lib/openalpr.framework/runtime_data/region/kr2.xml @@ -1,441 +1,441 @@ - - - - BOOST - LBP - 18 - 36 - - GAB - 9.9500000476837158e-01 - 5.0000000000000000e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 9 - - - <_> - 4 - -1.9250459671020508e+00 - - <_> - - 0 -1 3 -74058753 -2240037 92342463 -1088484449 -89392129 - -423217 -1414918657 -1074057249 - - -9.1852694749832153e-01 5.8924204111099243e-01 - <_> - - 0 -1 17 -205009214 -1056318 -766979189 -7351861 -340788289 - -73422278 -45481985 -1055745 - - -8.7003403902053833e-01 5.9477519989013672e-01 - <_> - - 0 -1 39 -737161214 1510691403 1375814019 -741344813 - -313527334 1930679011 -1173357621 -202378241 - - -7.6264554262161255e-01 6.5781676769256592e-01 - <_> - - 0 -1 22 -253570880 -35673917 1141244107 -136615525 - -336680278 2047803533 -341144917 -1410364497 - - -7.9287588596343994e-01 6.2616056203842163e-01 - - <_> - 4 - -1.8913023471832275e+00 - - <_> - - 0 -1 5 -1025 -542241 -1114391041 991897887 -4719617 - -67376401 -67109889 -4194305 - - -9.0746754407882690e-01 5.4716980457305908e-01 - <_> - - 0 -1 8 1364324831 287150263 991934431 870298523 -1179652 - -4268358 -1049089 -67133441 - - -8.3418697118759155e-01 4.1235050559043884e-01 - <_> - - 0 -1 30 -204742006 -68173282 -1035517875 -11547813 - -2006269234 -1903509269 -1043596549 -1009781761 - - -6.8528896570205688e-01 5.9535169601440430e-01 - <_> - - 0 -1 7 2102503610 -537017347 -1117805825 -6321512 -29655298 - -4461569 -67387718 -4216086 - - -7.1089631319046021e-01 5.9832674264907837e-01 - - <_> - 4 - -1.8885457515716553e+00 - - <_> - - 0 -1 24 -17409 -133121 -2156033 -2099713 -3163201 -4194305 - 1068182463 -1 - - -8.8507246971130371e-01 3.4729063510894775e-01 - <_> - - 0 -1 11 1971319519 1364712703 1906048511 1971313663 - -119537713 -1025 -2097153 -65 - - -7.6710444688796997e-01 5.2994787693023682e-01 - <_> - - 0 -1 20 421027824 -1074258088 -6447171 -1088939864 - -1076191236 -21243208 -1153916999 -1375207288 - - -7.5512754917144775e-01 4.9961245059967041e-01 - <_> - - 0 -1 21 -1069291349 -269488465 -1935007734 -1064310785 - -810833749 -320093970 -2098558838 -890246517 - - -7.1592825651168823e-01 5.1875865459442139e-01 - - <_> - 5 - -1.4479038715362549e+00 - - <_> - - 0 -1 24 -2097153 -3016225 -69780481 -2561 -543179841 - -2106917 1062144703 -1 - - -8.8085246086120605e-01 3.9553219079971313e-01 - <_> - - 0 -1 4 -11535480 -136318081 -1352213025 -33 -7340033 -5125 - -539231233 -1 - - -7.9555577039718628e-01 3.8638621568679810e-01 - <_> - - 0 -1 26 1666687567 -138419409 1431169023 1979709375 - -84938757 -67468376 2010119167 1931465710 - - -7.2934675216674805e-01 4.5863339304924011e-01 - <_> - - 0 -1 23 370751760 -1080079613 -1621633699 2145213273 - -72237121 -4460546 -1625343045 -1089963000 - - -6.7171323299407959e-01 5.2594864368438721e-01 - <_> - - 0 -1 13 -740967691 402111487 402635743 597566427 2141040639 - -626031681 -134219009 -1140876545 - - -7.4035781621932983e-01 4.8955345153808594e-01 - - <_> - 5 - -1.4493496417999268e+00 - - <_> - - 0 -1 36 -70255617 -513 -805569057 -9437193 38267119 - -81795153 1200095231 -1 - - -8.6666667461395264e-01 2.8157895803451538e-01 - <_> - - 0 -1 34 -146806269 -36709626 -275521533 -7341054 -23073297 - 1145819298 -470822709 -685260285 - - -7.5007098913192749e-01 3.8144519925117493e-01 - <_> - - 0 -1 0 -470 -420744786 -27876758 -492833849 1078935812 - 38522503 -698886814 -413669401 - - -6.8918168544769287e-01 4.7556585073471069e-01 - <_> - - 0 -1 31 -35668228 -548293156 -649062412 -683295756 - -222511140 525089516 -84096259 -547488772 - - -7.3100674152374268e-01 4.4898805022239685e-01 - <_> - - 0 -1 15 530626809 -42860545 462826171 -1342320837 - -1081132033 -17953 991895727 -1076164673 - - -7.0868730545043945e-01 4.6778148412704468e-01 - - <_> - 5 - -1.8017189502716064e+00 - - <_> - - 0 -1 9 -65537 -328706 -4915201 -1087755586 -67239937 -5669 - -1 -257 - - -8.8792204856872559e-01 -4.3837882578372955e-02 - <_> - - 0 -1 32 1347550207 -571148323 1543487487 -35651587 828322815 - -1700 335492091 -2097155 - - -7.3766022920608521e-01 3.4690326452255249e-01 - <_> - - 0 -1 25 -9846 1605333483 -1059752448 -1812996489 1120071946 - 1455643262 917870242 -680009761 - - -7.2934591770172119e-01 3.9320716261863708e-01 - <_> - - 0 -1 38 -473174014 2053046126 -134357141 -137895969 - -1074790417 -67121353 -1179649 -152043561 - - -6.9844788312911987e-01 4.0797707438468933e-01 - <_> - - 0 -1 19 -691606870 -201856018 1198436335 1476325343 - -571216913 -134486513 -51401745 -302518322 - - -7.1498012542724609e-01 4.5069092512130737e-01 - - <_> - 5 - -1.7567682266235352e+00 - - <_> - - 0 -1 2 -513 -513 -35800577 1071593915 -3407873 -4423 - -2424833 -1 - - -8.7326997518539429e-01 8.5594989359378815e-02 - <_> - - 0 -1 14 -671154178 -69533698 -1617387522 531245730 - 2147213310 -269943809 -154207233 -5608513 - - -7.5811719894409180e-01 2.2069078683853149e-01 - <_> - - 0 -1 18 1035212284 -2296420 555221692 -1113652072 2140332029 - -5711169 -1080512518 -1074218515 - - -7.2789901494979858e-01 3.4770554304122925e-01 - <_> - - 0 -1 29 -993533265 -170137041 1736835031 1465382903 - 1120924671 -353441050 1615000047 78111731 - - -7.4440920352935791e-01 3.7494036555290222e-01 - <_> - - 0 -1 1 -1638622 -75910 1059633056 -271627282 -8929355 - -2887681 -336725058 1603272574 - - -7.9733246564865112e-01 3.6811915040016174e-01 - - <_> - 5 - -1.6873530149459839e+00 - - <_> - - 0 -1 6 -1 -17409 -1075970081 1067395503 -104465153 -2296833 - -1048833 -5 - - -8.8755303621292114e-01 -1.0392609983682632e-01 - <_> - - 0 -1 33 -140779553 -2819075 -144859137 -1048609 1400850413 - -69476625 858985387 -67111937 - - -6.8982315063476562e-01 3.1153544783592224e-01 - <_> - - 0 -1 40 -67114361 1074756399 -1835343310 1611136899 - 2103432003 6145295 -458536794 -251922697 - - -5.9810346364974976e-01 4.8262387514114380e-01 - <_> - - 0 -1 12 916468092 -368898 -1617880065 736960766 1918926780 - -69683 -1049089 -34838 - - -6.5626806020736694e-01 4.2501708865165710e-01 - <_> - - 0 -1 37 -1107517956 1039792092 498074680 -1078117488 - -1075904580 -333315 -806273124 -1145135624 - - -6.4059084653854370e-01 4.1962918639183044e-01 - - <_> - 5 - -1.4620362520217896e+00 - - <_> - - 0 -1 27 -67110145 -1061 -578823942 -1413 -3146753 -7810486 - -263429 -1051909 - - -8.4640258550643921e-01 1.0389610379934311e-01 - <_> - - 0 -1 10 178948351 -536880385 -2629765 -1060867 -1409352705 - -286305 -1108431937 -1347517236 - - -6.6707128286361694e-01 3.3162760734558105e-01 - <_> - - 0 -1 16 -202923265 -67115041 -347365205 1539287789 - -135535625 -201592101 -275779841 -338695441 - - -5.3917574882507324e-01 5.0910735130310059e-01 - <_> - - 0 -1 35 -167773242 -153094230 -2021362640 1066198967 - -249269048 1441035252 925758395 1570237951 - - -6.9788902997970581e-01 3.8413587212562561e-01 - <_> - - 0 -1 28 2135129856 2013224111 -35652133 2145381311 -4718600 - -524289 -542114934 -11862262 - - -7.1007943153381348e-01 3.6536604166030884e-01 - - <_> - - 0 3 1 2 - <_> - - 0 5 4 4 - <_> - - 1 3 7 2 - <_> - - 1 3 11 2 - <_> - - 2 2 3 5 - <_> - - 2 3 7 2 - <_> - - 2 3 8 2 - <_> - - 3 0 10 3 - <_> - - 3 4 5 2 - <_> - - 3 4 7 1 - <_> - - 4 0 7 1 - <_> - - 4 2 4 4 - <_> - - 4 5 5 1 - <_> - - 5 3 4 2 - <_> - - 6 4 4 1 - <_> - - 7 3 9 2 - <_> - - 8 1 3 3 - <_> - - 8 4 4 3 - <_> - - 8 15 4 1 - <_> - - 9 3 3 3 - <_> - - 9 15 7 1 - <_> - - 10 2 2 3 - <_> - - 11 4 2 2 - <_> - - 12 0 7 1 - <_> - - 13 3 7 2 - <_> - - 13 9 2 2 - <_> - - 14 0 3 5 - <_> - - 14 2 3 2 - <_> - - 16 0 5 2 - <_> - - 16 3 2 3 - <_> - - 17 3 2 4 - <_> - - 18 12 3 2 - <_> - - 19 4 5 2 - <_> - - 20 3 4 2 - <_> - - 21 0 2 4 - <_> - - 22 8 2 3 - <_> - - 23 2 3 4 - <_> - - 26 15 3 1 - <_> - - 27 3 3 4 - <_> - - 29 3 2 4 - <_> - - 33 6 1 2 - + + + + BOOST + LBP + 18 + 36 + + GAB + 9.9500000476837158e-01 + 5.0000000000000000e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 9 + + + <_> + 4 + -1.9250459671020508e+00 + + <_> + + 0 -1 3 -74058753 -2240037 92342463 -1088484449 -89392129 + -423217 -1414918657 -1074057249 + + -9.1852694749832153e-01 5.8924204111099243e-01 + <_> + + 0 -1 17 -205009214 -1056318 -766979189 -7351861 -340788289 + -73422278 -45481985 -1055745 + + -8.7003403902053833e-01 5.9477519989013672e-01 + <_> + + 0 -1 39 -737161214 1510691403 1375814019 -741344813 + -313527334 1930679011 -1173357621 -202378241 + + -7.6264554262161255e-01 6.5781676769256592e-01 + <_> + + 0 -1 22 -253570880 -35673917 1141244107 -136615525 + -336680278 2047803533 -341144917 -1410364497 + + -7.9287588596343994e-01 6.2616056203842163e-01 + + <_> + 4 + -1.8913023471832275e+00 + + <_> + + 0 -1 5 -1025 -542241 -1114391041 991897887 -4719617 + -67376401 -67109889 -4194305 + + -9.0746754407882690e-01 5.4716980457305908e-01 + <_> + + 0 -1 8 1364324831 287150263 991934431 870298523 -1179652 + -4268358 -1049089 -67133441 + + -8.3418697118759155e-01 4.1235050559043884e-01 + <_> + + 0 -1 30 -204742006 -68173282 -1035517875 -11547813 + -2006269234 -1903509269 -1043596549 -1009781761 + + -6.8528896570205688e-01 5.9535169601440430e-01 + <_> + + 0 -1 7 2102503610 -537017347 -1117805825 -6321512 -29655298 + -4461569 -67387718 -4216086 + + -7.1089631319046021e-01 5.9832674264907837e-01 + + <_> + 4 + -1.8885457515716553e+00 + + <_> + + 0 -1 24 -17409 -133121 -2156033 -2099713 -3163201 -4194305 + 1068182463 -1 + + -8.8507246971130371e-01 3.4729063510894775e-01 + <_> + + 0 -1 11 1971319519 1364712703 1906048511 1971313663 + -119537713 -1025 -2097153 -65 + + -7.6710444688796997e-01 5.2994787693023682e-01 + <_> + + 0 -1 20 421027824 -1074258088 -6447171 -1088939864 + -1076191236 -21243208 -1153916999 -1375207288 + + -7.5512754917144775e-01 4.9961245059967041e-01 + <_> + + 0 -1 21 -1069291349 -269488465 -1935007734 -1064310785 + -810833749 -320093970 -2098558838 -890246517 + + -7.1592825651168823e-01 5.1875865459442139e-01 + + <_> + 5 + -1.4479038715362549e+00 + + <_> + + 0 -1 24 -2097153 -3016225 -69780481 -2561 -543179841 + -2106917 1062144703 -1 + + -8.8085246086120605e-01 3.9553219079971313e-01 + <_> + + 0 -1 4 -11535480 -136318081 -1352213025 -33 -7340033 -5125 + -539231233 -1 + + -7.9555577039718628e-01 3.8638621568679810e-01 + <_> + + 0 -1 26 1666687567 -138419409 1431169023 1979709375 + -84938757 -67468376 2010119167 1931465710 + + -7.2934675216674805e-01 4.5863339304924011e-01 + <_> + + 0 -1 23 370751760 -1080079613 -1621633699 2145213273 + -72237121 -4460546 -1625343045 -1089963000 + + -6.7171323299407959e-01 5.2594864368438721e-01 + <_> + + 0 -1 13 -740967691 402111487 402635743 597566427 2141040639 + -626031681 -134219009 -1140876545 + + -7.4035781621932983e-01 4.8955345153808594e-01 + + <_> + 5 + -1.4493496417999268e+00 + + <_> + + 0 -1 36 -70255617 -513 -805569057 -9437193 38267119 + -81795153 1200095231 -1 + + -8.6666667461395264e-01 2.8157895803451538e-01 + <_> + + 0 -1 34 -146806269 -36709626 -275521533 -7341054 -23073297 + 1145819298 -470822709 -685260285 + + -7.5007098913192749e-01 3.8144519925117493e-01 + <_> + + 0 -1 0 -470 -420744786 -27876758 -492833849 1078935812 + 38522503 -698886814 -413669401 + + -6.8918168544769287e-01 4.7556585073471069e-01 + <_> + + 0 -1 31 -35668228 -548293156 -649062412 -683295756 + -222511140 525089516 -84096259 -547488772 + + -7.3100674152374268e-01 4.4898805022239685e-01 + <_> + + 0 -1 15 530626809 -42860545 462826171 -1342320837 + -1081132033 -17953 991895727 -1076164673 + + -7.0868730545043945e-01 4.6778148412704468e-01 + + <_> + 5 + -1.8017189502716064e+00 + + <_> + + 0 -1 9 -65537 -328706 -4915201 -1087755586 -67239937 -5669 + -1 -257 + + -8.8792204856872559e-01 -4.3837882578372955e-02 + <_> + + 0 -1 32 1347550207 -571148323 1543487487 -35651587 828322815 + -1700 335492091 -2097155 + + -7.3766022920608521e-01 3.4690326452255249e-01 + <_> + + 0 -1 25 -9846 1605333483 -1059752448 -1812996489 1120071946 + 1455643262 917870242 -680009761 + + -7.2934591770172119e-01 3.9320716261863708e-01 + <_> + + 0 -1 38 -473174014 2053046126 -134357141 -137895969 + -1074790417 -67121353 -1179649 -152043561 + + -6.9844788312911987e-01 4.0797707438468933e-01 + <_> + + 0 -1 19 -691606870 -201856018 1198436335 1476325343 + -571216913 -134486513 -51401745 -302518322 + + -7.1498012542724609e-01 4.5069092512130737e-01 + + <_> + 5 + -1.7567682266235352e+00 + + <_> + + 0 -1 2 -513 -513 -35800577 1071593915 -3407873 -4423 + -2424833 -1 + + -8.7326997518539429e-01 8.5594989359378815e-02 + <_> + + 0 -1 14 -671154178 -69533698 -1617387522 531245730 + 2147213310 -269943809 -154207233 -5608513 + + -7.5811719894409180e-01 2.2069078683853149e-01 + <_> + + 0 -1 18 1035212284 -2296420 555221692 -1113652072 2140332029 + -5711169 -1080512518 -1074218515 + + -7.2789901494979858e-01 3.4770554304122925e-01 + <_> + + 0 -1 29 -993533265 -170137041 1736835031 1465382903 + 1120924671 -353441050 1615000047 78111731 + + -7.4440920352935791e-01 3.7494036555290222e-01 + <_> + + 0 -1 1 -1638622 -75910 1059633056 -271627282 -8929355 + -2887681 -336725058 1603272574 + + -7.9733246564865112e-01 3.6811915040016174e-01 + + <_> + 5 + -1.6873530149459839e+00 + + <_> + + 0 -1 6 -1 -17409 -1075970081 1067395503 -104465153 -2296833 + -1048833 -5 + + -8.8755303621292114e-01 -1.0392609983682632e-01 + <_> + + 0 -1 33 -140779553 -2819075 -144859137 -1048609 1400850413 + -69476625 858985387 -67111937 + + -6.8982315063476562e-01 3.1153544783592224e-01 + <_> + + 0 -1 40 -67114361 1074756399 -1835343310 1611136899 + 2103432003 6145295 -458536794 -251922697 + + -5.9810346364974976e-01 4.8262387514114380e-01 + <_> + + 0 -1 12 916468092 -368898 -1617880065 736960766 1918926780 + -69683 -1049089 -34838 + + -6.5626806020736694e-01 4.2501708865165710e-01 + <_> + + 0 -1 37 -1107517956 1039792092 498074680 -1078117488 + -1075904580 -333315 -806273124 -1145135624 + + -6.4059084653854370e-01 4.1962918639183044e-01 + + <_> + 5 + -1.4620362520217896e+00 + + <_> + + 0 -1 27 -67110145 -1061 -578823942 -1413 -3146753 -7810486 + -263429 -1051909 + + -8.4640258550643921e-01 1.0389610379934311e-01 + <_> + + 0 -1 10 178948351 -536880385 -2629765 -1060867 -1409352705 + -286305 -1108431937 -1347517236 + + -6.6707128286361694e-01 3.3162760734558105e-01 + <_> + + 0 -1 16 -202923265 -67115041 -347365205 1539287789 + -135535625 -201592101 -275779841 -338695441 + + -5.3917574882507324e-01 5.0910735130310059e-01 + <_> + + 0 -1 35 -167773242 -153094230 -2021362640 1066198967 + -249269048 1441035252 925758395 1570237951 + + -6.9788902997970581e-01 3.8413587212562561e-01 + <_> + + 0 -1 28 2135129856 2013224111 -35652133 2145381311 -4718600 + -524289 -542114934 -11862262 + + -7.1007943153381348e-01 3.6536604166030884e-01 + + <_> + + 0 3 1 2 + <_> + + 0 5 4 4 + <_> + + 1 3 7 2 + <_> + + 1 3 11 2 + <_> + + 2 2 3 5 + <_> + + 2 3 7 2 + <_> + + 2 3 8 2 + <_> + + 3 0 10 3 + <_> + + 3 4 5 2 + <_> + + 3 4 7 1 + <_> + + 4 0 7 1 + <_> + + 4 2 4 4 + <_> + + 4 5 5 1 + <_> + + 5 3 4 2 + <_> + + 6 4 4 1 + <_> + + 7 3 9 2 + <_> + + 8 1 3 3 + <_> + + 8 4 4 3 + <_> + + 8 15 4 1 + <_> + + 9 3 3 3 + <_> + + 9 15 7 1 + <_> + + 10 2 2 3 + <_> + + 11 4 2 2 + <_> + + 12 0 7 1 + <_> + + 13 3 7 2 + <_> + + 13 9 2 2 + <_> + + 14 0 3 5 + <_> + + 14 2 3 2 + <_> + + 16 0 5 2 + <_> + + 16 3 2 3 + <_> + + 17 3 2 4 + <_> + + 18 12 3 2 + <_> + + 19 4 5 2 + <_> + + 20 3 4 2 + <_> + + 21 0 2 4 + <_> + + 22 8 2 3 + <_> + + 23 2 3 4 + <_> + + 26 15 3 1 + <_> + + 27 3 3 4 + <_> + + 29 3 2 4 + <_> + + 33 6 1 2 + diff --git a/src/ios/lib/openalpr.framework/runtime_data/region/us.xml b/src/ios/lib/openalpr.framework/runtime_data/region/us.xml index 93e4af2..2dde01f 100644 --- a/src/ios/lib/openalpr.framework/runtime_data/region/us.xml +++ b/src/ios/lib/openalpr.framework/runtime_data/region/us.xml @@ -1,2551 +1,2551 @@ - - - - BOOST - LBP - 18 - 36 - - GAB - 9.9500000476837158e-01 - 4.4999998807907104e-01 - 9.4999999999999996e-01 - 1 - 100 - - 256 - 1 - 17 - - - <_> - 5 - -1.6074185371398926e+00 - - <_> - - 0 -1 260 -286277120 174374 -487661056 -1058275700 1194804992 - 225095 -998772480 -202375169 - - -5.5654716491699219e-01 8.0171042680740356e-01 - <_> - - 0 -1 20 -342891006 -1033195986 1856252450 -1062802910 - 661726532 1179932483 -177793536 -134219817 - - -6.0683506727218628e-01 6.9047766923904419e-01 - <_> - - 0 -1 64 1358958608 -721415659 286261721 1603863003 - -619134817 -1123538802 420086683 991758991 - - -6.2987571954727173e-01 5.9246963262557983e-01 - <_> - - 0 -1 193 -1073512446 -777805822 -2139684581 -783301117 - -2105302838 -2139667934 1078190215 -803212537 - - -5.2881276607513428e-01 6.4907532930374146e-01 - <_> - - 0 -1 125 -105079848 419692680 268435456 386400776 956826300 - 268962496 402653388 -1069665 - - -5.8266061544418335e-01 5.6521910429000854e-01 - - <_> - 6 - -1.0134286880493164e+00 - - <_> - - 0 -1 94 268435472 285218064 464917949 360560017 -1631809362 - -1074249812 212339386 -1079443448 - - -4.5969772338867188e-01 7.2184652090072632e-01 - <_> - - 0 -1 264 -1055230 -2132094970 1522782208 -1865488446 - -160460288 426831 -239083008 -184549393 - - -5.5715596675872803e-01 5.5740809440612793e-01 - <_> - - 0 -1 89 -1073512446 -750262246 1612181323 -241712057 - -536370706 -87562613 -1073356338 -783818237 - - -4.9830266833305359e-01 5.8845627307891846e-01 - <_> - - 0 -1 40 75531512 -1080031088 -1924518403 -1660943824 - 68163832 -1649934168 201603577 251658408 - - -6.2323546409606934e-01 4.3935534358024597e-01 - <_> - - 0 -1 153 -1073495038 -212339694 272084497 -683317309 - -1070863634 -362310394 -1013976081 -1073233397 - - -4.9089384078979492e-01 5.5601859092712402e-01 - <_> - - 0 -1 187 -1072466 961592942 -592705488 287353834 2099253432 - 269753198 1573261038 -3146001 - - -4.4843783974647522e-01 5.5326616764068604e-01 - - <_> - 7 - -1.4775381088256836e+00 - - <_> - - 0 -1 90 268440029 2136817663 459096063 2147292127 496541439 - -6340609 465289215 462293642 - - -4.9297222495079041e-01 6.8286538124084473e-01 - <_> - - 0 -1 5 -428890622 1089466031 -1032976798 -1023422750 - 1114064710 1148187463 -134744065 -134219785 - - -4.8018595576286316e-01 5.6948053836822510e-01 - <_> - - 0 -1 121 469767184 487588084 289153021 521930004 -1433892612 - -1074227012 -1635771972 403179528 - - -7.1417349576950073e-01 3.9334431290626526e-01 - <_> - - 0 -1 185 -1073511934 -742133625 1093132935 -705716410 - -523770994 -521672861 -930616433 -790109557 - - -4.5168292522430420e-01 5.3130024671554565e-01 - <_> - - 0 -1 80 1358954512 -3073699 285214908 -35898484 -209417729 - -2616386 -1197962246 -1148441974 - - -5.5315750837326050e-01 4.3438988924026489e-01 - <_> - - 0 -1 256 -486543614 15463303 1271390210 -352321538 - -479201533 42978919 -135268606 -218628353 - - -4.9413478374481201e-01 4.6485596895217896e-01 - <_> - - 0 -1 102 285216249 486815568 -6799425 494394865 -1885305139 - -1651728472 -1633603955 -1080819456 - - -4.4841548800468445e-01 5.0453257560729980e-01 - - <_> - 9 - -1.5383964776992798e+00 - - <_> - - 0 -1 18 -353374678 1085269614 -292625886 -487658514 - 2001172311 1147598679 -680011913 -134217729 - - -3.9491996169090271e-01 6.2135654687881470e-01 - <_> - - 0 -1 249 3122690 37739375 -2070166735 -741345321 -749734397 - 1718866259 -472912958 -419430401 - - -5.0506174564361572e-01 4.6618077158927917e-01 - <_> - - 0 -1 123 1244 -1611582991 -550281217 -4384259 -1193231618 - -1080312899 -1631932417 -1431828440 - - -5.2341967821121216e-01 4.4499680399894714e-01 - <_> - - 0 -1 173 -1070406 998248624 224141340 993009672 931922364 - 471863736 1182795928 2145385471 - - -5.5938553810119629e-01 3.7860521674156189e-01 - <_> - - 0 -1 147 -1073512446 -705173933 1082185555 -182463589 - -408944641 -49182969 -189800481 -792205781 - - -4.2763561010360718e-01 4.8702400922775269e-01 - <_> - - 0 -1 104 -19522 1003492282 1532888968 461644738 2100304008 - 218375113 1604668604 2147482623 - - -4.9799257516860962e-01 3.6454525589942932e-01 - <_> - - 0 -1 44 285212672 -581614700 1359493625 -548332547 134266620 - -37709632 2043202253 -586138712 - - -5.6203496456146240e-01 3.4002208709716797e-01 - <_> - - 0 -1 128 1034951165 2105349244 -1309598211 -1120070435 - -31409729 -38756688 1588345855 1065883852 - - -5.2008801698684692e-01 3.3988323807716370e-01 - <_> - - 0 -1 200 -218110210 2000425110 558260 2006753352 1499734716 - 487590088 468989064 -3146289 - - -4.3743440508842468e-01 4.3907517194747925e-01 - - <_> - 9 - -1.4532921314239502e+00 - - <_> - - 0 -1 262 -1278 1124068607 -1494488320 -1056964673 -67111165 - 1115682655 -134224128 -134217729 - - -3.8763198256492615e-01 5.7781529426574707e-01 - <_> - - 0 -1 56 -1073225214 -742661509 1082291375 -143132909 - -1072969042 -1574413 -1058747766 -253237617 - - -3.7089401483535767e-01 5.3697389364242554e-01 - <_> - - 0 -1 140 268435632 858788752 523386879 -1208936463 - -1091764737 -4461123 704556735 -1141702479 - - -5.2869093418121338e-01 3.7775269150733948e-01 - <_> - - 0 -1 230 -603992354 1471449720 -1921775488 -712594264 - 1598590108 206591385 1292634312 -9217 - - -3.9741289615631104e-01 4.6708774566650391e-01 - <_> - - 0 -1 159 -1073496061 -246159373 -2126132421 -682133909 - -338430209 -54568013 -894697569 -1056710645 - - -3.4375002980232239e-01 5.2743333578109741e-01 - <_> - - 0 -1 96 -1071350 457060632 931268864 321430144 826485888 - 67247908 2102198728 2105540603 - - -4.9998486042022705e-01 3.3325645327568054e-01 - <_> - - 0 -1 49 80 -11992040 412270047 425795985 787613322 - -1085856977 -2004303873 710936064 - - -6.0664796829223633e-01 2.5685796141624451e-01 - <_> - - 0 -1 194 -1037574142 -204006398 829156199 -177753533 - 1112262023 -232373213 1115155935 1074249730 - - -5.0947064161300659e-01 3.2005622982978821e-01 - <_> - - 0 -1 79 269484248 -16708916 269484120 2013084168 8699580 - 522459800 -71812466 -70403128 - - -5.4420560598373413e-01 2.8768730163574219e-01 - - <_> - 11 - -1.3969734907150269e+00 - - <_> - - 0 -1 16 -269488594 -1527781586 -420581878 -420548914 - 1736406903 1199570807 -142608537 -134217729 - - -3.8963079452514648e-01 5.6084793806076050e-01 - <_> - - 0 -1 51 269811920 -1085195183 425006589 1060705723 - -663184132 -38933009 -1469268483 -2142977 - - -4.4839790463447571e-01 4.1743433475494385e-01 - <_> - - 0 -1 228 -1039162878 -753932542 -1518107646 -139466238 - -265297522 -1027372277 -420502646 1114620418 - - -5.1765841245651245e-01 3.3084028959274292e-01 - <_> - - 0 -1 253 -889196793 9369379 -407120128 -235405325 -67111162 - 1088929783 -490739968 -218104065 - - -3.7889918684959412e-01 4.3052202463150024e-01 - <_> - - 0 -1 190 -100665346 354197178 489693724 999564452 802745048 - 419956669 485268696 -2049 - - -4.2029377818107605e-01 3.9566606283187866e-01 - <_> - - 0 -1 100 -1073233918 -136333515 1096513373 -2639093 - -716180502 -1339822428 1365762947 1359476551 - - -4.5561933517456055e-01 3.3654430508613586e-01 - <_> - - 0 -1 87 296230396 -575143599 -1645471619 1073517564 - -1130554900 -1076347144 2124945068 -1079504776 - - -4.4698345661163330e-01 3.5266625881195068e-01 - <_> - - 0 -1 112 -1073512309 -612898185 -630869569 -114037589 - -622288129 -564411838 -336594433 -1056456565 - - -3.3337074518203735e-01 4.6491983532905579e-01 - <_> - - 0 -1 148 143134872 -2583556 -45872131 -611282540 -2001982580 - -3434534 604048076 -1094829557 - - -4.9170136451721191e-01 3.0917447805404663e-01 - <_> - - 0 -1 160 -1073233918 -201853499 2136473557 -1787301069 - -700452677 -818420694 -202390597 1073996290 - - -4.4051462411880493e-01 3.1225615739822388e-01 - <_> - - 0 -1 113 269490512 -2517667 522163703 -537454823 -1689747461 - -1074037346 -1997340673 -96204792 - - -4.6469467878341675e-01 2.9259225726127625e-01 - - <_> - 13 - -1.1383904218673706e+00 - - <_> - - 0 -1 23 -286265618 -286363926 -289093086 -420550110 - 2000123717 1886877559 2002089840 -134742185 - - -3.9212599396705627e-01 5.1098263263702393e-01 - <_> - - 0 -1 129 -1073504254 -264809 -184165057 -137364109 - -243010581 -17059405 -138940421 -782765113 - - -3.6656334996223450e-01 4.3630459904670715e-01 - <_> - - 0 -1 263 -254 -975177841 -287868416 -454562817 -68947194 - 7855995 -1574144 -167773185 - - -5.1354819536209106e-01 3.0799564719200134e-01 - <_> - - 0 -1 75 353377757 -36151880 -105319713 -13290732 -4419665 - -3626840 -542331973 -1148712960 - - -3.0346295237541199e-01 5.0388520956039429e-01 - <_> - - 0 -1 182 -67139074 997767672 671353020 1036812588 1541149116 - 210770921 156045544 2147483359 - - -4.9035164713859558e-01 2.9925996065139771e-01 - <_> - - 0 -1 82 -1073512445 -774385513 -699687041 -716968609 - -741868625 -83951421 -766260517 -1052261909 - - -3.2826542854309082e-01 4.3343764543533325e-01 - <_> - - 0 -1 158 494149052 1064834428 1072696313 1062998301 - 980434168 -1078457388 -1075036164 462430488 - - -6.2883645296096802e-01 1.9601677358150482e-01 - <_> - - 0 -1 7 -366007761 718007086 -957642206 -227808730 826762323 - 1149178927 2011674103 -150997001 - - -4.2092534899711609e-01 3.2627391815185547e-01 - <_> - - 0 -1 219 -1068507134 1404819342 -1292973354 -2081703262 - -1062212049 1521194594 1120134826 1081065738 - - -4.9449604749679565e-01 2.5739732384681702e-01 - <_> - - 0 -1 109 1002320056 -1141363980 247988368 496806910 - 2140155836 503368365 2143886332 -1029 - - -4.6534663438796997e-01 2.7641868591308594e-01 - <_> - - 0 -1 37 -1558044672 -272795331 -541372483 -138980931 - -69481992 -73401925 -892597096 -1473642496 - - -4.3698188662528992e-01 2.9382380843162537e-01 - <_> - - 0 -1 155 -290461950 -827336921 -1966168542 -744227044 - 1800381711 1112758063 818804610 -201861137 - - -3.7232404947280884e-01 3.4170129895210266e-01 - <_> - - 0 -1 54 285249680 1934966666 25433949 488973060 1478098938 - -1094677832 227065823 1599080840 - - -4.8338237404823303e-01 2.5156795978546143e-01 - - <_> - 15 - -1.4386829137802124e+00 - - <_> - - 0 -1 261 -268701949 242745343 -5243136 1660944351 -268435642 - 1115680639 -152043776 -134217729 - - -2.7799502015113831e-01 5.4982155561447144e-01 - <_> - - 0 -1 132 8593 990033664 -576621569 -1074318441 -1158758913 - -1074026283 -16908305 -1091291517 - - -4.0600129961967468e-01 3.6996468901634216e-01 - <_> - - 0 -1 25 -288428034 -71050 -1362440962 -554135814 1549553644 - -34515644 1676953849 -566273 - - -3.7318351864814758e-01 3.5906440019607544e-01 - <_> - - 0 -1 116 -84482 999865790 642392280 430453020 486019228 - 176175289 503058908 1608510447 - - -4.9817672371864319e-01 2.6974949240684509e-01 - <_> - - 0 -1 107 -1073495933 -69733121 -1018873637 -579344995 - -989072181 -883437510 -1072890405 -1056194293 - - -2.8550347685813904e-01 4.5101368427276611e-01 - <_> - - 0 -1 189 -806359506 1074709095 -486758912 1351286574 - -154475059 1076360787 -184699776 -771751937 - - -4.4456201791763306e-01 2.7919811010360718e-01 - <_> - - 0 -1 169 -1070874622 1933267362 -196106221 -251150048 - -500175889 -357637246 -1011890229 1074511882 - - -4.5736011862754822e-01 2.6500344276428223e-01 - <_> - - 0 -1 6 -276828369 -1024987189 -286285073 -159518738 - 1602053975 1442273271 -565281 -1 - - -3.1965401768684387e-01 4.1932246088981628e-01 - <_> - - 0 -1 111 486544828 -537059988 -1751312897 -1613226148 - -658465284 -543379988 -1093091841 1067977880 - - -4.8029872775077820e-01 2.6561823487281799e-01 - <_> - - 0 -1 161 -1945631744 -5296883 -1268883969 -14726113 - -1174757464 -1074007512 -1667299075 -1474158576 - - -4.5131915807723999e-01 2.6787233352661133e-01 - <_> - - 0 -1 217 -1062748021 -241972242 1358675959 -137365053 - 1614802383 -85199626 -521677122 -774905909 - - -2.8362974524497986e-01 4.3354424834251404e-01 - <_> - - 0 -1 240 -306184416 270597662 -610796288 283958071 -1183996 - 739027842 -50988400 -50855945 - - -4.0036740899085999e-01 2.9442140460014343e-01 - <_> - - 0 -1 95 -554255472 1603836918 -1621489008 296493866 - 1348278524 419714073 1699230668 2147280872 - - -5.4947453737258911e-01 2.0912265777587891e-01 - <_> - - 0 -1 206 -86788422 2131273658 776208432 -576513782 458753272 - 17302057 236982460 1610345454 - - -4.1417434811592102e-01 2.6627203822135925e-01 - <_> - - 0 -1 225 -1998419393 1970208692 -416092289 -1078486094 - -293746689 -1073807393 -1091252289 -1432214942 - - -3.0541145801544189e-01 3.6917164921760559e-01 - - <_> - 16 - -1.0340467691421509e+00 - - <_> - - 0 -1 21 -286527834 -1068831058 -294761950 -898699542 - 2004313959 1098346311 -147095568 -134742025 - - -2.8367474675178528e-01 4.9616107344627380e-01 - <_> - - 0 -1 70 1346441429 -8700675 2031427039 932524345 -129231619 - -57857 -899441153 -513 - - -3.2046657800674438e-01 4.4359135627746582e-01 - <_> - - 0 -1 245 -2137791829 -201854321 -1042423873 -671089185 - -824181265 -67108929 -1056968721 -1065106517 - - -2.7950826287269592e-01 4.4218274950981140e-01 - <_> - - 0 -1 157 -77602820 2138585950 514852884 1066941396 838622680 - 945058236 866392280 -4129 - - -3.8313990831375122e-01 3.1780952215194702e-01 - <_> - - 0 -1 243 -4721096 1023467420 -134291660 1033761695 -4210772 - 221878372 -50725504 -1087510340 - - -3.9204674959182739e-01 2.7886122465133667e-01 - <_> - - 0 -1 167 402655256 -59502095 1016903901 968722453 413964974 - -1147520884 -1157853505 -1375203816 - - -3.9511302113533020e-01 2.7908802032470703e-01 - <_> - - 0 -1 259 -842019321 29087711 -1197759456 -1024271642 - -84434170 10396867 -205391616 -505413633 - - -4.4214919209480286e-01 2.4015739560127258e-01 - <_> - - 0 -1 83 -1072970229 -704650065 -986451969 -671629065 - -491795794 -83894506 -152305989 -1044123057 - - -2.5662669539451599e-01 4.2095991969108582e-01 - <_> - - 0 -1 213 -289488478 -785848987 1080164352 -752132086 - 1648030656 4932041 1125613966 1462761471 - - -4.2129451036453247e-01 2.5393015146255493e-01 - <_> - - 0 -1 141 -2111831408 1058027000 -1412416713 -1112244144 - -1196438369 -1075139649 413677738 -1421518927 - - -4.3579095602035522e-01 2.4805732071399689e-01 - <_> - - 0 -1 117 974826424 2140991454 -1551889736 2106757052 - 974174716 525151932 2132131800 -2229265 - - -4.3843334913253784e-01 2.4296501278877258e-01 - <_> - - 0 -1 48 -1073232885 -143007068 -773324933 -169909025 - -276826117 -4609 -1055470354 -1073487358 - - -2.8845074772834778e-01 3.7775728106498718e-01 - <_> - - 0 -1 130 4194384 -11062023 -1646789123 -10208559 696171518 - -4603727 461304799 -1971060584 - - -4.4695761799812317e-01 2.4860441684722900e-01 - <_> - - 0 -1 110 -8667656 523941428 96732444 1026570044 986888700 - 402658556 1262748664 -278561 - - -3.7495428323745728e-01 2.7029833197593689e-01 - <_> - - 0 -1 174 -13638750 1864560619 -1370314720 1999282058 - -817131236 4473885 -134896400 -713556481 - - -3.6440634727478027e-01 2.9757344722747803e-01 - <_> - - 0 -1 233 -2036986093 -1051337 -575185507 -269560521 - -1210388481 -33638407 -1460748289 -1348220030 - - -2.4903561174869537e-01 4.1136464476585388e-01 - - <_> - 17 - -1.0704072713851929e+00 - - <_> - - 0 -1 266 -254 -2135949377 -805569536 -1871315074 -8390908 - 411041775 -294650624 -521142273 - - -2.3864482343196869e-01 5.1211661100387573e-01 - <_> - - 0 -1 10 -298850769 720366571 -890837393 -83888594 1601664891 - 1162342359 -403439649 -134217737 - - -3.2492494583129883e-01 3.9914098381996155e-01 - <_> - - 0 -1 45 1426084316 -552595000 289756637 -10649621 -649527380 - -1744813944 -879801361 -70522229 - - -3.6111223697662354e-01 3.4889730811119080e-01 - <_> - - 0 -1 152 -805060605 -673851745 -214641903 -204344129 - -355468849 -109330249 -336593441 -754728693 - - -2.7390027046203613e-01 4.0517389774322510e-01 - <_> - - 0 -1 197 -553218 2080025566 15600272 1067365024 406823868 - 502294020 1964967166 2144335806 - - -4.1399970650672913e-01 2.4464462697505951e-01 - <_> - - 0 -1 85 -538984454 492342896 799550936 423145104 1541193180 - 420504824 1828503544 -1050625 - - -3.0913692712783813e-01 3.3819082379341125e-01 - <_> - - 0 -1 255 201271047 17141657 -371197159 -1326777353 - 1944023302 649588447 -1229011072 -520880129 - - -3.9375796914100647e-01 2.4731478095054626e-01 - <_> - - 0 -1 205 -23878 -145515102 731382156 2144016106 1607833771 - 1056969892 1185290222 1602224127 - - -3.6536556482315063e-01 2.7690681815147400e-01 - <_> - - 0 -1 38 -65269776 1071392190 -275117764 -1081071592 - 2146766812 -1107681807 2139883704 -1086447804 - - -3.7846565246582031e-01 2.7309983968734741e-01 - <_> - - 0 -1 93 1543509013 -1340423 1028472191 -1081510144 887624920 - -35095665 -2135409219 148906016 - - -4.1629123687744141e-01 2.4189476668834686e-01 - <_> - - 0 -1 229 -269752574 -477904061 1248223232 1988291330 - 836748036 18970387 -415567680 -772802817 - - -4.1729050874710083e-01 2.2995656728744507e-01 - <_> - - 0 -1 57 805765258 825992962 539756060 -786587074 1086266510 - 936117914 1994991852 938313640 - - -5.1461368799209595e-01 1.7466257512569427e-01 - <_> - - 0 -1 19 -1364201690 -991697714 -433131806 -923877650 - 662140228 1685545751 1934037844 1702328183 - - -6.7833232879638672e-01 1.4472034573554993e-01 - <_> - - 0 -1 126 -596878983 -8574020 890080733 2144151295 1294489804 - -1104539940 -1880318229 -1366815844 - - -2.9432180523872375e-01 3.2720017433166504e-01 - <_> - - 0 -1 177 -794106197 -616564426 -464594145 -671358534 - 2049886875 -285491337 1346093803 1074254850 - - -3.2180884480476379e-01 2.9128241539001465e-01 - <_> - - 0 -1 143 268444179 1060451826 231817213 1896813565 825999358 - 234786998 -1194542085 -1137764542 - - -3.7007480859756470e-01 2.5912946462631226e-01 - <_> - - 0 -1 252 -553648881 46136703 -838963448 1358618355 - -159383801 1442840309 -428343678 -788529157 - - -2.8239414095878601e-01 3.4309053421020508e-01 - - <_> - 19 - -1.2764363288879395e+00 - - <_> - - 0 -1 9 -298848529 -353370417 -1368723733 -487657882 - 1731417983 1466398519 2146924503 -136316937 - - -1.3626074790954590e-01 5.3867846727371216e-01 - <_> - - 0 -1 124 -1207913485 -552553001 766677247 -1145867265 - -278529 -4862721 1072304059 -1410613313 - - -2.8374841809272766e-01 4.2133846879005432e-01 - <_> - - 0 -1 55 -1073692672 -1314401 -1811288065 -684984521 - -800407349 -88435541 -2147439990 -615789361 - - -3.6561635136604309e-01 3.0520385503768921e-01 - <_> - - 0 -1 247 -2132826321 -214438017 -201326793 -389 -51400849 - -69653 -1527911430 -1056967185 - - -2.9651319980621338e-01 3.6694592237472534e-01 - <_> - - 0 -1 35 4194512 -2638928 -2044722799 2139958178 596410875 - -1074918424 1466248191 -537957654 - - -3.9065396785736084e-01 2.6272973418235779e-01 - <_> - - 0 -1 166 -71845966 2073723792 497158160 2143945512 - 1041642428 403710357 872230872 1607980799 - - -3.8319590687751770e-01 2.6842683553695679e-01 - <_> - - 0 -1 268 -2097157 -1087391056 -5251176 -1148338189 -262727 - -1969291265 -168429408 -47188481 - - -2.3368743062019348e-01 4.6013623476028442e-01 - <_> - - 0 -1 223 -67653378 859369722 -1712813960 -1827098028 - -1818690562 405849580 1524404938 -536872737 - - -2.6423501968383789e-01 3.5824209451675415e-01 - <_> - - 0 -1 92 -750550494 1932244802 1426271509 -136875033 - -526392657 -72620446 -813185125 1380447810 - - -3.5788068175315857e-01 2.5566586852073669e-01 - <_> - - 0 -1 22 -294919089 1122946018 -1434007938 -28119070 - 1400077876 1781744245 -12065055 -526377 - - -3.2082986831665039e-01 2.7075409889221191e-01 - <_> - - 0 -1 127 355473876 533732892 -1082376741 1073220956 - 966269432 456665256 974404281 1033897352 - - -5.8279770612716675e-01 1.6808734834194183e-01 - <_> - - 0 -1 186 1108320930 1913312195 1956727103 1405871873 - 640671914 -1700015324 -359675449 1124845386 - - -4.3383055925369263e-01 1.9900636374950409e-01 - <_> - - 0 -1 42 1152581648 -551588004 -811938313 -13125865 - -369139204 -22061077 -1461089093 -935721983 - - -3.0062291026115417e-01 2.9034814238548279e-01 - <_> - - 0 -1 199 -269489370 1932518286 -362551552 -246745498 - 1744783768 1124222739 -408492416 -772276529 - - -3.5581216216087341e-01 2.4337428808212280e-01 - <_> - - 0 -1 115 -671055358 -11312698 2145976308 -742141112 - -141826933 -1094435776 -1614350450 1090764867 - - -4.2795911431312561e-01 2.3045140504837036e-01 - <_> - - 0 -1 210 -1448411117 1945829181 -1285333769 -5000414 - 1199458509 -71870659 249890952 -4243337 - - -2.8348302841186523e-01 3.1098461151123047e-01 - <_> - - 0 -1 179 -903454720 -744425358 -1023026384 -745872950 - -1276125254 40537699 313451211 1342948107 - - -4.2663165926933289e-01 2.0645493268966675e-01 - <_> - - 0 -1 50 1359284444 -585531077 429466362 1901934459 - -371400450 -166606184 1484769755 1226030794 - - -3.3885788917541504e-01 2.5499990582466125e-01 - <_> - - 0 -1 59 1483004925 -1090388084 -1464555305 297539532 - -8906500 -5079587 583675598 170689042 - - -2.8159880638122559e-01 3.0345180630683899e-01 - - <_> - 22 - -1.3054379224777222e+00 - - <_> - - 0 -1 265 -254 -2145583105 -1938034944 -2130840321 -553655040 - 2031487 -136905472 -452984833 - - -2.7614569664001465e-01 4.5691058039665222e-01 - <_> - - 0 -1 28 -12545 -67190790 -889264898 -18821378 -598319912 - -545824932 -543942692 -539304449 - - -2.3074461519718170e-01 4.5855847001075745e-01 - <_> - - 0 -1 114 -1073708414 -3312390 -581578753 -585237253 - -538847237 -7671817 -615792689 -582618181 - - -3.7242972850799561e-01 2.6750817894935608e-01 - <_> - - 0 -1 0 -435425501 -805313558 2030041983 2104849954 - 1734342395 -268435729 1669330943 -280496809 - - -2.2564554214477539e-01 4.1358834505081177e-01 - <_> - - 0 -1 184 141330492 -581105012 2232 -6488023 -1933800258 - -1439956440 -1431525122 -14832066 - - -4.0444701910018921e-01 2.0259374380111694e-01 - <_> - - 0 -1 154 -502300158 -142650766 -425559141 -772543129 - -521426209 -1930702029 -353902641 1080279618 - - -3.9792767167091370e-01 2.1542146801948547e-01 - <_> - - 0 -1 74 1498741759 -540935422 -147991877 -2245855 - -1643344209 -74675288 -604002065 -75030520 - - -2.0798775553703308e-01 4.1534551978111267e-01 - <_> - - 0 -1 14 779037479 678413167 -1360990494 -926427546 - 2136434543 394229691 1937503671 -135269513 - - -3.8600119948387146e-01 2.1943412721157074e-01 - <_> - - 0 -1 78 2067726474 -136991756 755436448 -2516098 365527994 - 1000094552 1529674638 -4198449 - - -3.3906060457229614e-01 2.4326251447200775e-01 - <_> - - 0 -1 208 -94704418 -577880596 1012403216 502857864 - -1450010402 134218160 73403384 2070935801 - - -3.6030718684196472e-01 2.2849518060684204e-01 - <_> - - 0 -1 41 20 -1476983145 -570726433 -700837 532647935 - -1076147219 -3302914 751304704 - - -5.0285857915878296e-01 1.7315587401390076e-01 - <_> - - 0 -1 250 -327160061 550493039 1837889286 5198839 -442765562 - 61852909 -1533416158 -1061163713 - - -3.2188731431961060e-01 2.5676867365837097e-01 - <_> - - 0 -1 236 237827 -1625566337 -684738721 -708838809 - -1031870705 -79761285 -75497793 -1001930198 - - -3.2259994745254517e-01 2.6575720310211182e-01 - <_> - - 0 -1 67 -872413360 352326992 527438201 1058613553 1249525754 - -1090901768 -1192209672 -1884680476 - - -3.9298188686370850e-01 2.1306723356246948e-01 - <_> - - 0 -1 212 -8737144 2074281186 7026092 1372771984 -361188420 - 680686614 88896761 1405867375 - - -3.8286519050598145e-01 2.1039620041847229e-01 - <_> - - 0 -1 221 -1162939742 1386357926 1317941504 1938564578 - -579168328 685403501 1526351822 1404036351 - - -3.7337547540664673e-01 2.3099578917026520e-01 - <_> - - 0 -1 101 285348049 -11430284 968767967 -1078062983 407110908 - -12830052 706951641 -19647952 - - -3.6690136790275574e-01 2.2291134297847748e-01 - <_> - - 0 -1 63 -2065527166 -5011633 -151545441 1033233464 - -1901425192 -67122241 -1150550790 -359407070 - - -2.6886180043220520e-01 3.1598880887031555e-01 - <_> - - 0 -1 239 -272630014 7263167 -675318270 2086844 -381944064 - 9104875 -41757440 1357905831 - - -6.4544874429702759e-01 1.3946346938610077e-01 - <_> - - 0 -1 99 -804290429 -543997893 -105636419 -683035777 - -878802513 -312840040 -1051884901 -250101621 - - -2.4588571488857269e-01 3.4430846571922302e-01 - <_> - - 0 -1 8 -339546369 -1412792581 1615777023 -54629182 - 1226143607 1921996013 1440111615 2113370743 - - -3.0302020907402039e-01 2.6522767543792725e-01 - <_> - - 0 -1 165 -1907792 995242656 222434520 1024884896 -425286920 - 188359786 1260570527 2135949294 - - -3.5448068380355835e-01 2.3688268661499023e-01 - - <_> - 20 - -1.1824889183044434e+00 - - <_> - - 0 -1 235 16 -1141556511 223442943 -1178299563 -2120171521 - -70275846 -1130849281 0 - - -4.3084502220153809e-01 4.0112102031707764e-01 - <_> - - 0 -1 3 -290459857 1691339118 -833917338 -320446462 - 1646752359 1853571447 1936424807 -135793289 - - -3.6515438556671143e-01 2.9652595520019531e-01 - <_> - - 0 -1 216 -1059553040 -753596268 805306416 -572717025 - -1999863638 -1162302592 -1362318401 -102765569 - - -3.0720838904380798e-01 3.1679639220237732e-01 - <_> - - 0 -1 251 -1946165489 390070111 -1179279847 -1612709889 - -21667325 737673215 -1573417332 -1073741893 - - -2.7648302912712097e-01 3.4295567870140076e-01 - <_> - - 0 -1 202 -1022368734 -586554954 -848870069 -70032832 - 1258989227 -1075904854 1095746255 1091551490 - - -3.7661415338516235e-01 2.3859095573425293e-01 - <_> - - 0 -1 58 -669035267 -2146853 428561887 -1681980139 -931332868 - -67110465 1078586367 -617873729 - - -2.4220712482929230e-01 3.9469438791275024e-01 - <_> - - 0 -1 172 -269568840 2074779832 2143224388 2146841138 - -1411342152 710153642 375502988 2135947215 - - -3.8428553938865662e-01 2.2938421368598938e-01 - <_> - - 0 -1 27 -352335105 -924422186 -321853204 1083754446 - 1346657621 1359424271 -78481065 -211296393 - - -3.3762323856353760e-01 2.4234491586685181e-01 - <_> - - 0 -1 66 -74730830 -1719892262 -1925244624 925677442 - 440769672 422641780 743449532 2146957287 - - -3.4075874090194702e-01 2.3807466030120850e-01 - <_> - - 0 -1 176 1601190364 331089657 352984893 1004016536 - -1097580804 -1078437672 -1196287489 -1099430164 - - -3.7614050507545471e-01 2.2108320891857147e-01 - <_> - - 0 -1 211 -1022639734 -610610142 -846554339 -1683757005 - -1706381105 -89921561 -1070089217 1395312138 - - -3.3527806401252747e-01 2.3671005666255951e-01 - <_> - - 0 -1 122 196611 -1152142945 -1621293031 2039173647 - -1412433217 -360952176 -1019001861 -1056735205 - - -3.7603583931922913e-01 2.1857734024524689e-01 - <_> - - 0 -1 238 -268458234 13536831 -86770910 12106874 1777826563 - 5182807 -536873214 31457275 - - -6.7599576711654663e-01 1.2590792775154114e-01 - <_> - - 0 -1 13 335489835 -2643656 199426574 -1084804598 988528383 - 1503145984 1087005402 4501192 - - -3.8562673330307007e-01 1.8832445144653320e-01 - <_> - - 0 -1 60 -552616270 2006492848 -1491548008 831274626 - 2103542712 408176996 266439336 1594227130 - - -3.6538988351821899e-01 2.1386267244815826e-01 - <_> - - 0 -1 232 -1616214020 381206526 -1380008483 -1149718988 - -117949220 -1109642243 -1431620166 -1395922789 - - -2.4237436056137085e-01 3.1383481621742249e-01 - <_> - - 0 -1 108 -995385310 -251140753 1313566227 -642384614 - -1416911446 -383105408 1936676078 1131406090 - - -3.3444473147392273e-01 2.3265764117240906e-01 - <_> - - 0 -1 150 -148142336 -1969716433 1196531029 -1744832112 - -2029179607 -2011647352 -1438180599 -318770533 - - -3.2824718952178955e-01 2.3133316636085510e-01 - <_> - - 0 -1 136 -643080969 1461129532 834687225 901055537 448793752 - -1704373864 412357071 725441173 - - -2.9123142361640930e-01 2.6894247531890869e-01 - <_> - - 0 -1 1 -416832992 -13127980 -303303043 -9341920 -402666209 - -4194305 -302059521 -949000704 - - -2.5401115417480469e-01 3.0308523774147034e-01 - - <_> - 24 - -1.1056766510009766e+00 - - <_> - - 0 -1 257 -932252672 69009174 -274731216 -1246036485 - 1467479344 341049303 -176687136 -50331649 - - -2.0472958683967590e-01 4.4878211617469788e-01 - <_> - - 0 -1 151 32819 1058478609 356204543 -1078257961 526777855 - -1682103621 1073725435 -1144048133 - - -3.3589541912078857e-01 2.8405088186264038e-01 - <_> - - 0 -1 29 -78082 -77826 -269291522 -40235266 1260129788 - -763028 -538161153 -805679106 - - -2.7084660530090332e-01 3.1221374869346619e-01 - <_> - - 0 -1 192 -788275069 -70040829 -705953801 -586702026 - -745545985 -74747888 -933764645 -263989757 - - -2.2504505515098572e-01 3.5947087407112122e-01 - <_> - - 0 -1 73 -120123236 2132770214 -35818179 1908110615 - -121884484 -1414604912 818846378 137098400 - - -3.5432848334312439e-01 2.0587421953678131e-01 - <_> - - 0 -1 15 -433951198 -819277842 -290550674 -1495268700 - 1734361719 2117276675 669475411 1979151479 - - -5.8497852087020874e-01 1.4614424109458923e-01 - <_> - - 0 -1 98 -211311702 -156525938 -1508441816 1002025790 - -1747079220 -1971316467 902235131 -45400665 - - -3.0112090706825256e-01 2.6494047045707703e-01 - <_> - - 0 -1 175 -4540164 2066654612 223217726 1023881400 -335898184 - 168564521 54796540 2140929499 - - -3.9817783236503601e-01 1.8089868128299713e-01 - <_> - - 0 -1 43 270254167 939505587 -472385025 -167779321 603961850 - 2138655772 -1806172161 1095753738 - - -2.7771857380867004e-01 2.6211205124855042e-01 - <_> - - 0 -1 131 188 890515783 -1928298757 1032347002 946387198 - -44553749 -1148281121 201859080 - - -5.2568686008453369e-01 1.4650578796863556e-01 - <_> - - 0 -1 254 -603984625 180320127 -637804776 -1802184225 - -118623484 78303441 -223629692 -1060380693 - - -2.9106634855270386e-01 2.5167012214660645e-01 - <_> - - 0 -1 198 -420486590 1916956719 -2075873214 -1293260342 - 1409777995 1074266893 -2103578117 1427624199 - - -4.6088227629661560e-01 1.4865124225616455e-01 - <_> - - 0 -1 71 1560287376 1501872576 93330197 -149922831 -6426675 - 1497631401 1236609707 1028467595 - - -4.3222665786743164e-01 1.5400531888008118e-01 - <_> - - 0 -1 204 -427301504 -204573308 -278003456 1368326670 - -1675434308 38732356 37807304 1369431486 - - -3.7656742334365845e-01 1.8921722471714020e-01 - <_> - - 0 -1 120 899160056 965489400 861681915 536155580 597171592 - 505688760 945037276 799547400 - - -5.5298405885696411e-01 1.3539013266563416e-01 - <_> - - 0 -1 26 -294654417 -357580018 -456331548 -121186622 - 1626432311 1978081807 -500149913 -489160841 - - -3.3190330862998962e-01 2.2509172558784485e-01 - <_> - - 0 -1 76 -72703744 993173512 -1413994056 434274880 2065667486 - 169890832 15967450 2070403071 - - -3.6797395348548889e-01 1.9423931837081909e-01 - <_> - - 0 -1 156 1811669538 1083351686 -1835457886 268618330 - 2111253504 121815302 -941760343 1934852079 - - -5.0998413562774658e-01 1.3428133726119995e-01 - <_> - - 0 -1 164 -133250046 -736681242 178479257 -772903362 - -64228357 -1360092638 1128132254 1078673546 - - -3.5058033466339111e-01 2.0806281268596649e-01 - <_> - - 0 -1 242 -1983656160 537984560 -576718280 -255984996 -801968 - 749519076 2056507520 4185519 - - -4.2675125598907471e-01 1.6700066626071930e-01 - <_> - - 0 -1 62 -919302320 -82812016 1049935357 -1143920043 - -1613181556 -1386341991 264245176 -1956298560 - - -3.1545698642730713e-01 2.4012765288352966e-01 - <_> - - 0 -1 86 -297796297 1563704656 -1347412235 2108997601 - -2007646019 -1398784592 804001469 1878972927 - - -2.1169832348823547e-01 3.2915911078453064e-01 - <_> - - 0 -1 188 -1956730190 2139632728 797444224 535265612 - 718943472 179072316 1177307790 1497229291 - - -3.9158722758293152e-01 1.7950470745563507e-01 - <_> - - 0 -1 12 -1423824222 -347933442 -473527329 -367885210 - 1951885175 2080068088 -23110657 2004083703 - - -4.2160919308662415e-01 1.6656816005706787e-01 - - <_> - 25 - -1.0476776361465454e+00 - - <_> - - 0 -1 248 -931197947 2139053339 -29360641 -134217729 - -50673106 -1048609 -2136277334 -1459880677 - - -2.0601851865649223e-02 5.8408087491989136e-01 - <_> - - 0 -1 241 -8390896 872469788 -75498736 1010106133 -93323368 - -1937197636 -67117652 -1136721921 - - -3.3375686407089233e-01 2.8437638282775879e-01 - <_> - - 0 -1 144 402661681 -8388673 2100678583 -2238601 602925055 - -13914198 1068230655 -98610345 - - -2.8332126140594482e-01 3.0587852001190186e-01 - <_> - - 0 -1 65 1359009236 -1114605582 -1214450753 2063676794 - 1549031932 -5408068 2023930863 1051026088 - - -3.4133437275886536e-01 2.3669779300689697e-01 - <_> - - 0 -1 6 -299372689 -1505047345 -292656826 -957421105 - 1718830967 1097560413 2140605295 -135790637 - - -3.7768480181694031e-01 1.7987045645713806e-01 - <_> - - 0 -1 97 -1073154 1004322294 -1147662916 -10115876 1834274296 - 759698865 1273497048 -1048630 - - -2.6975196599960327e-01 2.8011119365692139e-01 - <_> - - 0 -1 81 -335546486 -150033533 105915952 -138218202 - -666660472 -2143208063 -243365219 -581436677 - - -2.9663780331611633e-01 2.5062835216522217e-01 - <_> - - 0 -1 227 -1073233917 -267476830 -2122911785 -177815006 - -800076401 -352392257 -2065963301 -793255169 - - -2.5752902030944824e-01 2.9005941748619080e-01 - <_> - - 0 -1 178 387383978 1968913403 1067585192 -12769396 962213582 - 1601127733 -1278178594 1024198792 - - -4.5044946670532227e-01 1.7661906778812408e-01 - <_> - - 0 -1 36 16786801 -1644201986 -653400577 -4230181 -1460667943 - -74949445 -1349652517 -1918893952 - - -3.2200109958648682e-01 2.2200360894203186e-01 - <_> - - 0 -1 201 -873492986 1332382499 -287153536 1365960970 - 1570751688 86400343 294895824 389283743 - - -4.3344420194625854e-01 1.6486145555973053e-01 - <_> - - 0 -1 39 -550462977 497814994 165283325 939408050 272107772 - -1661714196 1559500029 1557690863 - - -3.0110406875610352e-01 2.3946200311183929e-01 - <_> - - 0 -1 24 -320674066 -353966197 -354228484 -621876062 - 1547785717 1505060372 1978947829 2002219895 - - -4.4369262456893921e-01 1.7294771969318390e-01 - <_> - - 0 -1 162 -360529920 -79617826 848794457 331310642 - -1987053061 -1666055573 -1209271298 1074513418 - - -3.7377515435218811e-01 1.9515429437160492e-01 - <_> - - 0 -1 33 -521936894 1718228966 -1030226758 -28903354 - 1207396130 656656962 1940608999 2012739543 - - -4.9193805456161499e-01 1.2772387266159058e-01 - <_> - - 0 -1 31 -237788756 -36891774 756162060 -3341429 -216220931 - 290458792 -460804133 2068699022 - - -2.8526151180267334e-01 2.4898144602775574e-01 - <_> - - 0 -1 137 -851507192 -49414322 390020095 1973369886 - -337723713 -1048769 -1940650054 -927994838 - - -2.5763612985610962e-01 2.7653712034225464e-01 - <_> - - 0 -1 135 1372360956 862725368 730609136 -1553429230 - 819508732 453807332 1829633021 1568536543 - - -4.5178580284118652e-01 1.5893152356147766e-01 - <_> - - 0 -1 145 -1274805488 -9927920 -1376462213 -1078424186 - 603396895 -1090832097 107616655 440664192 - - -4.1856658458709717e-01 1.5220971405506134e-01 - <_> - - 0 -1 231 -288652797 1608697646 1224139776 1396858638 - 1558660860 27394093 -438065980 -714604577 - - -2.8446722030639648e-01 2.5237077474594116e-01 - <_> - - 0 -1 226 -1951680709 1048748839 934756149 -1214142800 - 854407598 -1073775393 747499512 -1427114237 - - -2.1165955066680908e-01 3.3453106880187988e-01 - <_> - - 0 -1 106 890514736 521148756 -5461060 -15927272 625774572 - 252750161 -891770388 985401424 - - -4.9193653464317322e-01 1.3465493917465210e-01 - <_> - - 0 -1 220 -291781117 1931978283 -1006772142 1937440367 - 1660932014 1140286983 -532876302 -105978118 - - -2.1797108650207520e-01 3.2472217082977295e-01 - <_> - - 0 -1 237 142568448 5694285 267957505 432006067 -5019387 - 82008315 -50595072 553515895 - - -5.4030531644821167e-01 1.3703715801239014e-01 - <_> - - 0 -1 103 -499261184 -361790357 131140111 -303573517 - 1180757915 -1205085265 1326942120 1365504522 - - -3.4566181898117065e-01 1.9119048118591309e-01 - - <_> - 27 - -1.0864274501800537e+00 - - <_> - - 0 -1 11 -891007484 1211035262 -823210124 -654381318 - 1564990964 1683447679 -8960692 -50331681 - - -1.7767603695392609e-01 4.3950533866882324e-01 - <_> - - 0 -1 53 1494504925 -545673287 -609913089 -15682660 - -1202970706 -6512216 -540169493 -1152645112 - - -2.3206019401550293e-01 3.5371619462966919e-01 - <_> - - 0 -1 258 -889194746 175616267 -277357050 317915103 - 2124145408 1123013115 -85207488 -520355841 - - -4.2506697773933411e-01 1.9782558083534241e-01 - <_> - - 0 -1 146 -1 -21002 -1282140165 -560551 -1429426772 - -1363539800 737717486 -17697 - - -1.6592836380004883e-01 4.8377290368080139e-01 - <_> - - 0 -1 218 -1023770102 -134512145 -539363397 -203424453 - 1272623102 -271847642 -1595890998 -1595743638 - - -2.7133983373641968e-01 2.7267450094223022e-01 - <_> - - 0 -1 88 -805076990 -149425455 -985448645 -712822435 - -765819210 -620768021 -1832196982 -754716533 - - -2.9903864860534668e-01 2.4232909083366394e-01 - <_> - - 0 -1 46 -1074249731 1063010200 886120183 1054646218 - -1074188360 -8614708 496775097 -1073988100 - - -3.1212934851646423e-01 2.2097712755203247e-01 - <_> - - 0 -1 214 -68779992 -205123576 536228408 2106794930 782941342 - 442508840 123864506 1608515547 - - -3.5215419530868530e-01 1.9548596441745758e-01 - <_> - - 0 -1 138 134414867 -82756098 907087317 -12699939 1052716991 - -1081669588 797642751 -362887177 - - -3.0123272538185120e-01 2.3132325708866119e-01 - <_> - - 0 -1 72 1480642776 1997667273 282210484 -607120144 -86663538 - 491273210 -1258550900 1994914794 - - -2.9138937592506409e-01 2.3277030885219574e-01 - <_> - - 0 -1 139 -2136960272 -1712184942 1342143477 -1242228367 - -1669857285 -1157984263 -1970783861 720044086 - - -3.4432685375213623e-01 1.9603538513183594e-01 - <_> - - 0 -1 6 -273682938 1617226187 -318870010 -892410812 - 1448570470 1380122631 -480551051 -169347209 - - -3.5725796222686768e-01 1.9195778667926788e-01 - <_> - - 0 -1 181 -285563872 1938338084 -284622176 1369605388 - 788149694 685363 1733297344 1371537119 - - -4.4718763232231140e-01 1.3961075246334076e-01 - <_> - - 0 -1 171 -277887485 -500718545 1321160726 -207444821 - -1956666417 1114068100 1408541940 -215746625 - - -2.5066006183624268e-01 2.7519401907920837e-01 - <_> - - 0 -1 195 1935143315 993445570 610010493 -150654117 - 2122195213 258214406 1195727869 1598549829 - - -2.5814446806907654e-01 2.5379449129104614e-01 - <_> - - 0 -1 191 473206268 465341840 275257821 499657168 1043082232 - -1078087986 -638054916 1051468524 - - -4.7531163692474365e-01 1.4217083156108856e-01 - <_> - - 0 -1 118 -474312942 -216353000 672931579 965216924 - -1694308964 679631248 65288426 1072693195 - - -3.4220626950263977e-01 1.9385008513927460e-01 - <_> - - 0 -1 222 -281285118 1670008163 -496738816 1408028942 - -1077961972 12189815 -1226841458 -773849649 - - -3.1611573696136475e-01 2.1220512688159943e-01 - <_> - - 0 -1 47 67109888 -1141813928 -229012613 -5148635 761734654 - -1076389365 -1933831800 142606340 - - -5.6943005323410034e-01 1.2012590467929840e-01 - <_> - - 0 -1 84 -1431396224 -1725172082 1078388256 -1850738226 - 730587530 169925378 -811871287 1099953835 - - -3.8054189085960388e-01 1.7058716714382172e-01 - <_> - - 0 -1 77 260768394 495072811 233439232 28973086 575602872 - 181406662 445404133 1334704062 - - -4.8239827156066895e-01 1.3680285215377808e-01 - <_> - - 0 -1 209 -1066220015 -4474061 2076076799 -8947757 1888966619 - -1 1786727151 -356580861 - - -1.9837911427021027e-01 3.4651774168014526e-01 - <_> - - 0 -1 266 -1087373425 -2131526698 -27274240 678559092 - -1239681243 21160657 -198446336 -521666585 - - -3.1992667913436890e-01 2.1379309892654419e-01 - <_> - - 0 -1 183 1411949790 1533029780 537141276 -645595131 - -2015977302 -70766372 80521851 1862591198 - - -3.4819486737251282e-01 1.9132232666015625e-01 - <_> - - 0 -1 163 159409168 453523316 268185503 939303412 754542844 - -1094811257 783024670 460076576 - - -4.6279802918434143e-01 1.3720697164535522e-01 - <_> - - 0 -1 17 -270012637 -422582426 -859576340 -290994558 - 1611619109 1984156183 1973384935 -671910025 - - -3.7753671407699585e-01 1.7108070850372314e-01 - <_> - - 0 -1 61 1390453016 -148850831 -1946933193 487664274 - 1167036398 -1356085046 -918287665 -1085865773 - - -2.5055482983589172e-01 2.6808515191078186e-01 - - <_> - 28 - -1.1071751117706299e+00 - - <_> - - 0 -1 234 -352328126 553381479 -520359742 49741823 -402656305 - 15201071 -404752917 16777215 - - -2.6885536313056946e-01 3.9257419109344482e-01 - <_> - - 0 -1 69 -2010207566 992095882 -923650279 788664832 - -2001285654 -1627768873 -33641557 -286265589 - - -2.6879036426544189e-01 2.9501637816429138e-01 - <_> - - 0 -1 91 -784068086 -108473857 2146818527 -573505573 - -875627894 -121565032 -69223473 -69862017 - - -3.2706248760223389e-01 2.2975476086139679e-01 - <_> - - 0 -1 30 -1048578 -604866 -1074132226 -859444 -42054404 - 1572803865 -537376564 -45313 - - -2.4356228113174438e-01 3.0726879835128784e-01 - <_> - - 0 -1 203 546301 -3364714 1037842677 -1141359636 -1730392580 - -1073873060 -1195099652 -1197997560 - - -2.6030963659286499e-01 2.7339822053909302e-01 - <_> - - 0 -1 244 340007221 -715777 1976958847 -560289 -645227653 - -5137 -1395851585 -1475338720 - - -3.3757317066192627e-01 1.8169505894184113e-01 - <_> - - 0 -1 252 -536876277 6287771 -1619133169 -2073298197 - 1942747142 347331667 -456196348 -187697169 - - -2.8153365850448608e-01 2.3552483320236206e-01 - <_> - - 0 -1 133 -1895619053 1594076987 213346175 1940061794 - -1084264449 -836767838 1113580542 -71317581 - - -1.8090774118900299e-01 3.6471092700958252e-01 - <_> - - 0 -1 196 -939278205 -1038940544 358138843 -241883949 - -1991554675 -593763646 72742875 -639905253 - - -2.0349347591400146e-01 3.1664288043975830e-01 - <_> - - 0 -1 32 -10467632 -1218534866 -140499459 -873455368 - -84072199 -1396790337 -1298891060 174661666 - - -2.9732549190521240e-01 2.0526884496212006e-01 - <_> - - 0 -1 168 -1014857696 -580779488 1466422647 2000216098 - -999622994 -9829728 -1067589142 1090961922 - - -4.1238275170326233e-01 1.5365768969058990e-01 - <_> - - 0 -1 34 -2744452 -386768130 -423167714 -1765347118 - -638249896 1761690417 1675646108 -16942736 - - -3.5506930947303772e-01 1.7395976185798645e-01 - <_> - - 0 -1 180 -297810429 2010621711 1795057440 1471141759 - -298336274 7532327 2012214010 -1968439297 - - -2.2353799641132355e-01 2.8162729740142822e-01 - <_> - - 0 -1 52 1370465178 -138027107 1106779442 1039434826 - 1994768862 1132100550 -62026870 1892530874 - - -2.9113209247589111e-01 2.0969158411026001e-01 - <_> - - 0 -1 119 1785457410 1074396198 -722866136 1894924863 - -2092621052 1078068033 849286481 1350039159 - - -4.8594748973846436e-01 1.4445739984512329e-01 - <_> - - 0 -1 267 -307232973 739178939 -109578240 -1467065064 - -1953519100 543159451 2067785728 1156576639 - - -3.6847913265228271e-01 1.6343115270137787e-01 - <_> - - 0 -1 105 -304479188 -653906046 458232444 362283648 743997852 - 1023435825 678702296 2141353427 - - -4.1794654726982117e-01 1.4696790277957916e-01 - <_> - - 0 -1 149 -1474295600 583142900 796931261 636946882 - -1677723202 -1141257324 999885740 146933924 - - -4.6846660971641541e-01 1.2554962933063507e-01 - <_> - - 0 -1 142 -1056920456 2144904732 1557674361 454068048 - 162041240 982532569 1165742776 -71968580 - - -3.3009743690490723e-01 1.8906202912330627e-01 - <_> - - 0 -1 215 -586218806 2064193627 276825240 420610717 290201738 - 838881504 -1650814757 1587269849 - - -3.3714732527732849e-01 1.8466538190841675e-01 - <_> - - 0 -1 2 386867406 1939059381 424173738 -46096988 -1177697538 - 251995272 1344360935 1962986616 - - -3.3208054304122925e-01 1.8585780262947083e-01 - <_> - - 0 -1 134 -298857425 1997964573 1077568116 2012533912 - 1361920524 1090935617 1193755076 -200286465 - - -2.5905856490135193e-01 2.4680580198764801e-01 - <_> - - 0 -1 68 -1056780345 -4719777 2134372031 -1759921541 - -553802593 -16822282 -421013525 -374683390 - - -1.5229237079620361e-01 3.9819708466529846e-01 - <_> - - 0 -1 224 -608446464 -1867328277 -790902508 421068383 - -394279672 141484519 445484292 408940511 - - -3.8842281699180603e-01 1.5214422345161438e-01 - <_> - - 0 -1 4 1810834979 545384940 -2033506042 1522937006 - 1661430389 1146300953 2110680405 -152732730 - - -3.6140063405036926e-01 1.7674677073955536e-01 - <_> - - 0 -1 170 -1660680999 455349924 -1074521701 -1076380789 - 1166607768 -88280905 1539185402 -1680998264 - - -2.5342223048210144e-01 2.5323724746704102e-01 - <_> - - 0 -1 207 -85819176 -574059136 -1925111674 1596920354 - 1782615976 437916680 386308588 2132014521 - - -3.5360771417617798e-01 1.8576373159885406e-01 - <_> - - 0 -1 246 493625329 -1650686224 -1305653903 -1780149510 - 1033453485 -90368775 -1899817483 -1610865684 - - -2.7493086457252502e-01 2.2744202613830566e-01 - - <_> - - 0 0 1 1 - <_> - - 0 0 3 1 - <_> - - 0 0 12 6 - <_> - - 0 1 1 1 - <_> - - 0 1 1 2 - <_> - - 0 1 1 4 - <_> - - 0 2 1 1 - <_> - - 0 2 1 2 - <_> - - 0 2 2 1 - <_> - - 0 3 1 1 - <_> - - 0 3 1 2 - <_> - - 0 3 1 5 - <_> - - 0 3 2 1 - <_> - - 0 3 12 4 - <_> - - 0 4 1 1 - <_> - - 0 4 2 1 - <_> - - 0 6 1 1 - <_> - - 0 6 2 1 - <_> - - 0 7 1 2 - <_> - - 0 7 2 2 - <_> - - 0 8 1 2 - <_> - - 0 9 1 2 - <_> - - 0 11 1 2 - <_> - - 0 12 1 1 - <_> - - 0 12 2 1 - <_> - - 0 12 2 2 - <_> - - 0 13 1 1 - <_> - - 0 14 1 1 - <_> - - 0 15 1 1 - <_> - - 0 15 2 1 - <_> - - 0 15 3 1 - <_> - - 0 15 12 1 - <_> - - 1 4 5 1 - <_> - - 1 6 2 1 - <_> - - 1 9 1 3 - <_> - - 1 11 10 2 - <_> - - 2 0 1 1 - <_> - - 2 0 2 1 - <_> - - 2 15 2 1 - <_> - - 2 15 4 1 - <_> - - 2 15 8 1 - <_> - - 3 0 1 1 - <_> - - 3 0 2 1 - <_> - - 3 0 3 1 - <_> - - 3 0 10 3 - <_> - - 3 2 10 2 - <_> - - 3 15 1 1 - <_> - - 4 0 1 1 - <_> - - 4 0 1 4 - <_> - - 4 0 7 1 - <_> - - 4 0 9 2 - <_> - - 4 1 5 2 - <_> - - 4 1 9 1 - <_> - - 4 4 9 1 - <_> - - 4 12 9 2 - <_> - - 5 0 1 3 - <_> - - 5 0 1 4 - <_> - - 5 1 9 1 - <_> - - 5 2 5 2 - <_> - - 5 4 6 1 - <_> - - 5 6 1 4 - <_> - - 5 12 8 1 - <_> - - 5 13 6 1 - <_> - - 6 0 4 1 - <_> - - 6 1 9 2 - <_> - - 6 3 6 1 - <_> - - 6 7 1 3 - <_> - - 6 12 4 2 - <_> - - 7 0 3 1 - <_> - - 7 1 2 1 - <_> - - 7 1 4 2 - <_> - - 7 1 9 2 - <_> - - 7 2 8 1 - <_> - - 7 4 4 1 - <_> - - 7 4 7 1 - <_> - - 7 4 8 1 - <_> - - 7 6 1 3 - <_> - - 7 7 7 3 - <_> - - 7 8 7 3 - <_> - - 7 9 8 3 - <_> - - 7 11 7 2 - <_> - - 8 10 6 1 - <_> - - 9 0 1 3 - <_> - - 9 0 1 4 - <_> - - 9 4 1 3 - <_> - - 9 9 1 3 - <_> - - 9 11 3 2 - <_> - - 9 15 3 1 - <_> - - 10 0 1 3 - <_> - - 10 0 1 4 - <_> - - 10 0 5 2 - <_> - - 10 1 5 3 - <_> - - 10 3 1 3 - <_> - - 10 3 3 1 - <_> - - 10 3 8 1 - <_> - - 10 6 1 4 - <_> - - 10 7 1 3 - <_> - - 10 9 1 3 - <_> - - 10 11 5 1 - <_> - - 11 0 1 3 - <_> - - 11 1 1 4 - <_> - - 11 2 3 1 - <_> - - 11 3 6 1 - <_> - - 11 4 1 2 - <_> - - 11 6 1 4 - <_> - - 11 10 1 2 - <_> - - 11 13 2 1 - <_> - - 12 0 1 3 - <_> - - 12 3 1 3 - <_> - - 12 6 3 4 - <_> - - 12 9 1 3 - <_> - - 12 15 4 1 - <_> - - 13 0 1 3 - <_> - - 13 0 3 1 - <_> - - 13 1 2 3 - <_> - - 13 3 3 2 - <_> - - 13 8 1 3 - <_> - - 13 8 2 3 - <_> - - 13 10 1 2 - <_> - - 13 10 3 1 - <_> - - 13 15 1 1 - <_> - - 13 15 5 1 - <_> - - 14 0 1 3 - <_> - - 14 0 4 1 - <_> - - 14 1 5 2 - <_> - - 14 9 1 3 - <_> - - 14 13 4 1 - <_> - - 14 15 2 1 - <_> - - 14 15 3 1 - <_> - - 15 0 1 4 - <_> - - 15 0 2 1 - <_> - - 15 0 3 1 - <_> - - 15 3 3 1 - <_> - - 15 5 1 1 - <_> - - 15 9 1 1 - <_> - - 15 9 2 3 - <_> - - 15 10 4 2 - <_> - - 16 0 5 1 - <_> - - 16 3 1 1 - <_> - - 16 3 3 1 - <_> - - 16 3 4 1 - <_> - - 16 3 5 1 - <_> - - 16 10 1 2 - <_> - - 17 3 1 1 - <_> - - 17 4 1 1 - <_> - - 17 4 4 1 - <_> - - 17 12 2 2 - <_> - - 18 0 1 4 - <_> - - 18 1 5 2 - <_> - - 18 2 3 1 - <_> - - 18 2 6 1 - <_> - - 18 3 1 1 - <_> - - 19 0 1 3 - <_> - - 19 0 1 4 - <_> - - 19 2 1 3 - <_> - - 19 7 1 1 - <_> - - 19 8 2 1 - <_> - - 19 9 1 3 - <_> - - 19 15 2 1 - <_> - - 20 0 1 3 - <_> - - 20 0 1 4 - <_> - - 20 0 3 1 - <_> - - 20 3 1 2 - <_> - - 20 3 3 1 - <_> - - 20 4 1 2 - <_> - - 20 7 1 3 - <_> - - 20 8 1 3 - <_> - - 20 13 3 1 - <_> - - 21 1 1 4 - <_> - - 21 3 1 3 - <_> - - 21 4 3 1 - <_> - - 21 7 1 1 - <_> - - 21 7 1 3 - <_> - - 21 8 1 3 - <_> - - 21 10 1 1 - <_> - - 21 10 1 2 - <_> - - 21 15 2 1 - <_> - - 22 2 1 3 - <_> - - 22 3 2 5 - <_> - - 22 4 1 3 - <_> - - 22 6 1 1 - <_> - - 22 8 1 2 - <_> - - 22 8 1 3 - <_> - - 22 10 2 2 - <_> - - 22 11 2 2 - <_> - - 23 0 1 4 - <_> - - 23 3 1 3 - <_> - - 23 6 1 4 - <_> - - 23 7 1 3 - <_> - - 23 9 1 1 - <_> - - 23 9 1 3 - <_> - - 23 15 1 1 - <_> - - 24 0 1 3 - <_> - - 24 0 1 4 - <_> - - 24 1 1 4 - <_> - - 24 1 3 1 - <_> - - 24 2 1 2 - <_> - - 24 7 1 3 - <_> - - 24 7 2 1 - <_> - - 24 9 1 1 - <_> - - 24 9 1 3 - <_> - - 24 10 1 1 - <_> - - 25 4 1 2 - <_> - - 25 4 3 1 - <_> - - 25 7 1 2 - <_> - - 25 7 1 3 - <_> - - 25 8 1 3 - <_> - - 25 9 1 2 - <_> - - 25 10 1 2 - <_> - - 26 0 1 1 - <_> - - 26 1 1 1 - <_> - - 26 3 1 3 - <_> - - 26 6 1 3 - <_> - - 26 7 1 2 - <_> - - 26 7 1 3 - <_> - - 26 8 2 2 - <_> - - 26 11 2 2 - <_> - - 27 0 1 4 - <_> - - 27 0 3 1 - <_> - - 27 3 1 3 - <_> - - 27 6 1 1 - <_> - - 27 6 1 3 - <_> - - 27 9 1 1 - <_> - - 27 9 1 3 - <_> - - 27 9 3 2 - <_> - - 28 0 2 1 - <_> - - 28 1 1 1 - <_> - - 28 1 1 3 - <_> - - 28 3 1 3 - <_> - - 28 9 1 1 - <_> - - 28 9 1 3 - <_> - - 28 10 1 1 - <_> - - 28 15 1 1 - <_> - - 29 0 1 1 - <_> - - 29 7 2 1 - <_> - - 30 0 1 1 - <_> - - 30 0 1 4 - <_> - - 30 4 2 1 - <_> - - 30 8 2 1 - <_> - - 30 10 2 1 - <_> - - 30 11 2 2 - <_> - - 30 12 2 2 - <_> - - 30 14 2 1 - <_> - - 30 15 2 1 - <_> - - 31 0 1 1 - <_> - - 31 0 1 4 - <_> - - 31 15 1 1 - <_> - - 32 0 1 4 - <_> - - 33 0 1 1 - <_> - - 33 0 1 4 - <_> - - 33 1 1 1 - <_> - - 33 1 1 2 - <_> - - 33 2 1 1 - <_> - - 33 2 1 2 - <_> - - 33 3 1 1 - <_> - - 33 3 1 2 - <_> - - 33 3 1 3 - <_> - - 33 3 1 5 - <_> - - 33 4 1 1 - <_> - - 33 5 1 1 - <_> - - 33 5 1 3 - <_> - - 33 6 1 1 - <_> - - 33 9 1 1 - <_> - - 33 10 1 1 - <_> - - 33 10 1 2 - <_> - - 33 12 1 1 - <_> - - 33 13 1 1 - <_> - - 33 14 1 1 - <_> - - 33 15 1 1 - + + + + BOOST + LBP + 18 + 36 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 17 + + + <_> + 5 + -1.6074185371398926e+00 + + <_> + + 0 -1 260 -286277120 174374 -487661056 -1058275700 1194804992 + 225095 -998772480 -202375169 + + -5.5654716491699219e-01 8.0171042680740356e-01 + <_> + + 0 -1 20 -342891006 -1033195986 1856252450 -1062802910 + 661726532 1179932483 -177793536 -134219817 + + -6.0683506727218628e-01 6.9047766923904419e-01 + <_> + + 0 -1 64 1358958608 -721415659 286261721 1603863003 + -619134817 -1123538802 420086683 991758991 + + -6.2987571954727173e-01 5.9246963262557983e-01 + <_> + + 0 -1 193 -1073512446 -777805822 -2139684581 -783301117 + -2105302838 -2139667934 1078190215 -803212537 + + -5.2881276607513428e-01 6.4907532930374146e-01 + <_> + + 0 -1 125 -105079848 419692680 268435456 386400776 956826300 + 268962496 402653388 -1069665 + + -5.8266061544418335e-01 5.6521910429000854e-01 + + <_> + 6 + -1.0134286880493164e+00 + + <_> + + 0 -1 94 268435472 285218064 464917949 360560017 -1631809362 + -1074249812 212339386 -1079443448 + + -4.5969772338867188e-01 7.2184652090072632e-01 + <_> + + 0 -1 264 -1055230 -2132094970 1522782208 -1865488446 + -160460288 426831 -239083008 -184549393 + + -5.5715596675872803e-01 5.5740809440612793e-01 + <_> + + 0 -1 89 -1073512446 -750262246 1612181323 -241712057 + -536370706 -87562613 -1073356338 -783818237 + + -4.9830266833305359e-01 5.8845627307891846e-01 + <_> + + 0 -1 40 75531512 -1080031088 -1924518403 -1660943824 + 68163832 -1649934168 201603577 251658408 + + -6.2323546409606934e-01 4.3935534358024597e-01 + <_> + + 0 -1 153 -1073495038 -212339694 272084497 -683317309 + -1070863634 -362310394 -1013976081 -1073233397 + + -4.9089384078979492e-01 5.5601859092712402e-01 + <_> + + 0 -1 187 -1072466 961592942 -592705488 287353834 2099253432 + 269753198 1573261038 -3146001 + + -4.4843783974647522e-01 5.5326616764068604e-01 + + <_> + 7 + -1.4775381088256836e+00 + + <_> + + 0 -1 90 268440029 2136817663 459096063 2147292127 496541439 + -6340609 465289215 462293642 + + -4.9297222495079041e-01 6.8286538124084473e-01 + <_> + + 0 -1 5 -428890622 1089466031 -1032976798 -1023422750 + 1114064710 1148187463 -134744065 -134219785 + + -4.8018595576286316e-01 5.6948053836822510e-01 + <_> + + 0 -1 121 469767184 487588084 289153021 521930004 -1433892612 + -1074227012 -1635771972 403179528 + + -7.1417349576950073e-01 3.9334431290626526e-01 + <_> + + 0 -1 185 -1073511934 -742133625 1093132935 -705716410 + -523770994 -521672861 -930616433 -790109557 + + -4.5168292522430420e-01 5.3130024671554565e-01 + <_> + + 0 -1 80 1358954512 -3073699 285214908 -35898484 -209417729 + -2616386 -1197962246 -1148441974 + + -5.5315750837326050e-01 4.3438988924026489e-01 + <_> + + 0 -1 256 -486543614 15463303 1271390210 -352321538 + -479201533 42978919 -135268606 -218628353 + + -4.9413478374481201e-01 4.6485596895217896e-01 + <_> + + 0 -1 102 285216249 486815568 -6799425 494394865 -1885305139 + -1651728472 -1633603955 -1080819456 + + -4.4841548800468445e-01 5.0453257560729980e-01 + + <_> + 9 + -1.5383964776992798e+00 + + <_> + + 0 -1 18 -353374678 1085269614 -292625886 -487658514 + 2001172311 1147598679 -680011913 -134217729 + + -3.9491996169090271e-01 6.2135654687881470e-01 + <_> + + 0 -1 249 3122690 37739375 -2070166735 -741345321 -749734397 + 1718866259 -472912958 -419430401 + + -5.0506174564361572e-01 4.6618077158927917e-01 + <_> + + 0 -1 123 1244 -1611582991 -550281217 -4384259 -1193231618 + -1080312899 -1631932417 -1431828440 + + -5.2341967821121216e-01 4.4499680399894714e-01 + <_> + + 0 -1 173 -1070406 998248624 224141340 993009672 931922364 + 471863736 1182795928 2145385471 + + -5.5938553810119629e-01 3.7860521674156189e-01 + <_> + + 0 -1 147 -1073512446 -705173933 1082185555 -182463589 + -408944641 -49182969 -189800481 -792205781 + + -4.2763561010360718e-01 4.8702400922775269e-01 + <_> + + 0 -1 104 -19522 1003492282 1532888968 461644738 2100304008 + 218375113 1604668604 2147482623 + + -4.9799257516860962e-01 3.6454525589942932e-01 + <_> + + 0 -1 44 285212672 -581614700 1359493625 -548332547 134266620 + -37709632 2043202253 -586138712 + + -5.6203496456146240e-01 3.4002208709716797e-01 + <_> + + 0 -1 128 1034951165 2105349244 -1309598211 -1120070435 + -31409729 -38756688 1588345855 1065883852 + + -5.2008801698684692e-01 3.3988323807716370e-01 + <_> + + 0 -1 200 -218110210 2000425110 558260 2006753352 1499734716 + 487590088 468989064 -3146289 + + -4.3743440508842468e-01 4.3907517194747925e-01 + + <_> + 9 + -1.4532921314239502e+00 + + <_> + + 0 -1 262 -1278 1124068607 -1494488320 -1056964673 -67111165 + 1115682655 -134224128 -134217729 + + -3.8763198256492615e-01 5.7781529426574707e-01 + <_> + + 0 -1 56 -1073225214 -742661509 1082291375 -143132909 + -1072969042 -1574413 -1058747766 -253237617 + + -3.7089401483535767e-01 5.3697389364242554e-01 + <_> + + 0 -1 140 268435632 858788752 523386879 -1208936463 + -1091764737 -4461123 704556735 -1141702479 + + -5.2869093418121338e-01 3.7775269150733948e-01 + <_> + + 0 -1 230 -603992354 1471449720 -1921775488 -712594264 + 1598590108 206591385 1292634312 -9217 + + -3.9741289615631104e-01 4.6708774566650391e-01 + <_> + + 0 -1 159 -1073496061 -246159373 -2126132421 -682133909 + -338430209 -54568013 -894697569 -1056710645 + + -3.4375002980232239e-01 5.2743333578109741e-01 + <_> + + 0 -1 96 -1071350 457060632 931268864 321430144 826485888 + 67247908 2102198728 2105540603 + + -4.9998486042022705e-01 3.3325645327568054e-01 + <_> + + 0 -1 49 80 -11992040 412270047 425795985 787613322 + -1085856977 -2004303873 710936064 + + -6.0664796829223633e-01 2.5685796141624451e-01 + <_> + + 0 -1 194 -1037574142 -204006398 829156199 -177753533 + 1112262023 -232373213 1115155935 1074249730 + + -5.0947064161300659e-01 3.2005622982978821e-01 + <_> + + 0 -1 79 269484248 -16708916 269484120 2013084168 8699580 + 522459800 -71812466 -70403128 + + -5.4420560598373413e-01 2.8768730163574219e-01 + + <_> + 11 + -1.3969734907150269e+00 + + <_> + + 0 -1 16 -269488594 -1527781586 -420581878 -420548914 + 1736406903 1199570807 -142608537 -134217729 + + -3.8963079452514648e-01 5.6084793806076050e-01 + <_> + + 0 -1 51 269811920 -1085195183 425006589 1060705723 + -663184132 -38933009 -1469268483 -2142977 + + -4.4839790463447571e-01 4.1743433475494385e-01 + <_> + + 0 -1 228 -1039162878 -753932542 -1518107646 -139466238 + -265297522 -1027372277 -420502646 1114620418 + + -5.1765841245651245e-01 3.3084028959274292e-01 + <_> + + 0 -1 253 -889196793 9369379 -407120128 -235405325 -67111162 + 1088929783 -490739968 -218104065 + + -3.7889918684959412e-01 4.3052202463150024e-01 + <_> + + 0 -1 190 -100665346 354197178 489693724 999564452 802745048 + 419956669 485268696 -2049 + + -4.2029377818107605e-01 3.9566606283187866e-01 + <_> + + 0 -1 100 -1073233918 -136333515 1096513373 -2639093 + -716180502 -1339822428 1365762947 1359476551 + + -4.5561933517456055e-01 3.3654430508613586e-01 + <_> + + 0 -1 87 296230396 -575143599 -1645471619 1073517564 + -1130554900 -1076347144 2124945068 -1079504776 + + -4.4698345661163330e-01 3.5266625881195068e-01 + <_> + + 0 -1 112 -1073512309 -612898185 -630869569 -114037589 + -622288129 -564411838 -336594433 -1056456565 + + -3.3337074518203735e-01 4.6491983532905579e-01 + <_> + + 0 -1 148 143134872 -2583556 -45872131 -611282540 -2001982580 + -3434534 604048076 -1094829557 + + -4.9170136451721191e-01 3.0917447805404663e-01 + <_> + + 0 -1 160 -1073233918 -201853499 2136473557 -1787301069 + -700452677 -818420694 -202390597 1073996290 + + -4.4051462411880493e-01 3.1225615739822388e-01 + <_> + + 0 -1 113 269490512 -2517667 522163703 -537454823 -1689747461 + -1074037346 -1997340673 -96204792 + + -4.6469467878341675e-01 2.9259225726127625e-01 + + <_> + 13 + -1.1383904218673706e+00 + + <_> + + 0 -1 23 -286265618 -286363926 -289093086 -420550110 + 2000123717 1886877559 2002089840 -134742185 + + -3.9212599396705627e-01 5.1098263263702393e-01 + <_> + + 0 -1 129 -1073504254 -264809 -184165057 -137364109 + -243010581 -17059405 -138940421 -782765113 + + -3.6656334996223450e-01 4.3630459904670715e-01 + <_> + + 0 -1 263 -254 -975177841 -287868416 -454562817 -68947194 + 7855995 -1574144 -167773185 + + -5.1354819536209106e-01 3.0799564719200134e-01 + <_> + + 0 -1 75 353377757 -36151880 -105319713 -13290732 -4419665 + -3626840 -542331973 -1148712960 + + -3.0346295237541199e-01 5.0388520956039429e-01 + <_> + + 0 -1 182 -67139074 997767672 671353020 1036812588 1541149116 + 210770921 156045544 2147483359 + + -4.9035164713859558e-01 2.9925996065139771e-01 + <_> + + 0 -1 82 -1073512445 -774385513 -699687041 -716968609 + -741868625 -83951421 -766260517 -1052261909 + + -3.2826542854309082e-01 4.3343764543533325e-01 + <_> + + 0 -1 158 494149052 1064834428 1072696313 1062998301 + 980434168 -1078457388 -1075036164 462430488 + + -6.2883645296096802e-01 1.9601677358150482e-01 + <_> + + 0 -1 7 -366007761 718007086 -957642206 -227808730 826762323 + 1149178927 2011674103 -150997001 + + -4.2092534899711609e-01 3.2627391815185547e-01 + <_> + + 0 -1 219 -1068507134 1404819342 -1292973354 -2081703262 + -1062212049 1521194594 1120134826 1081065738 + + -4.9449604749679565e-01 2.5739732384681702e-01 + <_> + + 0 -1 109 1002320056 -1141363980 247988368 496806910 + 2140155836 503368365 2143886332 -1029 + + -4.6534663438796997e-01 2.7641868591308594e-01 + <_> + + 0 -1 37 -1558044672 -272795331 -541372483 -138980931 + -69481992 -73401925 -892597096 -1473642496 + + -4.3698188662528992e-01 2.9382380843162537e-01 + <_> + + 0 -1 155 -290461950 -827336921 -1966168542 -744227044 + 1800381711 1112758063 818804610 -201861137 + + -3.7232404947280884e-01 3.4170129895210266e-01 + <_> + + 0 -1 54 285249680 1934966666 25433949 488973060 1478098938 + -1094677832 227065823 1599080840 + + -4.8338237404823303e-01 2.5156795978546143e-01 + + <_> + 15 + -1.4386829137802124e+00 + + <_> + + 0 -1 261 -268701949 242745343 -5243136 1660944351 -268435642 + 1115680639 -152043776 -134217729 + + -2.7799502015113831e-01 5.4982155561447144e-01 + <_> + + 0 -1 132 8593 990033664 -576621569 -1074318441 -1158758913 + -1074026283 -16908305 -1091291517 + + -4.0600129961967468e-01 3.6996468901634216e-01 + <_> + + 0 -1 25 -288428034 -71050 -1362440962 -554135814 1549553644 + -34515644 1676953849 -566273 + + -3.7318351864814758e-01 3.5906440019607544e-01 + <_> + + 0 -1 116 -84482 999865790 642392280 430453020 486019228 + 176175289 503058908 1608510447 + + -4.9817672371864319e-01 2.6974949240684509e-01 + <_> + + 0 -1 107 -1073495933 -69733121 -1018873637 -579344995 + -989072181 -883437510 -1072890405 -1056194293 + + -2.8550347685813904e-01 4.5101368427276611e-01 + <_> + + 0 -1 189 -806359506 1074709095 -486758912 1351286574 + -154475059 1076360787 -184699776 -771751937 + + -4.4456201791763306e-01 2.7919811010360718e-01 + <_> + + 0 -1 169 -1070874622 1933267362 -196106221 -251150048 + -500175889 -357637246 -1011890229 1074511882 + + -4.5736011862754822e-01 2.6500344276428223e-01 + <_> + + 0 -1 6 -276828369 -1024987189 -286285073 -159518738 + 1602053975 1442273271 -565281 -1 + + -3.1965401768684387e-01 4.1932246088981628e-01 + <_> + + 0 -1 111 486544828 -537059988 -1751312897 -1613226148 + -658465284 -543379988 -1093091841 1067977880 + + -4.8029872775077820e-01 2.6561823487281799e-01 + <_> + + 0 -1 161 -1945631744 -5296883 -1268883969 -14726113 + -1174757464 -1074007512 -1667299075 -1474158576 + + -4.5131915807723999e-01 2.6787233352661133e-01 + <_> + + 0 -1 217 -1062748021 -241972242 1358675959 -137365053 + 1614802383 -85199626 -521677122 -774905909 + + -2.8362974524497986e-01 4.3354424834251404e-01 + <_> + + 0 -1 240 -306184416 270597662 -610796288 283958071 -1183996 + 739027842 -50988400 -50855945 + + -4.0036740899085999e-01 2.9442140460014343e-01 + <_> + + 0 -1 95 -554255472 1603836918 -1621489008 296493866 + 1348278524 419714073 1699230668 2147280872 + + -5.4947453737258911e-01 2.0912265777587891e-01 + <_> + + 0 -1 206 -86788422 2131273658 776208432 -576513782 458753272 + 17302057 236982460 1610345454 + + -4.1417434811592102e-01 2.6627203822135925e-01 + <_> + + 0 -1 225 -1998419393 1970208692 -416092289 -1078486094 + -293746689 -1073807393 -1091252289 -1432214942 + + -3.0541145801544189e-01 3.6917164921760559e-01 + + <_> + 16 + -1.0340467691421509e+00 + + <_> + + 0 -1 21 -286527834 -1068831058 -294761950 -898699542 + 2004313959 1098346311 -147095568 -134742025 + + -2.8367474675178528e-01 4.9616107344627380e-01 + <_> + + 0 -1 70 1346441429 -8700675 2031427039 932524345 -129231619 + -57857 -899441153 -513 + + -3.2046657800674438e-01 4.4359135627746582e-01 + <_> + + 0 -1 245 -2137791829 -201854321 -1042423873 -671089185 + -824181265 -67108929 -1056968721 -1065106517 + + -2.7950826287269592e-01 4.4218274950981140e-01 + <_> + + 0 -1 157 -77602820 2138585950 514852884 1066941396 838622680 + 945058236 866392280 -4129 + + -3.8313990831375122e-01 3.1780952215194702e-01 + <_> + + 0 -1 243 -4721096 1023467420 -134291660 1033761695 -4210772 + 221878372 -50725504 -1087510340 + + -3.9204674959182739e-01 2.7886122465133667e-01 + <_> + + 0 -1 167 402655256 -59502095 1016903901 968722453 413964974 + -1147520884 -1157853505 -1375203816 + + -3.9511302113533020e-01 2.7908802032470703e-01 + <_> + + 0 -1 259 -842019321 29087711 -1197759456 -1024271642 + -84434170 10396867 -205391616 -505413633 + + -4.4214919209480286e-01 2.4015739560127258e-01 + <_> + + 0 -1 83 -1072970229 -704650065 -986451969 -671629065 + -491795794 -83894506 -152305989 -1044123057 + + -2.5662669539451599e-01 4.2095991969108582e-01 + <_> + + 0 -1 213 -289488478 -785848987 1080164352 -752132086 + 1648030656 4932041 1125613966 1462761471 + + -4.2129451036453247e-01 2.5393015146255493e-01 + <_> + + 0 -1 141 -2111831408 1058027000 -1412416713 -1112244144 + -1196438369 -1075139649 413677738 -1421518927 + + -4.3579095602035522e-01 2.4805732071399689e-01 + <_> + + 0 -1 117 974826424 2140991454 -1551889736 2106757052 + 974174716 525151932 2132131800 -2229265 + + -4.3843334913253784e-01 2.4296501278877258e-01 + <_> + + 0 -1 48 -1073232885 -143007068 -773324933 -169909025 + -276826117 -4609 -1055470354 -1073487358 + + -2.8845074772834778e-01 3.7775728106498718e-01 + <_> + + 0 -1 130 4194384 -11062023 -1646789123 -10208559 696171518 + -4603727 461304799 -1971060584 + + -4.4695761799812317e-01 2.4860441684722900e-01 + <_> + + 0 -1 110 -8667656 523941428 96732444 1026570044 986888700 + 402658556 1262748664 -278561 + + -3.7495428323745728e-01 2.7029833197593689e-01 + <_> + + 0 -1 174 -13638750 1864560619 -1370314720 1999282058 + -817131236 4473885 -134896400 -713556481 + + -3.6440634727478027e-01 2.9757344722747803e-01 + <_> + + 0 -1 233 -2036986093 -1051337 -575185507 -269560521 + -1210388481 -33638407 -1460748289 -1348220030 + + -2.4903561174869537e-01 4.1136464476585388e-01 + + <_> + 17 + -1.0704072713851929e+00 + + <_> + + 0 -1 266 -254 -2135949377 -805569536 -1871315074 -8390908 + 411041775 -294650624 -521142273 + + -2.3864482343196869e-01 5.1211661100387573e-01 + <_> + + 0 -1 10 -298850769 720366571 -890837393 -83888594 1601664891 + 1162342359 -403439649 -134217737 + + -3.2492494583129883e-01 3.9914098381996155e-01 + <_> + + 0 -1 45 1426084316 -552595000 289756637 -10649621 -649527380 + -1744813944 -879801361 -70522229 + + -3.6111223697662354e-01 3.4889730811119080e-01 + <_> + + 0 -1 152 -805060605 -673851745 -214641903 -204344129 + -355468849 -109330249 -336593441 -754728693 + + -2.7390027046203613e-01 4.0517389774322510e-01 + <_> + + 0 -1 197 -553218 2080025566 15600272 1067365024 406823868 + 502294020 1964967166 2144335806 + + -4.1399970650672913e-01 2.4464462697505951e-01 + <_> + + 0 -1 85 -538984454 492342896 799550936 423145104 1541193180 + 420504824 1828503544 -1050625 + + -3.0913692712783813e-01 3.3819082379341125e-01 + <_> + + 0 -1 255 201271047 17141657 -371197159 -1326777353 + 1944023302 649588447 -1229011072 -520880129 + + -3.9375796914100647e-01 2.4731478095054626e-01 + <_> + + 0 -1 205 -23878 -145515102 731382156 2144016106 1607833771 + 1056969892 1185290222 1602224127 + + -3.6536556482315063e-01 2.7690681815147400e-01 + <_> + + 0 -1 38 -65269776 1071392190 -275117764 -1081071592 + 2146766812 -1107681807 2139883704 -1086447804 + + -3.7846565246582031e-01 2.7309983968734741e-01 + <_> + + 0 -1 93 1543509013 -1340423 1028472191 -1081510144 887624920 + -35095665 -2135409219 148906016 + + -4.1629123687744141e-01 2.4189476668834686e-01 + <_> + + 0 -1 229 -269752574 -477904061 1248223232 1988291330 + 836748036 18970387 -415567680 -772802817 + + -4.1729050874710083e-01 2.2995656728744507e-01 + <_> + + 0 -1 57 805765258 825992962 539756060 -786587074 1086266510 + 936117914 1994991852 938313640 + + -5.1461368799209595e-01 1.7466257512569427e-01 + <_> + + 0 -1 19 -1364201690 -991697714 -433131806 -923877650 + 662140228 1685545751 1934037844 1702328183 + + -6.7833232879638672e-01 1.4472034573554993e-01 + <_> + + 0 -1 126 -596878983 -8574020 890080733 2144151295 1294489804 + -1104539940 -1880318229 -1366815844 + + -2.9432180523872375e-01 3.2720017433166504e-01 + <_> + + 0 -1 177 -794106197 -616564426 -464594145 -671358534 + 2049886875 -285491337 1346093803 1074254850 + + -3.2180884480476379e-01 2.9128241539001465e-01 + <_> + + 0 -1 143 268444179 1060451826 231817213 1896813565 825999358 + 234786998 -1194542085 -1137764542 + + -3.7007480859756470e-01 2.5912946462631226e-01 + <_> + + 0 -1 252 -553648881 46136703 -838963448 1358618355 + -159383801 1442840309 -428343678 -788529157 + + -2.8239414095878601e-01 3.4309053421020508e-01 + + <_> + 19 + -1.2764363288879395e+00 + + <_> + + 0 -1 9 -298848529 -353370417 -1368723733 -487657882 + 1731417983 1466398519 2146924503 -136316937 + + -1.3626074790954590e-01 5.3867846727371216e-01 + <_> + + 0 -1 124 -1207913485 -552553001 766677247 -1145867265 + -278529 -4862721 1072304059 -1410613313 + + -2.8374841809272766e-01 4.2133846879005432e-01 + <_> + + 0 -1 55 -1073692672 -1314401 -1811288065 -684984521 + -800407349 -88435541 -2147439990 -615789361 + + -3.6561635136604309e-01 3.0520385503768921e-01 + <_> + + 0 -1 247 -2132826321 -214438017 -201326793 -389 -51400849 + -69653 -1527911430 -1056967185 + + -2.9651319980621338e-01 3.6694592237472534e-01 + <_> + + 0 -1 35 4194512 -2638928 -2044722799 2139958178 596410875 + -1074918424 1466248191 -537957654 + + -3.9065396785736084e-01 2.6272973418235779e-01 + <_> + + 0 -1 166 -71845966 2073723792 497158160 2143945512 + 1041642428 403710357 872230872 1607980799 + + -3.8319590687751770e-01 2.6842683553695679e-01 + <_> + + 0 -1 268 -2097157 -1087391056 -5251176 -1148338189 -262727 + -1969291265 -168429408 -47188481 + + -2.3368743062019348e-01 4.6013623476028442e-01 + <_> + + 0 -1 223 -67653378 859369722 -1712813960 -1827098028 + -1818690562 405849580 1524404938 -536872737 + + -2.6423501968383789e-01 3.5824209451675415e-01 + <_> + + 0 -1 92 -750550494 1932244802 1426271509 -136875033 + -526392657 -72620446 -813185125 1380447810 + + -3.5788068175315857e-01 2.5566586852073669e-01 + <_> + + 0 -1 22 -294919089 1122946018 -1434007938 -28119070 + 1400077876 1781744245 -12065055 -526377 + + -3.2082986831665039e-01 2.7075409889221191e-01 + <_> + + 0 -1 127 355473876 533732892 -1082376741 1073220956 + 966269432 456665256 974404281 1033897352 + + -5.8279770612716675e-01 1.6808734834194183e-01 + <_> + + 0 -1 186 1108320930 1913312195 1956727103 1405871873 + 640671914 -1700015324 -359675449 1124845386 + + -4.3383055925369263e-01 1.9900636374950409e-01 + <_> + + 0 -1 42 1152581648 -551588004 -811938313 -13125865 + -369139204 -22061077 -1461089093 -935721983 + + -3.0062291026115417e-01 2.9034814238548279e-01 + <_> + + 0 -1 199 -269489370 1932518286 -362551552 -246745498 + 1744783768 1124222739 -408492416 -772276529 + + -3.5581216216087341e-01 2.4337428808212280e-01 + <_> + + 0 -1 115 -671055358 -11312698 2145976308 -742141112 + -141826933 -1094435776 -1614350450 1090764867 + + -4.2795911431312561e-01 2.3045140504837036e-01 + <_> + + 0 -1 210 -1448411117 1945829181 -1285333769 -5000414 + 1199458509 -71870659 249890952 -4243337 + + -2.8348302841186523e-01 3.1098461151123047e-01 + <_> + + 0 -1 179 -903454720 -744425358 -1023026384 -745872950 + -1276125254 40537699 313451211 1342948107 + + -4.2663165926933289e-01 2.0645493268966675e-01 + <_> + + 0 -1 50 1359284444 -585531077 429466362 1901934459 + -371400450 -166606184 1484769755 1226030794 + + -3.3885788917541504e-01 2.5499990582466125e-01 + <_> + + 0 -1 59 1483004925 -1090388084 -1464555305 297539532 + -8906500 -5079587 583675598 170689042 + + -2.8159880638122559e-01 3.0345180630683899e-01 + + <_> + 22 + -1.3054379224777222e+00 + + <_> + + 0 -1 265 -254 -2145583105 -1938034944 -2130840321 -553655040 + 2031487 -136905472 -452984833 + + -2.7614569664001465e-01 4.5691058039665222e-01 + <_> + + 0 -1 28 -12545 -67190790 -889264898 -18821378 -598319912 + -545824932 -543942692 -539304449 + + -2.3074461519718170e-01 4.5855847001075745e-01 + <_> + + 0 -1 114 -1073708414 -3312390 -581578753 -585237253 + -538847237 -7671817 -615792689 -582618181 + + -3.7242972850799561e-01 2.6750817894935608e-01 + <_> + + 0 -1 0 -435425501 -805313558 2030041983 2104849954 + 1734342395 -268435729 1669330943 -280496809 + + -2.2564554214477539e-01 4.1358834505081177e-01 + <_> + + 0 -1 184 141330492 -581105012 2232 -6488023 -1933800258 + -1439956440 -1431525122 -14832066 + + -4.0444701910018921e-01 2.0259374380111694e-01 + <_> + + 0 -1 154 -502300158 -142650766 -425559141 -772543129 + -521426209 -1930702029 -353902641 1080279618 + + -3.9792767167091370e-01 2.1542146801948547e-01 + <_> + + 0 -1 74 1498741759 -540935422 -147991877 -2245855 + -1643344209 -74675288 -604002065 -75030520 + + -2.0798775553703308e-01 4.1534551978111267e-01 + <_> + + 0 -1 14 779037479 678413167 -1360990494 -926427546 + 2136434543 394229691 1937503671 -135269513 + + -3.8600119948387146e-01 2.1943412721157074e-01 + <_> + + 0 -1 78 2067726474 -136991756 755436448 -2516098 365527994 + 1000094552 1529674638 -4198449 + + -3.3906060457229614e-01 2.4326251447200775e-01 + <_> + + 0 -1 208 -94704418 -577880596 1012403216 502857864 + -1450010402 134218160 73403384 2070935801 + + -3.6030718684196472e-01 2.2849518060684204e-01 + <_> + + 0 -1 41 20 -1476983145 -570726433 -700837 532647935 + -1076147219 -3302914 751304704 + + -5.0285857915878296e-01 1.7315587401390076e-01 + <_> + + 0 -1 250 -327160061 550493039 1837889286 5198839 -442765562 + 61852909 -1533416158 -1061163713 + + -3.2188731431961060e-01 2.5676867365837097e-01 + <_> + + 0 -1 236 237827 -1625566337 -684738721 -708838809 + -1031870705 -79761285 -75497793 -1001930198 + + -3.2259994745254517e-01 2.6575720310211182e-01 + <_> + + 0 -1 67 -872413360 352326992 527438201 1058613553 1249525754 + -1090901768 -1192209672 -1884680476 + + -3.9298188686370850e-01 2.1306723356246948e-01 + <_> + + 0 -1 212 -8737144 2074281186 7026092 1372771984 -361188420 + 680686614 88896761 1405867375 + + -3.8286519050598145e-01 2.1039620041847229e-01 + <_> + + 0 -1 221 -1162939742 1386357926 1317941504 1938564578 + -579168328 685403501 1526351822 1404036351 + + -3.7337547540664673e-01 2.3099578917026520e-01 + <_> + + 0 -1 101 285348049 -11430284 968767967 -1078062983 407110908 + -12830052 706951641 -19647952 + + -3.6690136790275574e-01 2.2291134297847748e-01 + <_> + + 0 -1 63 -2065527166 -5011633 -151545441 1033233464 + -1901425192 -67122241 -1150550790 -359407070 + + -2.6886180043220520e-01 3.1598880887031555e-01 + <_> + + 0 -1 239 -272630014 7263167 -675318270 2086844 -381944064 + 9104875 -41757440 1357905831 + + -6.4544874429702759e-01 1.3946346938610077e-01 + <_> + + 0 -1 99 -804290429 -543997893 -105636419 -683035777 + -878802513 -312840040 -1051884901 -250101621 + + -2.4588571488857269e-01 3.4430846571922302e-01 + <_> + + 0 -1 8 -339546369 -1412792581 1615777023 -54629182 + 1226143607 1921996013 1440111615 2113370743 + + -3.0302020907402039e-01 2.6522767543792725e-01 + <_> + + 0 -1 165 -1907792 995242656 222434520 1024884896 -425286920 + 188359786 1260570527 2135949294 + + -3.5448068380355835e-01 2.3688268661499023e-01 + + <_> + 20 + -1.1824889183044434e+00 + + <_> + + 0 -1 235 16 -1141556511 223442943 -1178299563 -2120171521 + -70275846 -1130849281 0 + + -4.3084502220153809e-01 4.0112102031707764e-01 + <_> + + 0 -1 3 -290459857 1691339118 -833917338 -320446462 + 1646752359 1853571447 1936424807 -135793289 + + -3.6515438556671143e-01 2.9652595520019531e-01 + <_> + + 0 -1 216 -1059553040 -753596268 805306416 -572717025 + -1999863638 -1162302592 -1362318401 -102765569 + + -3.0720838904380798e-01 3.1679639220237732e-01 + <_> + + 0 -1 251 -1946165489 390070111 -1179279847 -1612709889 + -21667325 737673215 -1573417332 -1073741893 + + -2.7648302912712097e-01 3.4295567870140076e-01 + <_> + + 0 -1 202 -1022368734 -586554954 -848870069 -70032832 + 1258989227 -1075904854 1095746255 1091551490 + + -3.7661415338516235e-01 2.3859095573425293e-01 + <_> + + 0 -1 58 -669035267 -2146853 428561887 -1681980139 -931332868 + -67110465 1078586367 -617873729 + + -2.4220712482929230e-01 3.9469438791275024e-01 + <_> + + 0 -1 172 -269568840 2074779832 2143224388 2146841138 + -1411342152 710153642 375502988 2135947215 + + -3.8428553938865662e-01 2.2938421368598938e-01 + <_> + + 0 -1 27 -352335105 -924422186 -321853204 1083754446 + 1346657621 1359424271 -78481065 -211296393 + + -3.3762323856353760e-01 2.4234491586685181e-01 + <_> + + 0 -1 66 -74730830 -1719892262 -1925244624 925677442 + 440769672 422641780 743449532 2146957287 + + -3.4075874090194702e-01 2.3807466030120850e-01 + <_> + + 0 -1 176 1601190364 331089657 352984893 1004016536 + -1097580804 -1078437672 -1196287489 -1099430164 + + -3.7614050507545471e-01 2.2108320891857147e-01 + <_> + + 0 -1 211 -1022639734 -610610142 -846554339 -1683757005 + -1706381105 -89921561 -1070089217 1395312138 + + -3.3527806401252747e-01 2.3671005666255951e-01 + <_> + + 0 -1 122 196611 -1152142945 -1621293031 2039173647 + -1412433217 -360952176 -1019001861 -1056735205 + + -3.7603583931922913e-01 2.1857734024524689e-01 + <_> + + 0 -1 238 -268458234 13536831 -86770910 12106874 1777826563 + 5182807 -536873214 31457275 + + -6.7599576711654663e-01 1.2590792775154114e-01 + <_> + + 0 -1 13 335489835 -2643656 199426574 -1084804598 988528383 + 1503145984 1087005402 4501192 + + -3.8562673330307007e-01 1.8832445144653320e-01 + <_> + + 0 -1 60 -552616270 2006492848 -1491548008 831274626 + 2103542712 408176996 266439336 1594227130 + + -3.6538988351821899e-01 2.1386267244815826e-01 + <_> + + 0 -1 232 -1616214020 381206526 -1380008483 -1149718988 + -117949220 -1109642243 -1431620166 -1395922789 + + -2.4237436056137085e-01 3.1383481621742249e-01 + <_> + + 0 -1 108 -995385310 -251140753 1313566227 -642384614 + -1416911446 -383105408 1936676078 1131406090 + + -3.3444473147392273e-01 2.3265764117240906e-01 + <_> + + 0 -1 150 -148142336 -1969716433 1196531029 -1744832112 + -2029179607 -2011647352 -1438180599 -318770533 + + -3.2824718952178955e-01 2.3133316636085510e-01 + <_> + + 0 -1 136 -643080969 1461129532 834687225 901055537 448793752 + -1704373864 412357071 725441173 + + -2.9123142361640930e-01 2.6894247531890869e-01 + <_> + + 0 -1 1 -416832992 -13127980 -303303043 -9341920 -402666209 + -4194305 -302059521 -949000704 + + -2.5401115417480469e-01 3.0308523774147034e-01 + + <_> + 24 + -1.1056766510009766e+00 + + <_> + + 0 -1 257 -932252672 69009174 -274731216 -1246036485 + 1467479344 341049303 -176687136 -50331649 + + -2.0472958683967590e-01 4.4878211617469788e-01 + <_> + + 0 -1 151 32819 1058478609 356204543 -1078257961 526777855 + -1682103621 1073725435 -1144048133 + + -3.3589541912078857e-01 2.8405088186264038e-01 + <_> + + 0 -1 29 -78082 -77826 -269291522 -40235266 1260129788 + -763028 -538161153 -805679106 + + -2.7084660530090332e-01 3.1221374869346619e-01 + <_> + + 0 -1 192 -788275069 -70040829 -705953801 -586702026 + -745545985 -74747888 -933764645 -263989757 + + -2.2504505515098572e-01 3.5947087407112122e-01 + <_> + + 0 -1 73 -120123236 2132770214 -35818179 1908110615 + -121884484 -1414604912 818846378 137098400 + + -3.5432848334312439e-01 2.0587421953678131e-01 + <_> + + 0 -1 15 -433951198 -819277842 -290550674 -1495268700 + 1734361719 2117276675 669475411 1979151479 + + -5.8497852087020874e-01 1.4614424109458923e-01 + <_> + + 0 -1 98 -211311702 -156525938 -1508441816 1002025790 + -1747079220 -1971316467 902235131 -45400665 + + -3.0112090706825256e-01 2.6494047045707703e-01 + <_> + + 0 -1 175 -4540164 2066654612 223217726 1023881400 -335898184 + 168564521 54796540 2140929499 + + -3.9817783236503601e-01 1.8089868128299713e-01 + <_> + + 0 -1 43 270254167 939505587 -472385025 -167779321 603961850 + 2138655772 -1806172161 1095753738 + + -2.7771857380867004e-01 2.6211205124855042e-01 + <_> + + 0 -1 131 188 890515783 -1928298757 1032347002 946387198 + -44553749 -1148281121 201859080 + + -5.2568686008453369e-01 1.4650578796863556e-01 + <_> + + 0 -1 254 -603984625 180320127 -637804776 -1802184225 + -118623484 78303441 -223629692 -1060380693 + + -2.9106634855270386e-01 2.5167012214660645e-01 + <_> + + 0 -1 198 -420486590 1916956719 -2075873214 -1293260342 + 1409777995 1074266893 -2103578117 1427624199 + + -4.6088227629661560e-01 1.4865124225616455e-01 + <_> + + 0 -1 71 1560287376 1501872576 93330197 -149922831 -6426675 + 1497631401 1236609707 1028467595 + + -4.3222665786743164e-01 1.5400531888008118e-01 + <_> + + 0 -1 204 -427301504 -204573308 -278003456 1368326670 + -1675434308 38732356 37807304 1369431486 + + -3.7656742334365845e-01 1.8921722471714020e-01 + <_> + + 0 -1 120 899160056 965489400 861681915 536155580 597171592 + 505688760 945037276 799547400 + + -5.5298405885696411e-01 1.3539013266563416e-01 + <_> + + 0 -1 26 -294654417 -357580018 -456331548 -121186622 + 1626432311 1978081807 -500149913 -489160841 + + -3.3190330862998962e-01 2.2509172558784485e-01 + <_> + + 0 -1 76 -72703744 993173512 -1413994056 434274880 2065667486 + 169890832 15967450 2070403071 + + -3.6797395348548889e-01 1.9423931837081909e-01 + <_> + + 0 -1 156 1811669538 1083351686 -1835457886 268618330 + 2111253504 121815302 -941760343 1934852079 + + -5.0998413562774658e-01 1.3428133726119995e-01 + <_> + + 0 -1 164 -133250046 -736681242 178479257 -772903362 + -64228357 -1360092638 1128132254 1078673546 + + -3.5058033466339111e-01 2.0806281268596649e-01 + <_> + + 0 -1 242 -1983656160 537984560 -576718280 -255984996 -801968 + 749519076 2056507520 4185519 + + -4.2675125598907471e-01 1.6700066626071930e-01 + <_> + + 0 -1 62 -919302320 -82812016 1049935357 -1143920043 + -1613181556 -1386341991 264245176 -1956298560 + + -3.1545698642730713e-01 2.4012765288352966e-01 + <_> + + 0 -1 86 -297796297 1563704656 -1347412235 2108997601 + -2007646019 -1398784592 804001469 1878972927 + + -2.1169832348823547e-01 3.2915911078453064e-01 + <_> + + 0 -1 188 -1956730190 2139632728 797444224 535265612 + 718943472 179072316 1177307790 1497229291 + + -3.9158722758293152e-01 1.7950470745563507e-01 + <_> + + 0 -1 12 -1423824222 -347933442 -473527329 -367885210 + 1951885175 2080068088 -23110657 2004083703 + + -4.2160919308662415e-01 1.6656816005706787e-01 + + <_> + 25 + -1.0476776361465454e+00 + + <_> + + 0 -1 248 -931197947 2139053339 -29360641 -134217729 + -50673106 -1048609 -2136277334 -1459880677 + + -2.0601851865649223e-02 5.8408087491989136e-01 + <_> + + 0 -1 241 -8390896 872469788 -75498736 1010106133 -93323368 + -1937197636 -67117652 -1136721921 + + -3.3375686407089233e-01 2.8437638282775879e-01 + <_> + + 0 -1 144 402661681 -8388673 2100678583 -2238601 602925055 + -13914198 1068230655 -98610345 + + -2.8332126140594482e-01 3.0587852001190186e-01 + <_> + + 0 -1 65 1359009236 -1114605582 -1214450753 2063676794 + 1549031932 -5408068 2023930863 1051026088 + + -3.4133437275886536e-01 2.3669779300689697e-01 + <_> + + 0 -1 6 -299372689 -1505047345 -292656826 -957421105 + 1718830967 1097560413 2140605295 -135790637 + + -3.7768480181694031e-01 1.7987045645713806e-01 + <_> + + 0 -1 97 -1073154 1004322294 -1147662916 -10115876 1834274296 + 759698865 1273497048 -1048630 + + -2.6975196599960327e-01 2.8011119365692139e-01 + <_> + + 0 -1 81 -335546486 -150033533 105915952 -138218202 + -666660472 -2143208063 -243365219 -581436677 + + -2.9663780331611633e-01 2.5062835216522217e-01 + <_> + + 0 -1 227 -1073233917 -267476830 -2122911785 -177815006 + -800076401 -352392257 -2065963301 -793255169 + + -2.5752902030944824e-01 2.9005941748619080e-01 + <_> + + 0 -1 178 387383978 1968913403 1067585192 -12769396 962213582 + 1601127733 -1278178594 1024198792 + + -4.5044946670532227e-01 1.7661906778812408e-01 + <_> + + 0 -1 36 16786801 -1644201986 -653400577 -4230181 -1460667943 + -74949445 -1349652517 -1918893952 + + -3.2200109958648682e-01 2.2200360894203186e-01 + <_> + + 0 -1 201 -873492986 1332382499 -287153536 1365960970 + 1570751688 86400343 294895824 389283743 + + -4.3344420194625854e-01 1.6486145555973053e-01 + <_> + + 0 -1 39 -550462977 497814994 165283325 939408050 272107772 + -1661714196 1559500029 1557690863 + + -3.0110406875610352e-01 2.3946200311183929e-01 + <_> + + 0 -1 24 -320674066 -353966197 -354228484 -621876062 + 1547785717 1505060372 1978947829 2002219895 + + -4.4369262456893921e-01 1.7294771969318390e-01 + <_> + + 0 -1 162 -360529920 -79617826 848794457 331310642 + -1987053061 -1666055573 -1209271298 1074513418 + + -3.7377515435218811e-01 1.9515429437160492e-01 + <_> + + 0 -1 33 -521936894 1718228966 -1030226758 -28903354 + 1207396130 656656962 1940608999 2012739543 + + -4.9193805456161499e-01 1.2772387266159058e-01 + <_> + + 0 -1 31 -237788756 -36891774 756162060 -3341429 -216220931 + 290458792 -460804133 2068699022 + + -2.8526151180267334e-01 2.4898144602775574e-01 + <_> + + 0 -1 137 -851507192 -49414322 390020095 1973369886 + -337723713 -1048769 -1940650054 -927994838 + + -2.5763612985610962e-01 2.7653712034225464e-01 + <_> + + 0 -1 135 1372360956 862725368 730609136 -1553429230 + 819508732 453807332 1829633021 1568536543 + + -4.5178580284118652e-01 1.5893152356147766e-01 + <_> + + 0 -1 145 -1274805488 -9927920 -1376462213 -1078424186 + 603396895 -1090832097 107616655 440664192 + + -4.1856658458709717e-01 1.5220971405506134e-01 + <_> + + 0 -1 231 -288652797 1608697646 1224139776 1396858638 + 1558660860 27394093 -438065980 -714604577 + + -2.8446722030639648e-01 2.5237077474594116e-01 + <_> + + 0 -1 226 -1951680709 1048748839 934756149 -1214142800 + 854407598 -1073775393 747499512 -1427114237 + + -2.1165955066680908e-01 3.3453106880187988e-01 + <_> + + 0 -1 106 890514736 521148756 -5461060 -15927272 625774572 + 252750161 -891770388 985401424 + + -4.9193653464317322e-01 1.3465493917465210e-01 + <_> + + 0 -1 220 -291781117 1931978283 -1006772142 1937440367 + 1660932014 1140286983 -532876302 -105978118 + + -2.1797108650207520e-01 3.2472217082977295e-01 + <_> + + 0 -1 237 142568448 5694285 267957505 432006067 -5019387 + 82008315 -50595072 553515895 + + -5.4030531644821167e-01 1.3703715801239014e-01 + <_> + + 0 -1 103 -499261184 -361790357 131140111 -303573517 + 1180757915 -1205085265 1326942120 1365504522 + + -3.4566181898117065e-01 1.9119048118591309e-01 + + <_> + 27 + -1.0864274501800537e+00 + + <_> + + 0 -1 11 -891007484 1211035262 -823210124 -654381318 + 1564990964 1683447679 -8960692 -50331681 + + -1.7767603695392609e-01 4.3950533866882324e-01 + <_> + + 0 -1 53 1494504925 -545673287 -609913089 -15682660 + -1202970706 -6512216 -540169493 -1152645112 + + -2.3206019401550293e-01 3.5371619462966919e-01 + <_> + + 0 -1 258 -889194746 175616267 -277357050 317915103 + 2124145408 1123013115 -85207488 -520355841 + + -4.2506697773933411e-01 1.9782558083534241e-01 + <_> + + 0 -1 146 -1 -21002 -1282140165 -560551 -1429426772 + -1363539800 737717486 -17697 + + -1.6592836380004883e-01 4.8377290368080139e-01 + <_> + + 0 -1 218 -1023770102 -134512145 -539363397 -203424453 + 1272623102 -271847642 -1595890998 -1595743638 + + -2.7133983373641968e-01 2.7267450094223022e-01 + <_> + + 0 -1 88 -805076990 -149425455 -985448645 -712822435 + -765819210 -620768021 -1832196982 -754716533 + + -2.9903864860534668e-01 2.4232909083366394e-01 + <_> + + 0 -1 46 -1074249731 1063010200 886120183 1054646218 + -1074188360 -8614708 496775097 -1073988100 + + -3.1212934851646423e-01 2.2097712755203247e-01 + <_> + + 0 -1 214 -68779992 -205123576 536228408 2106794930 782941342 + 442508840 123864506 1608515547 + + -3.5215419530868530e-01 1.9548596441745758e-01 + <_> + + 0 -1 138 134414867 -82756098 907087317 -12699939 1052716991 + -1081669588 797642751 -362887177 + + -3.0123272538185120e-01 2.3132325708866119e-01 + <_> + + 0 -1 72 1480642776 1997667273 282210484 -607120144 -86663538 + 491273210 -1258550900 1994914794 + + -2.9138937592506409e-01 2.3277030885219574e-01 + <_> + + 0 -1 139 -2136960272 -1712184942 1342143477 -1242228367 + -1669857285 -1157984263 -1970783861 720044086 + + -3.4432685375213623e-01 1.9603538513183594e-01 + <_> + + 0 -1 6 -273682938 1617226187 -318870010 -892410812 + 1448570470 1380122631 -480551051 -169347209 + + -3.5725796222686768e-01 1.9195778667926788e-01 + <_> + + 0 -1 181 -285563872 1938338084 -284622176 1369605388 + 788149694 685363 1733297344 1371537119 + + -4.4718763232231140e-01 1.3961075246334076e-01 + <_> + + 0 -1 171 -277887485 -500718545 1321160726 -207444821 + -1956666417 1114068100 1408541940 -215746625 + + -2.5066006183624268e-01 2.7519401907920837e-01 + <_> + + 0 -1 195 1935143315 993445570 610010493 -150654117 + 2122195213 258214406 1195727869 1598549829 + + -2.5814446806907654e-01 2.5379449129104614e-01 + <_> + + 0 -1 191 473206268 465341840 275257821 499657168 1043082232 + -1078087986 -638054916 1051468524 + + -4.7531163692474365e-01 1.4217083156108856e-01 + <_> + + 0 -1 118 -474312942 -216353000 672931579 965216924 + -1694308964 679631248 65288426 1072693195 + + -3.4220626950263977e-01 1.9385008513927460e-01 + <_> + + 0 -1 222 -281285118 1670008163 -496738816 1408028942 + -1077961972 12189815 -1226841458 -773849649 + + -3.1611573696136475e-01 2.1220512688159943e-01 + <_> + + 0 -1 47 67109888 -1141813928 -229012613 -5148635 761734654 + -1076389365 -1933831800 142606340 + + -5.6943005323410034e-01 1.2012590467929840e-01 + <_> + + 0 -1 84 -1431396224 -1725172082 1078388256 -1850738226 + 730587530 169925378 -811871287 1099953835 + + -3.8054189085960388e-01 1.7058716714382172e-01 + <_> + + 0 -1 77 260768394 495072811 233439232 28973086 575602872 + 181406662 445404133 1334704062 + + -4.8239827156066895e-01 1.3680285215377808e-01 + <_> + + 0 -1 209 -1066220015 -4474061 2076076799 -8947757 1888966619 + -1 1786727151 -356580861 + + -1.9837911427021027e-01 3.4651774168014526e-01 + <_> + + 0 -1 266 -1087373425 -2131526698 -27274240 678559092 + -1239681243 21160657 -198446336 -521666585 + + -3.1992667913436890e-01 2.1379309892654419e-01 + <_> + + 0 -1 183 1411949790 1533029780 537141276 -645595131 + -2015977302 -70766372 80521851 1862591198 + + -3.4819486737251282e-01 1.9132232666015625e-01 + <_> + + 0 -1 163 159409168 453523316 268185503 939303412 754542844 + -1094811257 783024670 460076576 + + -4.6279802918434143e-01 1.3720697164535522e-01 + <_> + + 0 -1 17 -270012637 -422582426 -859576340 -290994558 + 1611619109 1984156183 1973384935 -671910025 + + -3.7753671407699585e-01 1.7108070850372314e-01 + <_> + + 0 -1 61 1390453016 -148850831 -1946933193 487664274 + 1167036398 -1356085046 -918287665 -1085865773 + + -2.5055482983589172e-01 2.6808515191078186e-01 + + <_> + 28 + -1.1071751117706299e+00 + + <_> + + 0 -1 234 -352328126 553381479 -520359742 49741823 -402656305 + 15201071 -404752917 16777215 + + -2.6885536313056946e-01 3.9257419109344482e-01 + <_> + + 0 -1 69 -2010207566 992095882 -923650279 788664832 + -2001285654 -1627768873 -33641557 -286265589 + + -2.6879036426544189e-01 2.9501637816429138e-01 + <_> + + 0 -1 91 -784068086 -108473857 2146818527 -573505573 + -875627894 -121565032 -69223473 -69862017 + + -3.2706248760223389e-01 2.2975476086139679e-01 + <_> + + 0 -1 30 -1048578 -604866 -1074132226 -859444 -42054404 + 1572803865 -537376564 -45313 + + -2.4356228113174438e-01 3.0726879835128784e-01 + <_> + + 0 -1 203 546301 -3364714 1037842677 -1141359636 -1730392580 + -1073873060 -1195099652 -1197997560 + + -2.6030963659286499e-01 2.7339822053909302e-01 + <_> + + 0 -1 244 340007221 -715777 1976958847 -560289 -645227653 + -5137 -1395851585 -1475338720 + + -3.3757317066192627e-01 1.8169505894184113e-01 + <_> + + 0 -1 252 -536876277 6287771 -1619133169 -2073298197 + 1942747142 347331667 -456196348 -187697169 + + -2.8153365850448608e-01 2.3552483320236206e-01 + <_> + + 0 -1 133 -1895619053 1594076987 213346175 1940061794 + -1084264449 -836767838 1113580542 -71317581 + + -1.8090774118900299e-01 3.6471092700958252e-01 + <_> + + 0 -1 196 -939278205 -1038940544 358138843 -241883949 + -1991554675 -593763646 72742875 -639905253 + + -2.0349347591400146e-01 3.1664288043975830e-01 + <_> + + 0 -1 32 -10467632 -1218534866 -140499459 -873455368 + -84072199 -1396790337 -1298891060 174661666 + + -2.9732549190521240e-01 2.0526884496212006e-01 + <_> + + 0 -1 168 -1014857696 -580779488 1466422647 2000216098 + -999622994 -9829728 -1067589142 1090961922 + + -4.1238275170326233e-01 1.5365768969058990e-01 + <_> + + 0 -1 34 -2744452 -386768130 -423167714 -1765347118 + -638249896 1761690417 1675646108 -16942736 + + -3.5506930947303772e-01 1.7395976185798645e-01 + <_> + + 0 -1 180 -297810429 2010621711 1795057440 1471141759 + -298336274 7532327 2012214010 -1968439297 + + -2.2353799641132355e-01 2.8162729740142822e-01 + <_> + + 0 -1 52 1370465178 -138027107 1106779442 1039434826 + 1994768862 1132100550 -62026870 1892530874 + + -2.9113209247589111e-01 2.0969158411026001e-01 + <_> + + 0 -1 119 1785457410 1074396198 -722866136 1894924863 + -2092621052 1078068033 849286481 1350039159 + + -4.8594748973846436e-01 1.4445739984512329e-01 + <_> + + 0 -1 267 -307232973 739178939 -109578240 -1467065064 + -1953519100 543159451 2067785728 1156576639 + + -3.6847913265228271e-01 1.6343115270137787e-01 + <_> + + 0 -1 105 -304479188 -653906046 458232444 362283648 743997852 + 1023435825 678702296 2141353427 + + -4.1794654726982117e-01 1.4696790277957916e-01 + <_> + + 0 -1 149 -1474295600 583142900 796931261 636946882 + -1677723202 -1141257324 999885740 146933924 + + -4.6846660971641541e-01 1.2554962933063507e-01 + <_> + + 0 -1 142 -1056920456 2144904732 1557674361 454068048 + 162041240 982532569 1165742776 -71968580 + + -3.3009743690490723e-01 1.8906202912330627e-01 + <_> + + 0 -1 215 -586218806 2064193627 276825240 420610717 290201738 + 838881504 -1650814757 1587269849 + + -3.3714732527732849e-01 1.8466538190841675e-01 + <_> + + 0 -1 2 386867406 1939059381 424173738 -46096988 -1177697538 + 251995272 1344360935 1962986616 + + -3.3208054304122925e-01 1.8585780262947083e-01 + <_> + + 0 -1 134 -298857425 1997964573 1077568116 2012533912 + 1361920524 1090935617 1193755076 -200286465 + + -2.5905856490135193e-01 2.4680580198764801e-01 + <_> + + 0 -1 68 -1056780345 -4719777 2134372031 -1759921541 + -553802593 -16822282 -421013525 -374683390 + + -1.5229237079620361e-01 3.9819708466529846e-01 + <_> + + 0 -1 224 -608446464 -1867328277 -790902508 421068383 + -394279672 141484519 445484292 408940511 + + -3.8842281699180603e-01 1.5214422345161438e-01 + <_> + + 0 -1 4 1810834979 545384940 -2033506042 1522937006 + 1661430389 1146300953 2110680405 -152732730 + + -3.6140063405036926e-01 1.7674677073955536e-01 + <_> + + 0 -1 170 -1660680999 455349924 -1074521701 -1076380789 + 1166607768 -88280905 1539185402 -1680998264 + + -2.5342223048210144e-01 2.5323724746704102e-01 + <_> + + 0 -1 207 -85819176 -574059136 -1925111674 1596920354 + 1782615976 437916680 386308588 2132014521 + + -3.5360771417617798e-01 1.8576373159885406e-01 + <_> + + 0 -1 246 493625329 -1650686224 -1305653903 -1780149510 + 1033453485 -90368775 -1899817483 -1610865684 + + -2.7493086457252502e-01 2.2744202613830566e-01 + + <_> + + 0 0 1 1 + <_> + + 0 0 3 1 + <_> + + 0 0 12 6 + <_> + + 0 1 1 1 + <_> + + 0 1 1 2 + <_> + + 0 1 1 4 + <_> + + 0 2 1 1 + <_> + + 0 2 1 2 + <_> + + 0 2 2 1 + <_> + + 0 3 1 1 + <_> + + 0 3 1 2 + <_> + + 0 3 1 5 + <_> + + 0 3 2 1 + <_> + + 0 3 12 4 + <_> + + 0 4 1 1 + <_> + + 0 4 2 1 + <_> + + 0 6 1 1 + <_> + + 0 6 2 1 + <_> + + 0 7 1 2 + <_> + + 0 7 2 2 + <_> + + 0 8 1 2 + <_> + + 0 9 1 2 + <_> + + 0 11 1 2 + <_> + + 0 12 1 1 + <_> + + 0 12 2 1 + <_> + + 0 12 2 2 + <_> + + 0 13 1 1 + <_> + + 0 14 1 1 + <_> + + 0 15 1 1 + <_> + + 0 15 2 1 + <_> + + 0 15 3 1 + <_> + + 0 15 12 1 + <_> + + 1 4 5 1 + <_> + + 1 6 2 1 + <_> + + 1 9 1 3 + <_> + + 1 11 10 2 + <_> + + 2 0 1 1 + <_> + + 2 0 2 1 + <_> + + 2 15 2 1 + <_> + + 2 15 4 1 + <_> + + 2 15 8 1 + <_> + + 3 0 1 1 + <_> + + 3 0 2 1 + <_> + + 3 0 3 1 + <_> + + 3 0 10 3 + <_> + + 3 2 10 2 + <_> + + 3 15 1 1 + <_> + + 4 0 1 1 + <_> + + 4 0 1 4 + <_> + + 4 0 7 1 + <_> + + 4 0 9 2 + <_> + + 4 1 5 2 + <_> + + 4 1 9 1 + <_> + + 4 4 9 1 + <_> + + 4 12 9 2 + <_> + + 5 0 1 3 + <_> + + 5 0 1 4 + <_> + + 5 1 9 1 + <_> + + 5 2 5 2 + <_> + + 5 4 6 1 + <_> + + 5 6 1 4 + <_> + + 5 12 8 1 + <_> + + 5 13 6 1 + <_> + + 6 0 4 1 + <_> + + 6 1 9 2 + <_> + + 6 3 6 1 + <_> + + 6 7 1 3 + <_> + + 6 12 4 2 + <_> + + 7 0 3 1 + <_> + + 7 1 2 1 + <_> + + 7 1 4 2 + <_> + + 7 1 9 2 + <_> + + 7 2 8 1 + <_> + + 7 4 4 1 + <_> + + 7 4 7 1 + <_> + + 7 4 8 1 + <_> + + 7 6 1 3 + <_> + + 7 7 7 3 + <_> + + 7 8 7 3 + <_> + + 7 9 8 3 + <_> + + 7 11 7 2 + <_> + + 8 10 6 1 + <_> + + 9 0 1 3 + <_> + + 9 0 1 4 + <_> + + 9 4 1 3 + <_> + + 9 9 1 3 + <_> + + 9 11 3 2 + <_> + + 9 15 3 1 + <_> + + 10 0 1 3 + <_> + + 10 0 1 4 + <_> + + 10 0 5 2 + <_> + + 10 1 5 3 + <_> + + 10 3 1 3 + <_> + + 10 3 3 1 + <_> + + 10 3 8 1 + <_> + + 10 6 1 4 + <_> + + 10 7 1 3 + <_> + + 10 9 1 3 + <_> + + 10 11 5 1 + <_> + + 11 0 1 3 + <_> + + 11 1 1 4 + <_> + + 11 2 3 1 + <_> + + 11 3 6 1 + <_> + + 11 4 1 2 + <_> + + 11 6 1 4 + <_> + + 11 10 1 2 + <_> + + 11 13 2 1 + <_> + + 12 0 1 3 + <_> + + 12 3 1 3 + <_> + + 12 6 3 4 + <_> + + 12 9 1 3 + <_> + + 12 15 4 1 + <_> + + 13 0 1 3 + <_> + + 13 0 3 1 + <_> + + 13 1 2 3 + <_> + + 13 3 3 2 + <_> + + 13 8 1 3 + <_> + + 13 8 2 3 + <_> + + 13 10 1 2 + <_> + + 13 10 3 1 + <_> + + 13 15 1 1 + <_> + + 13 15 5 1 + <_> + + 14 0 1 3 + <_> + + 14 0 4 1 + <_> + + 14 1 5 2 + <_> + + 14 9 1 3 + <_> + + 14 13 4 1 + <_> + + 14 15 2 1 + <_> + + 14 15 3 1 + <_> + + 15 0 1 4 + <_> + + 15 0 2 1 + <_> + + 15 0 3 1 + <_> + + 15 3 3 1 + <_> + + 15 5 1 1 + <_> + + 15 9 1 1 + <_> + + 15 9 2 3 + <_> + + 15 10 4 2 + <_> + + 16 0 5 1 + <_> + + 16 3 1 1 + <_> + + 16 3 3 1 + <_> + + 16 3 4 1 + <_> + + 16 3 5 1 + <_> + + 16 10 1 2 + <_> + + 17 3 1 1 + <_> + + 17 4 1 1 + <_> + + 17 4 4 1 + <_> + + 17 12 2 2 + <_> + + 18 0 1 4 + <_> + + 18 1 5 2 + <_> + + 18 2 3 1 + <_> + + 18 2 6 1 + <_> + + 18 3 1 1 + <_> + + 19 0 1 3 + <_> + + 19 0 1 4 + <_> + + 19 2 1 3 + <_> + + 19 7 1 1 + <_> + + 19 8 2 1 + <_> + + 19 9 1 3 + <_> + + 19 15 2 1 + <_> + + 20 0 1 3 + <_> + + 20 0 1 4 + <_> + + 20 0 3 1 + <_> + + 20 3 1 2 + <_> + + 20 3 3 1 + <_> + + 20 4 1 2 + <_> + + 20 7 1 3 + <_> + + 20 8 1 3 + <_> + + 20 13 3 1 + <_> + + 21 1 1 4 + <_> + + 21 3 1 3 + <_> + + 21 4 3 1 + <_> + + 21 7 1 1 + <_> + + 21 7 1 3 + <_> + + 21 8 1 3 + <_> + + 21 10 1 1 + <_> + + 21 10 1 2 + <_> + + 21 15 2 1 + <_> + + 22 2 1 3 + <_> + + 22 3 2 5 + <_> + + 22 4 1 3 + <_> + + 22 6 1 1 + <_> + + 22 8 1 2 + <_> + + 22 8 1 3 + <_> + + 22 10 2 2 + <_> + + 22 11 2 2 + <_> + + 23 0 1 4 + <_> + + 23 3 1 3 + <_> + + 23 6 1 4 + <_> + + 23 7 1 3 + <_> + + 23 9 1 1 + <_> + + 23 9 1 3 + <_> + + 23 15 1 1 + <_> + + 24 0 1 3 + <_> + + 24 0 1 4 + <_> + + 24 1 1 4 + <_> + + 24 1 3 1 + <_> + + 24 2 1 2 + <_> + + 24 7 1 3 + <_> + + 24 7 2 1 + <_> + + 24 9 1 1 + <_> + + 24 9 1 3 + <_> + + 24 10 1 1 + <_> + + 25 4 1 2 + <_> + + 25 4 3 1 + <_> + + 25 7 1 2 + <_> + + 25 7 1 3 + <_> + + 25 8 1 3 + <_> + + 25 9 1 2 + <_> + + 25 10 1 2 + <_> + + 26 0 1 1 + <_> + + 26 1 1 1 + <_> + + 26 3 1 3 + <_> + + 26 6 1 3 + <_> + + 26 7 1 2 + <_> + + 26 7 1 3 + <_> + + 26 8 2 2 + <_> + + 26 11 2 2 + <_> + + 27 0 1 4 + <_> + + 27 0 3 1 + <_> + + 27 3 1 3 + <_> + + 27 6 1 1 + <_> + + 27 6 1 3 + <_> + + 27 9 1 1 + <_> + + 27 9 1 3 + <_> + + 27 9 3 2 + <_> + + 28 0 2 1 + <_> + + 28 1 1 1 + <_> + + 28 1 1 3 + <_> + + 28 3 1 3 + <_> + + 28 9 1 1 + <_> + + 28 9 1 3 + <_> + + 28 10 1 1 + <_> + + 28 15 1 1 + <_> + + 29 0 1 1 + <_> + + 29 7 2 1 + <_> + + 30 0 1 1 + <_> + + 30 0 1 4 + <_> + + 30 4 2 1 + <_> + + 30 8 2 1 + <_> + + 30 10 2 1 + <_> + + 30 11 2 2 + <_> + + 30 12 2 2 + <_> + + 30 14 2 1 + <_> + + 30 15 2 1 + <_> + + 31 0 1 1 + <_> + + 31 0 1 4 + <_> + + 31 15 1 1 + <_> + + 32 0 1 4 + <_> + + 33 0 1 1 + <_> + + 33 0 1 4 + <_> + + 33 1 1 1 + <_> + + 33 1 1 2 + <_> + + 33 2 1 1 + <_> + + 33 2 1 2 + <_> + + 33 3 1 1 + <_> + + 33 3 1 2 + <_> + + 33 3 1 3 + <_> + + 33 3 1 5 + <_> + + 33 4 1 1 + <_> + + 33 5 1 1 + <_> + + 33 5 1 3 + <_> + + 33 6 1 1 + <_> + + 33 9 1 1 + <_> + + 33 10 1 1 + <_> + + 33 10 1 2 + <_> + + 33 12 1 1 + <_> + + 33 13 1 1 + <_> + + 33 14 1 1 + <_> + + 33 15 1 1 + diff --git a/src/ios/lib/openalpr.framework/runtime_data/region/vn2.xml b/src/ios/lib/openalpr.framework/runtime_data/region/vn2.xml new file mode 100644 index 0000000..28d96e6 --- /dev/null +++ b/src/ios/lib/openalpr.framework/runtime_data/region/vn2.xml @@ -0,0 +1,625 @@ + + + + BOOST + LBP + 20 + 28 + + GAB + 9.9500000476837158e-01 + 4.4999998807907104e-01 + 9.4999999999999996e-01 + 1 + 100 + + 256 + 1 + 11 + + + <_> + 5 + -1.0226867198944092e+00 + + <_> + + 0 -1 3 -236978690 -71328259 1469446622 -41985 300805055 + 1974514928 -341061633 -1 + + -8.1343281269073486e-01 5.4749196767807007e-01 + <_> + + 0 -1 47 -1068506578 -535837126 -2139095038 -1065140221 + -1073493873 1073774592 -1056185469 -203425825 + + -6.8157231807708740e-01 6.2008899450302124e-01 + <_> + + 0 -1 8 -882644473 6749795 -1069291346 -2140212948 1350526835 + 84000771 -786963725 -403177497 + + -6.5852028131484985e-01 5.9720140695571899e-01 + <_> + + 0 -1 55 -1959252296 -2389544 -721100803 -6546476 -1240731201 + -1077882627 -1080099841 -1141371716 + + -6.6024768352508545e-01 5.6097584962844849e-01 + <_> + + 0 -1 13 -957023424 1876153335 -629018556 -1009843309 + -527056715 -1831865877 868609770 -1350571009 + + -6.3601404428482056e-01 5.6986278295516968e-01 + + <_> + 5 + -1.1183853149414062e+00 + + <_> + + 0 -1 34 -1087352324 -2420483 1372910047 2113212445 + -1148650759 -106239812 -1148650566 -1683482424 + + -8.1584769487380981e-01 3.6146789789199829e-01 + <_> + + 0 -1 36 -796671862 -796737406 1363214376 1573376133 + 1342235266 1073741825 1359870346 -606085153 + + -6.9792109727859497e-01 5.0962162017822266e-01 + <_> + + 0 -1 43 -1596738302 -738756081 -1291747361 -137389281 + -915801681 -91504437 -1413752657 -1347442137 + + -6.6823571920394897e-01 5.3261423110961914e-01 + <_> + + 0 -1 5 -208153610 -237777985 -1626780180 -2626532 + -1148627972 1912312479 -83100674 1504688623 + + -6.7626368999481201e-01 5.1578819751739502e-01 + <_> + + 0 -1 18 -1110436427 -141552556 -788442881 1059033301 + -1719130691 -1178345416 -1102521443 -1423963940 + + -6.2948453426361084e-01 6.0341739654541016e-01 + + <_> + 5 + -1.9752599000930786e+00 + + <_> + + 0 -1 27 -1785702947 -547547947 -1761485315 -191011 + -1995924485 -72740104 -1095976257 -1086846584 + + -7.5782203674316406e-01 4.6846845746040344e-01 + <_> + + 0 -1 39 1360056540 1607733652 1363221981 -2404139 + -1115123526 -1717827448 1048783807 -1079312374 + + -6.4150768518447876e-01 5.1527595520019531e-01 + <_> + + 0 -1 44 -1060126074 -238824509 536903680 1363780187 688994 + 1342193665 -788413717 -614474865 + + -5.6712394952774048e-01 5.3354203701019287e-01 + <_> + + 0 -1 50 -1 1073537022 -285212675 -1082261513 -266243 + -1619984385 -536904452 2079972863 + + -5.3560340404510498e-01 6.0510307550430298e-01 + <_> + + 0 -1 23 571474481 869470705 219369951 2113346335 -1859444519 + -1073801157 262856381 993657368 + + -6.9949334859848022e-01 4.7212797403335571e-01 + + <_> + 5 + -1.1232472658157349e+00 + + <_> + + 0 -1 54 -209198525 1413661190 200706 -1031028670 1342246978 + 1090683040 -1320974197 -201326641 + + -7.6172041893005371e-01 3.1445312500000000e-01 + <_> + + 0 -1 15 -562303134 -351020713 -687681060 -278937155 + 2074210739 2073986273 -74059777 -65 + + -6.4060848951339722e-01 4.7522404789924622e-01 + <_> + + 0 -1 19 457708756 -1122564679 298209791 2100761337 + -1153410374 -23527032 -1146312257 -1180169800 + + -6.1004692316055298e-01 5.2203148603439331e-01 + <_> + + 0 -1 56 -857758202 181110223 -326838386 1890572927 + 1772073743 556974267 -67110257 -268436546 + + -6.1680519580841064e-01 5.0427693128585815e-01 + <_> + + 0 -1 35 966284540 -1861185520 -2128946723 1599144983 + -1568640262 -812021606 -1082090808 186259912 + + -6.8607240915298462e-01 4.8699402809143066e-01 + + <_> + 5 + -1.1578670740127563e+00 + + <_> + + 0 -1 17 -68170961 -293084402 1224843871 -536349562 + 1914930007 1615036999 -427568249 -173015109 + + -7.0355576276779175e-01 3.6879432201385498e-01 + <_> + + 0 -1 38 -225984374 -1339698556 8503296 1397211650 17690282 + 1026 1428418698 -706742369 + + -6.1560535430908203e-01 4.2747393250465393e-01 + <_> + + 0 -1 28 1367400440 353696080 -778858247 2111820247 23722697 + 1085485 199917759 455060462 + + -6.7115384340286255e-01 4.1770645976066589e-01 + <_> + + 0 -1 7 1977602766 1365111615 -1121728050 -75506241 + 1904999412 1342548476 -75269489 -2099009 + + -7.1227186918258667e-01 3.8815173506736755e-01 + <_> + + 0 -1 33 -754195830 -804126526 285313328 287547920 + -1073026872 -2113927040 -1073495932 -788012309 + + -5.5254626274108887e-01 5.0164043903350830e-01 + + <_> + 6 + -8.1348818540573120e-01 + + <_> + + 0 -1 14 320344829 -74104167 428873215 -551614349 -2136303362 + -108412247 788179407 -1616373368 + + -7.2034955024719238e-01 2.9809725284576416e-01 + <_> + + 0 -1 4 -704643113 -4533929 1082326870 -7810978 1352882687 + 2125561071 1786216411 -8209 + + -5.1959729194641113e-01 5.5615991353988647e-01 + <_> + + 0 -1 53 -243801590 -802967637 1426271746 -1007683850 + -719071406 1342486726 -173605946 -218628353 + + -5.2952307462692261e-01 5.4032027721405029e-01 + <_> + + 0 -1 26 -1719397360 -33811304 530659327 1073021083 + 1342178488 -1197471567 1332354559 221188457 + + -6.9718199968338013e-01 4.0761217474937439e-01 + <_> + + 0 -1 32 774911472 -270794532 -251332257 357829517 + -1183835398 -1412759130 1653264319 173019184 + + -8.4420329332351685e-01 3.1606295704841614e-01 + <_> + + 0 -1 9 -33554641 1079180070 -649870898 -560999525 1822128983 + 1622257847 -557127169 -247473492 + + -6.3315248489379883e-01 4.0907686948776245e-01 + + <_> + 5 + -1.0814472436904907e+00 + + <_> + + 0 -1 60 -269489361 1340063903 -2112495645 -186662433 + -88871577 160158602 -73665789 -135528513 + + -7.2124838829040527e-01 2.3564356565475464e-01 + <_> + + 0 -1 1 1147561570 -8231937 -220728609 -3718145 1883448309 + -180711173 -120018177 -268738097 + + -7.1248924732208252e-01 2.9627996683120728e-01 + <_> + + 0 -1 16 -143657486 803066203 -641576488 -1346414113 + 2038822369 1527474988 -170528044 -269615161 + + -6.1012923717498779e-01 3.9779847860336304e-01 + <_> + + 0 -1 42 -208674686 -778570287 -972684030 -772808502 + -1608535872 1174671461 1456465871 1930416427 + + -5.7085311412811279e-01 4.4576171040534973e-01 + <_> + + 0 -1 6 1060821245 -4636683 -1094763521 1039835037 -4436487 + -557998850 -16998435 -1349909272 + + -4.3154692649841309e-01 6.0856270790100098e-01 + + <_> + 5 + -1.0268830060958862e+00 + + <_> + + 0 -1 58 -268439793 1842990043 -850919954 -6303489 1873804103 + 868219595 -69484857 -4194305 + + -7.6132076978683472e-01 1.3425549864768982e-01 + <_> + + 0 -1 51 -550508545 918351897 -140393124 -1784757941 + -70477123 964518571 -617522756 -4205059 + + -5.9086549282073975e-01 3.8894322514533997e-01 + <_> + + 0 -1 41 -248266622 -739784177 -2141289952 -174370260 + 1624499111 268931154 1074787021 -210767953 + + -5.2205401659011841e-01 4.8417466878890991e-01 + <_> + + 0 -1 0 -1525134091 -1109897859 -1660522017 -1644247684 + 2074655422 -1146365853 -1975981059 -1977334748 + + -5.8343207836151123e-01 4.1282418370246887e-01 + <_> + + 0 -1 59 -814749150 -1044386650 -974208256 -570560821 + 1852832912 295171443 -415239197 -1283458081 + + -4.4459566473960876e-01 5.5129295587539673e-01 + + <_> + 7 + -1.3468582630157471e+00 + + <_> + + 0 -1 48 -22544385 -268373114 -315937931 -1707545 -1078199041 + -134163304 -477295989 -1050113 + + -6.5963971614837646e-01 3.6756756901741028e-01 + <_> + + 0 -1 2 1879015207 542897023 -652233029 -461379155 + -1618347145 1912720139 -34868294 -218103817 + + -6.0403579473495483e-01 3.4924373030662537e-01 + <_> + + 0 -1 22 470828248 -6851716 358111701 -195361684 973667294 + -1090908119 -1113556485 993534360 + + -7.1156060695648193e-01 3.0485236644744873e-01 + <_> + + 0 -1 46 -475012190 -468764761 -940574656 -1313374241 + -672152701 1350922110 -424151066 -137363457 + + -4.6654438972473145e-01 4.8787227272987366e-01 + <_> + + 0 -1 24 895540479 -4213861 1371697377 1000022554 268436724 + -96456319 -987466515 -66885 + + -4.8980873823165894e-01 4.9601224064826965e-01 + <_> + + 0 -1 10 830986078 978498018 1212634268 -7868086 -338953233 + 1955102955 2076283886 2121920686 + + -7.6825737953186035e-01 3.0441379547119141e-01 + <_> + + 0 -1 49 -464527326 -266403822 61910 -764964158 -804131566 + 690462785 105570303 -492711073 + + -6.0366225242614746e-01 3.9621585607528687e-01 + + <_> + 6 + -1.7895716428756714e+00 + + <_> + + 0 -1 21 1364573183 -582112869 2058695295 -6161477 + -1357251393 -662336771 -89413125 -3556673 + + -6.8916153907775879e-01 2.6106193661689758e-01 + <_> + + 0 -1 30 -1657268752 -45612848 486638045 1067013433 + -363278408 -1732736120 -1614242561 523377052 + + -6.9656443595886230e-01 3.0079075694084167e-01 + <_> + + 0 -1 45 -385876192 1524605990 -2059037737 -2645738 + -1884430347 -542584354 1737419071 692039206 + + -6.3620084524154663e-01 3.1837970018386841e-01 + <_> + + 0 -1 12 -279972306 -1360670259 -1823676278 -87565865 + 1161158962 2003271952 -878236737 -203951493 + + -6.3273507356643677e-01 3.5124236345291138e-01 + <_> + + 0 -1 40 -715361008 -1756993828 -2084937297 -36753112 + -1299701250 2074255770 -2096715345 153813130 + + -6.5382730960845947e-01 3.5776382684707642e-01 + <_> + + 0 -1 20 -1818091375 -741326623 -691960385 -1116518535 + -1333224993 -560015974 -1901407763 -1346762324 + + -4.9002870917320251e-01 4.4960626959800720e-01 + + <_> + 7 + -1.0691219568252563e+00 + + <_> + + 0 -1 37 -81003525 461435274 -1012705865 -10497345 -350241793 + -91580696 2005598335 -7249 + + -6.5210670232772827e-01 3.1233596801757812e-01 + <_> + + 0 -1 57 -826278137 1217917183 -1265116640 1813248574 + 1159199588 1243425723 -473966044 -520881157 + + -6.4328962564468384e-01 3.0107370018959045e-01 + <_> + + 0 -1 29 -546572126 -184109686 1342882304 -754068276 + 1653012961 1074103457 1090766283 868218843 + + -5.6011921167373657e-01 3.4936606884002686e-01 + <_> + + 0 -1 31 1980780701 -1115998562 296448463 -121827015 + -1147606888 -1346840419 985705599 -1625683479 + + -4.6067923307418823e-01 4.4133010506629944e-01 + <_> + + 0 -1 11 1189554799 1319077781 1998031309 -22283985 833051954 + 1385818172 -138953845 -1879377169 + + -5.6165486574172974e-01 3.9155927300453186e-01 + <_> + + 0 -1 52 -653270518 1105913099 -1022296000 -796692293 + 690149379 1359175685 -218376541 -1297088609 + + -5.0313746929168701e-01 4.5016640424728394e-01 + <_> + + 0 -1 25 1677398999 -9492915 -1460127170 597994023 + -2143238736 -657328155 -166293761 -1611679921 + + -4.3750682473182678e-01 5.0037056207656860e-01 + + <_> + + 0 0 3 1 + <_> + + 0 2 7 3 + <_> + + 0 4 2 2 + <_> + + 0 4 9 5 + <_> + + 0 8 4 4 + <_> + + 0 9 9 3 + <_> + + 1 0 5 1 + <_> + + 1 4 9 3 + <_> + + 1 5 2 3 + <_> + + 1 6 2 1 + <_> + + 1 7 9 4 + <_> + + 2 4 2 1 + <_> + + 2 6 3 1 + <_> + + 3 1 3 5 + <_> + + 3 1 7 1 + <_> + + 3 3 3 3 + <_> + + 3 4 3 3 + <_> + + 3 5 1 3 + <_> + + 4 0 3 1 + <_> + + 4 17 3 1 + <_> + + 5 1 3 1 + <_> + + 5 2 6 4 + <_> + + 5 15 4 1 + <_> + + 6 2 4 1 + <_> + + 6 6 4 2 + <_> + + 6 7 3 2 + <_> + + 6 8 4 1 + <_> + + 6 16 4 1 + <_> + + 7 7 5 1 + <_> + + 7 11 1 1 + <_> + + 7 14 4 1 + <_> + + 7 15 4 1 + <_> + + 8 16 4 1 + <_> + + 9 7 1 2 + <_> + + 9 15 4 1 + <_> + + 9 15 5 1 + <_> + + 10 5 1 3 + <_> + + 10 5 4 3 + <_> + + 10 6 1 3 + <_> + + 10 8 3 1 + <_> + + 10 9 3 1 + <_> + + 11 5 1 3 + <_> + + 11 9 1 2 + <_> + + 12 0 5 3 + <_> + + 12 5 1 3 + <_> + + 13 0 5 4 + <_> + + 13 5 1 1 + <_> + + 13 5 1 3 + <_> + + 13 5 3 3 + <_> + + 13 7 1 2 + <_> + + 13 8 5 4 + <_> + + 13 11 5 3 + <_> + + 14 5 1 1 + <_> + + 14 5 1 3 + <_> + + 15 5 1 3 + <_> + + 16 0 2 1 + <_> + + 16 5 2 1 + <_> + + 17 6 3 3 + <_> + + 18 5 2 1 + <_> + + 19 11 1 1 + <_> + + 22 6 1 1 + diff --git a/src/ios/lib/opencv2.framework/opencv2 b/src/ios/lib/opencv2.framework/opencv2 deleted file mode 120000 index 5dfe120..0000000 --- a/src/ios/lib/opencv2.framework/opencv2 +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/opencv2 \ No newline at end of file diff --git a/src/ios/lib/opencv2.framework/opencv2 b/src/ios/lib/opencv2.framework/opencv2 new file mode 100644 index 0000000..69abd83 Binary files /dev/null and b/src/ios/lib/opencv2.framework/opencv2 differ diff --git a/src/ios/lib/tesseract.framework/tesseract b/src/ios/lib/tesseract.framework/tesseract index f7a0753..a4a8019 100644 Binary files a/src/ios/lib/tesseract.framework/tesseract and b/src/ios/lib/tesseract.framework/tesseract differ diff --git a/src/openalpr.conf b/src/openalpr.conf index 4c064d8..5f1ed28 100644 --- a/src/openalpr.conf +++ b/src/openalpr.conf @@ -27,8 +27,8 @@ detection_strictness = 3 ; Using a smaller input image should still find the plates and will do it faster ; Tweaking the max_detection_input values will resize the input image if it is larger than these sizes ; max_detection_input_width/height are specified in pixels -max_detection_input_width = 1280 -max_detection_input_height = 720 +max_detection_input_width = 4000 +max_detection_input_height = 4000 ; detector is the technique used to find license plate regions in an image. Value can be set to ; lbpcpu - default LBP-based detector uses the system CPU @@ -44,6 +44,10 @@ must_match_pattern = 0 ; Bypasses plate detection. If this is set to 1, the library assumes that each region provided is a likely plate area. skip_detection = 0 +; OpenALPR detects high-contrast plate crops and uses an alternative edge detection technique. Setting this to 0.0 +; would classify ALL images as high-contrast, setting it to 1.0 would classify no images as high-contrast. +contrast_detection_threshold = 0.3 + ; Specifies the full path to an image file that constrains the detection area. Only the plate regions allowed through the mask ; will be analyzed. The mask image must match the resolution of your image to be analyzed. The mask is black and white. ; Black areas will be ignored, white areas will be searched. An empty value means no mask (scan the entire image) @@ -68,7 +72,6 @@ postprocess_min_confidence = 65 ; chance that the character is incorrect and will be skipped. Value is a confidence percent postprocess_confidence_skip_level = 80 - debug_general = 0 debug_timing = 0 debug_detector = 0 @@ -82,4 +85,4 @@ debug_color_filter = 0 debug_ocr = 0 debug_postprocess = 0 debug_show_images = 0 -debug_pause_on_frame = 0 \ No newline at end of file +debug_pause_on_frame = 0 diff --git a/www/OpenALPR.js b/www/OpenALPR.js index 10a8c4b..d024328 100644 --- a/www/OpenALPR.js +++ b/www/OpenALPR.js @@ -1,5 +1,8 @@ 'use strict'; +var DEFAULT_COUNTRY = 'eu'; +var DEFAULT_AMOUNT = 3; + var exec = require('cordova/exec'); var OpenALPR = { @@ -7,20 +10,49 @@ var OpenALPR = { /** * Scan license plate with OpenALPR * - * @param filepath Path to image + * @param imageData {string} Base64 encoding of the image data or the image file URI + * @param options {object} Options to pass to the OpenALPR scanner * @param success callback function on success * @param error callback function on failure. - * @returns array licenseplate matches + * @returns {array} licenseplate matches */ - scan: function(filepath, success, error) { + scan: function(imageData, options, success, error) { exec( success, error, 'OpenALPR', 'scan', - [filepath] + [imageData, validateOptions(options)] ) } }; +/** + * Function to validate and when neccessary correct the options object. + * + * @param {*} options + * @return {*} options + */ +function validateOptions(options) { + //Check if options is set and is an object. + if(! options || ! typeof options === 'object') { + return { + country: DEFAULT_COUNTRY, + amount: DEFAULT_AMOUNT + } + } + + //Check if country property is set. + if (! options.hasOwnProperty('country')) { + options.country = DEFAULT_COUNTRY; + } + + //Check if amount property is set. + if (! options.hasOwnProperty('amount')) { + options.amount = DEFAULT_AMOUNT; + } + + return options; +} + module.exports = OpenALPR;