{
	"info": {
		"_postman_id": "1ef7cc7b-60e2-4fc0-9e0c-e942ac5b8c28",
		"name": "SOT Integration Examples",
		"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
	},
	"item": [
		{
			"name": "Multitenant Access Control",
			"item": [
				{
					"name": "Access Management",
					"item": [
						{
							"name": "User Info",
							"request": {
								"method": "GET",
								"header": [],
								"url": "{{base_url}}/iam/access-management/v1/openid-connect/userinfo"
							},
							"response": []
						},
						{
							"name": "OpenID Introspect Endpoint",
							"request": {
								"auth": {
									"type": "basic",
									"basic": {
										"password": "{{client_secret}}",
										"username": "{{client_id}}"
									}
								},
								"method": "POST",
								"header": [],
								"body": {
									"mode": "urlencoded",
									"urlencoded": [
										{
											"key": "token",
											"value": "",
											"description": "Get user token from OpenID connect Token Endpoint - Authorization Endpoint (PKCE code flow)",
											"type": "text"
										}
									]
								},
								"url": "{{base_url}}/iam/access-management/v1/openid-connect/introspect"
							},
							"response": []
						},
						{
							"name": "Read the ACL (Access Control List) for all resources registered for the given application",
							"request": {
								"method": "GET",
								"header": [],
								"url": "{{base_url}}/iam/access-management/v1/application/acl"
							},
							"response": []
						},
						{
							"name": "OpenID connect Token Endpoint - Client Credentials flow",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "POST",
								"header": [],
								"body": {
									"mode": "urlencoded",
									"urlencoded": [
										{
											"key": "grant_type",
											"value": "client_credentials",
											"type": "text"
										},
										{
											"key": "client_id",
											"value": "{{client_id}}",
											"type": "text"
										},
										{
											"key": "client_secret",
											"value": "{{client_secret}}",
											"type": "text"
										},
										{
											"key": "scope",
											"value": "openid aud:macma",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{base_url}}/iam/access-management/v1/tenants/:tenant_id/openid-connect/token",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"access-management",
										"v1",
										"tenants",
										":tenant_id",
										"openid-connect",
										"token"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "PKCE code flow to get user token",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"auth": {
									"type": "oauth2",
									"oauth2": {
										"scope": "openid {{macma_client_id}}",
										"clientId": "macma-frontend",
										"clientSecret": "",
										"accessTokenUrl": "{{base_url}}/iam/access-management/v1/tenants/{{tenant_id}}/openid-connect/token",
										"authUrl": "{{base_url}}/iam/auth/realms/{{tenant_id}}/protocol/openid-connect/auth",
										"redirect_uri": "{{redirect_uri}}",
										"grant_type": "authorization_code_with_pkce",
										"client_authentication": "header",
										"useBrowser": false,
										"addTokenTo": "header"
									}
								},
								"method": "GET",
								"header": [],
								"url": "{{base_url}}/iam/access-management/v1/openid-connect/userinfo"
							},
							"response": []
						},
						{
							"name": "Read the ACL (Access Control List) for the given user",
							"request": {
								"method": "GET",
								"header": [],
								"url": "{{base_url}}/iam/access-management/v1/user/acl"
							},
							"response": []
						}
					]
				},
				{
					"name": "User Management",
					"item": [
						{
							"name": "List of Users of Tenant",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/users",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"users"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "List of Groups of Tenant",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/groups",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"groups"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Read User",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/users/:user_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"users",
										":user_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "user_id",
											"value": "Enter the user id",
											"description": "(Required) ID of the user."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "List Users of Group",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/groups/:group_id/users",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"groups",
										":group_id",
										"users"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "group_id",
											"value": "Enter group id",
											"description": "(Required) ID of the group."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Read Group",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/groups/:group_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"groups",
										":group_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "group_id",
											"value": "Enter group id",
											"description": "(Required) ID of the group."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "List Groups of user",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/users/:user_id/groups",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"users",
										":user_id",
										"groups"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "user_id",
											"value": "Enter user id",
											"description": "(Required) ID of the user."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Read List of users by user ID",
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"items\": [\r\n    \r\n      \"replace_your_user_id_here\"\r\n    \r\n  ]\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/user-management/v1/tenants/:tenant_id/users/search",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"user-management",
										"v1",
										"tenants",
										":tenant_id",
										"users",
										"search"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Application Management",
					"item": [
						{
							"name": "Read Applications",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Register an Application",
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"name\": \"My App\",\r\n  \"displayName\": \"My App nice name\",\r\n  \"clientSecret\": \"2k3fj3aseghhjllaojew4tj\",\r\n  \"includesPublicClient\": true,\r\n  \"enableUserLoginWithConfidentialClient\": true,\r\n  \"redirectUris\": [\r\n    \"http://bosch.com/*\"\r\n  ],\r\n  \"webOrigins\": [\r\n    \"http://bosch.com\"\r\n  ]\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Read Application by ID",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Update Applications",
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"name\": \"My App\",\r\n  \"displayName\": \"My App nice name\",\r\n  \"includesPublicClient\": true,\r\n  \"enableUserLoginWithConfidentialClient\": true,\r\n  \"redirectUris\": [\r\n    \"http://bosch.com/*\"\r\n  ],\r\n  \"webOrigins\": [\r\n    \"http://bosch.com\"\r\n  ]\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Delete an unshared application",
							"request": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Change Client Secret",
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"clientSecret\": \"replace_your_client_secret_here\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id/secret",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"secret"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Read applications and tenant roles assigned to an application",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id/authorization/roles/assigned",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"authorization",
										"roles",
										"assigned"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Assign Role",
							"request": {
								"method": "PUT",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id/authorization/roles/:role_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"authorization",
										"roles",
										":role_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										},
										{
											"key": "role_id",
											"value": "Enter the role id",
											"description": "(Required) ID of the role."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Unassign a Role",
							"request": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management/v1/tenants/:tenant_id/applications/:application_id/authorization/roles/:role_id",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"authorization",
										"roles",
										":role_id"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										},
										{
											"key": "role_id",
											"value": "Enter the role id",
											"description": "(Required) ID of the role."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "All Available Roles",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/role-management/v1/tenants/:tenant_id/roles/available",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"role-management",
										"v1",
										"tenants",
										":tenant_id",
										"roles",
										"available"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Application Management Bulk",
					"item": [
						{
							"name": "Create or Update Roles",
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"name\": \"developer\",\r\n      \"displayName\": \"IoT Developer\",\r\n      \"description\": \"has advanced access\",\r\n      \"permissions\": [\r\n        {\r\n          \"resourceId\": \"4cd58843-ff9f-44e6-8408-50ba777ced23\",\r\n          \"resourceType\": \"urn:isan:0000-0000-9E59-0000-O-0000-0000-2\",\r\n          \"privileges\": [\r\n            \"read\",\r\n            \"modify\"\r\n          ]\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/application-management-bulk/v1/tenants/:tenant_id/applications/:application_id/roles/create-or-update",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management-bulk",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"roles",
										"create-or-update"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Delete Roles",
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"name\": \"replace_your_role_name_here\"\r\n    }\r\n  ]\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/iam/application-management-bulk/v1/tenants/:tenant_id/applications/:application_id/roles/delete",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management-bulk",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"roles",
										"delete"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Resource Management",
					"item": [
						{
							"name": "Static Resource",
							"item": [
								{
									"name": "Register Static Resource",
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"id\": \"your_own_resource_id\",\r\n      \"name\": \"Tickets overview\",\r\n      \"type\": \"urn:isan:your_own_resource_type\",\r\n      \"description\": \"The overview of all tickets\",\r\n      \"iconUri\": \"https://my.server.com/icons/myIcon.png\",\r\n      \"privileges\": [\r\n        \"read\",\r\n        \"add\",\r\n        \"modify\",\r\n        \"delete\",\r\n        \"execute\"\r\n      ]\r\n    }\r\n  ]\r\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{base_url}}/iam/application-management-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/create-or-update",
											"host": [
												"{{base_url}}"
											],
											"path": [
												"iam",
												"application-management-bulk",
												"v1",
												"tenants",
												":tenant_id",
												"applications",
												":application_id",
												"resources",
												"create-or-update"
											],
											"variable": [
												{
													"key": "tenant_id",
													"value": "{{tenant_id}}",
													"description": "(Required) ID of the tenant."
												},
												{
													"key": "application_id",
													"value": "{{client_id}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Delete Static Resource",
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"id\": \"dafdd949-80c3-459a-b94c-5d6398840e11\",\r\n      \"type\": \"urn:isan:0000-0000-9E59-0000-O-0000-0000-1\"\r\n    }\r\n  ]\r\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{base_url}}/iam/application-management-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/delete",
											"host": [
												"{{base_url}}"
											],
											"path": [
												"iam",
												"application-management-bulk",
												"v1",
												"tenants",
												":tenant_id",
												"applications",
												":application_id",
												"resources",
												"delete"
											],
											"variable": [
												{
													"key": "tenant_id",
													"value": "{{tenant_id}}",
													"description": "(Required) ID of the tenant."
												},
												{
													"key": "application_id",
													"value": "{{client_id}}",
													"description": "(Required) ID of the application."
												}
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Dynamic Resource",
							"item": [
								{
									"name": "Register Dynamic Resource",
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"id\": \"4cd58843-ff9f-44e6-8408-50ba777ced23\",\r\n      \"name\": \"Machine 123\",\r\n      \"type\": \"urn:isan:0000-0000-9E59-0000-O-0000-0000-2\",\r\n      \"description\": \"The machine used to create part x\",\r\n      \"iconUri\": \"https://my.server.com/icons/myIcon.png\",\r\n      \"privileges\": [\r\n        \"read\",\r\n        \"modify\",\r\n        \"add\",\r\n        \"delete\",\r\n        \"execute\"\r\n      ]\r\n    }\r\n  ]\r\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{base_url}}/iam/dynamic-resources-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/create",
											"host": [
												"{{base_url}}"
											],
											"path": [
												"iam",
												"dynamic-resources-bulk",
												"v1",
												"tenants",
												":tenant_id",
												"applications",
												":application_id",
												"resources",
												"create"
											],
											"variable": [
												{
													"key": "tenant_id",
													"value": "{{tenant_id}}",
													"description": "(Required) ID of the tenant."
												},
												{
													"key": "application_id",
													"value": "{{client_id}}",
													"description": "(Required) ID of the application."
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Update Dynamic Resource",
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"id\": \"4cd58843-ff9f-44e6-8408-50ba777ced23\",\r\n      \"name\": \"Machine 123\",\r\n      \"type\": \"urn:isan:0000-0000-9E59-0000-O-0000-0000-2\",\r\n      \"description\": \"The machine used to create part x\",\r\n      \"iconUri\": \"https://my.server.com/icons/myIcon.png\",\r\n      \"privileges\": [\r\n        \"read\",\r\n        \"modify\",\r\n        \"add\",\r\n        \"delete\",\r\n        \"execute\"\r\n      ]\r\n    }\r\n  ]\r\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{base_url}}/iam/dynamic-resources-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/update",
											"host": [
												"{{base_url}}"
											],
											"path": [
												"iam",
												"dynamic-resources-bulk",
												"v1",
												"tenants",
												":tenant_id",
												"applications",
												":application_id",
												"resources",
												"update"
											],
											"variable": [
												{
													"key": "tenant_id",
													"value": "{{tenant_id}}",
													"description": "(Required) ID of the tenant."
												},
												{
													"key": "application_id",
													"value": "{{client_id}}",
													"description": "(Required) ID of the application."
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Delete Dynamic Resource",
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\r\n  \"items\": [\r\n    {\r\n      \"id\": \"4cd58843-ff9f-44e6-8408-50ba777ced23\",\r\n      \"type\": \"urn:isan:0000-0000-9E59-0000-O-0000-0000-2\"\r\n    }\r\n  ]\r\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{base_url}}/iam/dynamic-resources-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/delete",
											"host": [
												"{{base_url}}"
											],
											"path": [
												"iam",
												"dynamic-resources-bulk",
												"v1",
												"tenants",
												":tenant_id",
												"applications",
												":application_id",
												"resources",
												"delete"
											],
											"variable": [
												{
													"key": "tenant_id",
													"value": "{{tenant_id}}"
												},
												{
													"key": "application_id",
													"value": "{{client_id}}"
												}
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Search For Resources",
							"request": {
								"method": "POST",
								"header": [],
								"url": {
									"raw": "{{base_url}}/iam/application-management-bulk/v1/tenants/:tenant_id/applications/:application_id/resources/search",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"iam",
										"application-management-bulk",
										"v1",
										"tenants",
										":tenant_id",
										"applications",
										":application_id",
										"resources",
										"search"
									],
									"variable": [
										{
											"key": "tenant_id",
											"value": "{{tenant_id}}",
											"description": "(Required) ID of the tenant."
										},
										{
											"key": "application_id",
											"value": "{{client_id}}",
											"description": "(Required) ID of the application."
										}
									]
								}
							},
							"response": []
						}
					]
				}
			],
			"auth": {
				"type": "oauth2",
				"oauth2": {
					"scope": "aud:{{macma_client_id}} openid",
					"accessTokenUrl": "{{base_url}}/iam/access-management/v1/tenants/{{tenant_id}}/openid-connect/token",
					"clientId": "{{client_id}}",
					"tokenType": "Bearer",
					"accessToken": "",
					"addTokenTo": "header",
					"refreshRequestParams": [],
					"tokenRequestParams": [],
					"authRequestParams": [],
					"tokenName": "access token",
					"challengeAlgorithm": "S256",
					"grant_type": "client_credentials",
					"clientSecret": "{{client_secret}}",
					"authUrl": "{{base_url}}/iam/auth/realms/{{tenant_id}}/protocol/openid-connect/auth",
					"client_authentication": "header"
				}
			}
		},
		{
			"name": "Web Portal",
			"item": [
				{
					"name": "Create or update a registered module",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n \"info\": {\n  \"authProviderClientId\": \"portal_module_id\",\n  \"name\": \"Hello World Module\",\n  \"supportedLanguages\": [\n   \"de\",\n   \"en\"\n  ],\n  \"baseUrl\": \"https://localhost\",\n  \"vendor\": \"Bosch Connected Industry\"\n },\n \"views\": {\n  \"items\": [\n   {\n    \"navigationPath\": [\n     \"Hello World\"\n    ],\n    \"resourceId\": \"resourceID\",\n    \"resourceType\": \"resourceType\",\n    \"title\": \"Hello World\",\n    \"htmlFile\": \"/\",\n    \"icon\": \"Icon\"\n   }\n  ]\n }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/api/core/api/v3/:tenant_id/registry/:module_id_in_portal",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"core",
								"api",
								"v3",
								":tenant_id",
								"registry",
								":module_id_in_portal"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								},
								{
									"key": "module_id_in_portal",
									"value": "{{module_id_in_portal}}",
									"description": "(Required) ID of the module."
								}
							]
						},
						"description": "Create or update a registered module in Web Portal and its resources like views, widgets, contributions and documents."
					},
					"response": []
				},
				{
					"name": "Gets all registered modules",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{base_url}}/api/core/api/v3/:tenant_id/registry/modules",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"core",
								"api",
								"v3",
								":tenant_id",
								"registry",
								"modules"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						},
						"description": "Get a list of all registered modules for a given organization."
					},
					"response": []
				},
				{
					"name": "Delete a registered module",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{base_url}}/api/core/api/v3/:tenant_id/registry/:module_id_in_portal",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"core",
								"api",
								"v3",
								":tenant_id",
								"registry",
								":module_id_in_portal"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								},
								{
									"key": "module_id_in_portal",
									"value": "{{module_id_in_portal}}",
									"description": "(Required) ID of the module."
								}
							]
						},
						"description": "Deletes a registered module in Web Portal and its resources like views, widgets, contributions and documents with the given module ID."
					},
					"response": []
				}
			],
			"auth": {
				"type": "oauth2",
				"oauth2": {
					"scope": "openid aud:{{portal_client_id}}",
					"accessTokenUrl": "{{base_url}}/iam/access-management/v1/tenants/{{tenant_id}}/openid-connect/token",
					"tokenType": "Bearer",
					"accessToken": "",
					"clientSecret": "{{client_secret}}",
					"addTokenTo": "header",
					"refreshRequestParams": [],
					"tokenRequestParams": [],
					"authRequestParams": [],
					"tokenName": "access token",
					"challengeAlgorithm": "S256",
					"grant_type": "client_credentials",
					"clientId": "{{client_id}}",
					"authUrl": "{{base_url}}/iam/auth/realms/{{tenant_id}}/protocol/openid-connect/auth",
					"client_authentication": "header"
				}
			}
		},
		{
			"name": "Master Data Management",
			"item": [
				{
					"name": "Get Devices",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{base_url}}/mdm/equipment-management/api/v1/:tenant_id/devices",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"mdm",
								"equipment-management",
								"api",
								"v1",
								":tenant_id",
								"devices"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "oauth2",
				"oauth2": {
					"scope": "openid aud:{{mdm_client_id}}",
					"accessTokenUrl": "{{base_url}}/iam/access-management/v1/tenants/{{tenant_id}}/openid-connect/token",
					"clientSecret": "{{client_secret}}",
					"clientId": "{{client_id}}",
					"tokenName": "cpm",
					"challengeAlgorithm": "S256",
					"grant_type": "client_credentials",
					"addTokenTo": "header",
					"client_authentication": "header"
				}
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Connectivity",
			"item": [
				{
					"name": "Send PPMP machine MSG",
					"request": {
						"auth": {
							"type": "basic",
							"basic": {
								"username": "",
								"password": ""
							}
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"content-spec\": \"urn:spec://eclipse.org/unide/machine-message#v3\",\r\n  \"device\": {\r\n    \"id\": \"{{device_technical_id}}\"\r\n  },\r\n  \"messages\": [\r\n    {\r\n      \"code\": \"190ABT\",\r\n      \"description\": \"Electronic control board or its electrical connections are damaged\",\r\n      \"hint\": \"Check the control board\",\r\n      \"origin\": \"sensor-id-992.2393.22\",\r\n      \"severity\": \"HIGH\",\r\n      \"source\": \"DEVICE\",\r\n      \"state\": \"NEW\",\r\n      \"title\": \"control board damaged\",\r\n      \"ts\": \"{{$isoTimestamp}}\",\r\n      \"type\": \"WARNING\"\r\n    },\r\n    {\r\n      \"code\": \"33-02\",\r\n      \"description\": \"Disk size has reached limit. Unable to write log files.\",\r\n      \"severity\": \"HIGH\",\r\n      \"source\": \"TECHNICAL_INFO\",\r\n      \"title\": \"Disk size limit reached\",\r\n      \"ts\": \"{{$isoTimestamp}}\"\r\n    }\r\n  ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/connectivity/messaging/v1/:tenant_id/ppmp/message",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"connectivity",
								"messaging",
								"v1",
								":tenant_id",
								"ppmp",
								"message"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						},
						"description": "TestAuthorizationReadFromBase"
					},
					"response": []
				},
				{
					"name": "Send PPMP measurement MSG",
					"request": {
						"auth": {
							"type": "basic",
							"basic": {
								"password": "",
								"username": ""
							}
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"content-spec\": \"urn:spec://eclipse.org/unide/measurement-message#v3\",\r\n    \"device\": {\r\n    \"id\": \"{{device_technical_id}}\"\r\n    },\r\n    \"measurements\": [\r\n        {\r\n            \"ts\": \"{{$isoTimestamp}}\",\r\n            \"series\": {\r\n                \"time\": [\r\n                    1000,\r\n                    4000,\r\n                    9000,\r\n                    13000,\r\n                    17000\r\n                ],\r\n                \"pressure\": [\r\n                    100,\r\n                    200,\r\n                    500,\r\n                    600,\r\n                    600\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/connectivity/messaging/v1/:tenant_id/ppmp/measurement",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"connectivity",
								"messaging",
								"v1",
								":tenant_id",
								"ppmp",
								"measurement"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						},
						"description": "TestAuthorizationReadFromBase"
					},
					"response": []
				},
				{
					"name": "Send PPMP process MSG",
					"request": {
						"auth": {
							"type": "basic",
							"basic": {
								"username": "",
								"password": ""
							}
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"content-spec\": \"urn:spec://bosch.com/ppm/process-message#v3\",\r\n  \"device\": {\r\n    \"id\": \"{{device_technical_id}}\",\r\n    \"additionalData\": {\r\n      \"nr\": \"1\",\r\n      \"swVersion\": \"2.700\",\r\n      \"swBuild\": \"SP3\",\r\n      \"hardware\": \"CS351 \"\r\n    }\r\n  },\r\n  \"part\": {\r\n    \"type\": \"SINGLE\",\r\n    \"id\": \"TFR2204600037S                                                  \"\r\n  },\r\n  \"process\": {\r\n    \"ts\": \"{{$isoTimestamp}}\",\r\n    \"result\": \"NOK\",\r\n    \"shutoffPhase\": \"5 D\",\r\n    \"program\": {\r\n      \"id\": \"1\",\r\n      \"name\": \"HV w G\",\r\n      \"lastChangedDate\": \"{{$isoTimestamp}}\"\r\n    },\r\n    \"shutoffValues\": {},\r\n    \"additionalData\": {\r\n      \"format\": \"channel\",\r\n      \"node id\": \"0.1\",\r\n      \"nr\": \"1\",\r\n      \"ip0\": \"10.180.211.110\",\r\n      \"mac0\": \"00-C0-3A-f0-b8-3f\",\r\n      \"sw version\": \"2.700\",\r\n      \"sw build\": \"SP3\",\r\n      \"hardware\": \"CS351 \",\r\n      \"location name\": \"[\\\"1\\\",\\\"2\\\",\\\"3\\\",\\\"4\\\",\\\"5\\\",\\\"6\\\",\\\"7\\\"]\",\r\n      \"tool serial\": \"174000009\",\r\n      \"redundancy transducer serial\": \"173170008\",\r\n      \"nominal torque\": \"25\",\r\n      \"MCE factor\": \"1\",\r\n      \"MCE factor redundancy\": \"1\",\r\n      \"MCE\": \"[{\\\"Transducerfunction\\\":\\\"primary\\\",\\\"measuring\\\":\\\"direct\\\",\\\"factor\\\":1,\\\"partnumber\\\":\\\"0608841245\\\",\\\"swversion\\\":\\\"3.00A4\\\",\\\"hwversion\\\":\\\"AA3P\\\"},{\\\"Transducerfunction\\\":\\\"redundant\\\",\\\"measuring\\\":\\\"indirect\\\",\\\"factor\\\":1,\\\"partnumber\\\":\\\"0608830275\\\",\\\"swversion\\\":\\\"01V10\\\",\\\"hwversion\\\":\\\"C0D0\\\"}]\",\r\n      \"max. speed\": \"1745\",\r\n      \"Torque CT\": \"1\",\r\n      \"Torque Cred\": \"1\",\r\n      \"torque unit\": \"Nm\",\r\n      \"angle global threshold\": \"{\\\"nom\\\":0,\\\"act\\\":0.01}\",\r\n      \"cycle\": \"3713\",\r\n      \"result\": \"NOK\",\r\n      \"total time\": \"13.96\",\r\n      \"last cmd\": \"MFs TimeMax\",\r\n      \"redundancy sensor\": \"0\",\r\n      \"quality code\": \"  131\",\r\n      \"rework code\": \"0\",\r\n      \"final angle\": \"null (0 - 99999, target 720)\",\r\n      \"add func angle (angle threshold)\": \"null (5)\",\r\n      \"final time\": \"10 (null - 10)\",\r\n      \"final torque\": \"0.05 (0 - 2)\",\r\n      \"batch nr\": \"-1\",\r\n      \"batch canceled\": \"-1\",\r\n      \"batch direction OK\": \"-1\",\r\n      \"batch direction NOK\": \"-1\",\r\n      \"batch max OK\": \"-1\",\r\n      \"batch OK\": \"-1\",\r\n      \"batch max NOK\": \"-1\",\r\n      \"batch NOK\": \"-1\"\r\n    }\r\n  },\r\n  \"measurements\": [\r\n    {\r\n      \"ts\": \"{{$isoTimestamp}}\",\r\n      \"phase\": \"2 A\",\r\n      \"name\": \"Reverse 360\",\r\n      \"result\": \"OK\",\r\n      \"specialValues\": [\r\n        {\r\n          \"name\": \"TF_Angle_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"TF_Angle_2_A\": 360.06,\r\n            \"TF_Angle_2_A_Target\": 360.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TimeMax_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TimeMax_2_A\": 1.02,\r\n            \"MFs_TimeMax_2_A_Limit\": 10.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_TorqueMin_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_TorqueMin_2_A\": 0.07,\r\n            \"MF_TorqueMin_2_A_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TorqueMax_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TorqueMax_2_A\": 0.07,\r\n            \"MFs_TorqueMax_2_A_Limit\": 20.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_AngleMin_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_AngleMin_2_A\": 360.06,\r\n            \"MF_AngleMin_2_A_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_AngleMax_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_AngleMax_2_A\": 360.06,\r\n            \"MF_AngleMax_2_A_Limit\": 99999.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"speed_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"speed_2_A\": -60.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"angle_threshold_2_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"angle_threshold_2_A\": 0.01,\r\n            \"angle_threshold_2_A_Target\": 0.0\r\n          }\r\n        }\r\n      ],\r\n      \"series\": {\r\n        \"angle\": [],\r\n        \"torque\": [],\r\n        \"time\": [],\r\n        \"process_time\": []\r\n      },\r\n      \"additionalData\": {\r\n        \"step type\": \"standard\",\r\n        \"category\": \"2\",\r\n        \"last cmd\": \"TF Angle\",\r\n        \"quality code\": \"    1\",\r\n        \"docu buffer\": \"0\"\r\n      },\r\n      \"context\": {\r\n        \"angle\": {\r\n          \"limits\": {\r\n            \"target\": 360.0,\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 99999.0\r\n          }\r\n        },\r\n        \"time\": {\r\n          \"limits\": {\r\n            \"upperWarn\": 10.0\r\n          }\r\n        },\r\n        \"torque\": {\r\n          \"limits\": {\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 20.0\r\n          }\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"ts\": \"{{$isoTimestamp}}\",\r\n      \"phase\": \"3 A\",\r\n      \"name\": \"Fst Ang (CrosT/CT)\",\r\n      \"result\": \"NOK\",\r\n      \"specialValues\": [\r\n        {\r\n          \"name\": \"TF_Angle_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"TF_Angle_3_A\": 2856.51,\r\n            \"TF_Angle_3_A_Target\": 3000.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TimeMax_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TimeMax_3_A\": 2.63,\r\n            \"MFs_TimeMax_3_A_Limit\": 10.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_TorqueMin_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_TorqueMin_3_A\": 1.42,\r\n            \"MF_TorqueMin_3_A_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TorqueMax_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TorqueMax_3_A\": 1.42,\r\n            \"MFs_TorqueMax_3_A_Limit\": 1.2\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_AngleMin_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_AngleMin_3_A\": 2856.51,\r\n            \"MF_AngleMin_3_A_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_AngleMax_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_AngleMax_3_A\": 2856.51,\r\n            \"MF_AngleMax_3_A_Limit\": 99999.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"speed_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"speed_3_A\": 300.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"angle_threshold_3_A\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"angle_threshold_3_A\": -0.07,\r\n            \"angle_threshold_3_A_Target\": 0.0\r\n          }\r\n        }\r\n      ],\r\n      \"series\": {\r\n        \"angle\": [],\r\n        \"torque\": [],\r\n        \"time\": [],\r\n        \"process_time\": []\r\n      },\r\n      \"additionalData\": {\r\n        \"step type\": \"standard\",\r\n        \"category\": \"1\",\r\n        \"last cmd\": \"MFs TorqueMax\",\r\n        \"quality code\": \"    8\",\r\n        \"docu buffer\": \"0\"\r\n      },\r\n      \"context\": {\r\n        \"angle\": {\r\n          \"limits\": {\r\n            \"target\": 3000.0,\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 99999.0\r\n          }\r\n        },\r\n        \"time\": {\r\n          \"limits\": {\r\n            \"upperWarn\": 10.0\r\n          }\r\n        },\r\n        \"torque\": {\r\n          \"limits\": {\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 1.2\r\n          }\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"ts\": \"{{$isoTimestamp}}\",\r\n      \"phase\": \"5 D\",\r\n      \"name\": \"Reverse 360\",\r\n      \"result\": \"NOK\",\r\n      \"specialValues\": [\r\n        {\r\n          \"name\": \"MFs_TimeMax_5_D\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TimeMax_5_D\": 10.0,\r\n            \"MFs_TimeMax_5_D_Limit\": 10.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_TorqueMin_5_D\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_TorqueMin_5_D\": 0.05,\r\n            \"MF_TorqueMin_5_D_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TorqueMax_5_D\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TorqueMax_5_D\": 0.05,\r\n            \"MFs_TorqueMax_5_D_Limit\": 2.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"speed_5_D\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"speed_5_D\": -60.0\r\n          }\r\n        }\r\n      ],\r\n      \"series\": {\r\n        \"angle\": [\r\n          -190.59, -191.06, -191.56, -192.02, -192.51, -193.13, -193.59,\r\n          -194.06, -194.5, -194.96, -195.4, -195.85, -196.43, -196.85, -197.26,\r\n          -197.64, -198.02, -198.36, -198.7, -199.17, -199.47, -199.79, -200.09,\r\n          -200.39, -200.7, -201.0, -201.4, -201.7, -202.02, -202.33, -202.67,\r\n          -203.01, -203.39, -203.92, -204.34, -204.8, -205.26, -205.75, -206.23,\r\n          -206.73, -207.4, -207.88, -208.36, -208.85, -209.33, -209.81, -210.29,\r\n          -210.92, -211.38, -211.84, -212.29, -212.73, -213.17, -213.59,\r\n          -214.12, -214.52, -214.88, -215.26, -215.63, -215.97, -216.31,\r\n          -216.77, -217.1, -217.42, -217.76, -218.08, -218.4, -218.73, -219.05,\r\n          -219.47, -219.81, -220.13, -220.48, -220.82, -221.18, -221.54,\r\n          -222.07, -222.49, -222.91, -223.37, -223.84, -224.32, -224.98,\r\n          -225.47, -225.97, -226.47, -226.98, -227.48, -227.98, -228.65,\r\n          -229.13, -229.61, -230.07, -230.54, -230.98, -231.42, -231.99,\r\n          -232.39, -232.77, -233.13, -233.49, -233.82, -234.16, -234.58,\r\n          -234.88, -235.18, -235.49, -235.79, -236.09, -236.39, -236.81,\r\n          -237.14, -237.48, -237.8, -238.16, -238.53, -238.91, -239.45, -239.87,\r\n          -240.32, -240.76, -241.22, -241.68, -242.17, -242.83, -243.31, -243.8,\r\n          -244.28, -244.76, -245.25, -245.75, -246.39, -246.86, -247.34, -247.8,\r\n          -248.28, -248.73, -249.17, -249.75, -250.16, -250.54, -250.92,\r\n          -251.28, -251.62, -251.95, -252.39, -252.69, -252.99, -253.29, -253.6,\r\n          -253.88, -254.2, -254.6, -254.9, -255.21, -255.51, -255.87, -256.23,\r\n          -256.78, -257.2, -257.64, -258.1, -258.57, -259.05, -259.53, -260.02,\r\n          -260.64, -261.12, -261.6, -262.07, -262.55, -263.03, -263.52, -264.14,\r\n          -264.6, -265.07, -265.51, -265.95, -266.37, -266.8, -267.34, -267.74,\r\n          -268.12, -268.51, -268.87, -269.21, -269.55, -270.0, -270.32, -270.62,\r\n          -270.92, -271.22, -271.55, -271.85, -272.15, -272.57, -272.87,\r\n          -273.22, -273.56, -273.92, -274.28, -274.82, -275.27, -275.71,\r\n          -276.17, -276.68, -277.16, -277.68, -278.19, -278.87, -279.37, -279.9,\r\n          -280.4, -280.9, -281.4, -282.05, -282.51, -282.99, -283.44, -283.88,\r\n          -284.3, -284.7, -285.09, -285.59, -285.93, -286.25, -286.58, -286.9,\r\n          -287.2, -287.6, -287.9, -288.19, -288.49, -288.79, -289.09, -289.41,\r\n          -289.84, -290.16, -290.5, -290.86, -291.24, -291.65, -292.07, -292.65,\r\n          -293.1, -293.58, -294.06, -294.54, -295.05, -295.55, -296.21, -296.72,\r\n          -297.22, -297.7, -298.21, -298.71, -299.21, -299.88, -300.36, -300.84,\r\n          -301.31, -301.75, -302.17, -302.59, -303.1, -303.46, -303.82, -304.14,\r\n          -304.46, -304.77, -305.07, -305.43, -305.71, -305.99, -306.26,\r\n          -306.54, -306.82, -307.12, -307.54, -307.89, -308.25, -308.63,\r\n          -309.03, -309.47, -309.94, -310.58, -311.04, -311.53, -312.01,\r\n          -312.49, -312.98, -313.48, -314.14, -314.63, -315.13, -315.61,\r\n          -316.11, -316.58, -317.06, -317.68, -318.15, -318.59, -319.01,\r\n          -319.44, -319.84, -320.24, -320.72, -321.09, -321.43, -321.75,\r\n          -322.05, -322.35, -322.65, -323.04, -323.32, -323.6, -323.88, -324.18,\r\n          -324.49, -324.79, -325.23, -325.57, -325.93, -326.32, -326.76, -327.2,\r\n          -327.69, -328.33, -328.85, -329.36, -329.88, -330.4, -330.9, -331.45,\r\n          -332.13, -332.64, -333.14, -333.62, -334.12, -334.61, -335.07,\r\n          -335.67, -336.08, -336.48, -336.86, -337.22, -337.56, -337.91,\r\n          -338.33, -338.63, -338.93, -339.21, -339.52, -339.8, -340.1, -340.48,\r\n          -340.78, -341.09, -341.41, -341.73, -342.05, -342.41, -342.92, -343.3,\r\n          -343.7, -344.14, -344.61, -345.07, -345.55, -346.2, -346.7, -347.2,\r\n          -347.69, -348.19, -348.69, -349.2, -349.9, -350.38, -350.89, -351.39,\r\n          -351.87, -352.33, -352.96, -353.4, -353.8, -354.21, -354.59, -354.93,\r\n          -355.27, -355.61, -356.02, -356.3, -356.58, -356.86, -357.12, -357.41,\r\n          -357.69, -358.05, -358.33, -358.61, -358.93, -359.28, -359.66,\r\n          -360.06, -360.62, -361.09, -361.55, -362.01, -362.52, -363.02, -363.5,\r\n          -364.17, -364.67, -365.17, -365.66, -366.16, -366.66, -367.16,\r\n          -367.83, -368.31, -368.77, -369.24, -369.68, -370.12, -370.54,\r\n          -371.09, -371.47, -371.85, -372.19, -372.54, -372.86, -373.16,\r\n          -373.56, -373.82, -374.11, -374.39, -374.67, -374.95, -375.23,\r\n          -375.62, -375.92, -376.24, -376.58, -376.96, -377.35, -377.91,\r\n          -378.35, -378.81, -379.3, -379.8, -380.32, -380.85, -381.55, -382.09,\r\n          -382.62, -383.14, -383.66, -384.19, -384.69, -385.35, -385.84, -386.3,\r\n          -386.76, -387.19, -387.61, -388.01, -388.49, -388.84, -389.16,\r\n          -389.48, -389.78, -390.06, -390.34, -390.71, -390.99, -391.25,\r\n          -391.53, -391.83, -392.12, -392.42, -392.72, -393.16, -393.5, -393.89,\r\n          -394.27, -394.69, -395.13, -395.6, -396.22, -396.7, -397.21, -397.69,\r\n          -398.19, -398.72, -399.38, -399.88, -400.37, -400.87, -401.37,\r\n          -401.87, -402.38, -403.02, -403.5, -403.97, -404.39, -404.81, -405.21,\r\n          -405.6, -406.06, -406.4, -406.7, -407.01, -407.29, -407.57, -407.83,\r\n          -408.19, -408.47, -408.74, -409.02, -409.3, -409.6, -410.0, -410.37,\r\n          -410.75, -411.17, -411.63, -412.1, -412.58, -413.22, -413.73, -414.23,\r\n          -414.73, -415.22, -415.72, -416.24, -416.91, -417.41, -417.91,\r\n          -418.39, -418.9, -419.36, -419.82, -420.43, -420.85, -421.27, -421.67,\r\n          -422.06, -422.44, -422.8, -423.26, -423.59, -423.91, -424.21, -424.51,\r\n          -424.79, -425.07, -425.46, -425.74, -426.02, -426.32, -426.62,\r\n          -426.93, -427.25, -427.71, -428.09, -428.52, -428.94, -429.38,\r\n          -429.86, -430.35, -431.03, -431.53, -432.08, -432.58, -433.12,\r\n          -433.65, -434.17, -434.87, -435.38, -435.88, -436.36, -436.85,\r\n          -437.33, -437.77, -438.36, -438.76, -439.16, -439.52, -439.88,\r\n          -440.21, -440.53, -440.91, -441.19, -441.49, -441.78, -442.06,\r\n          -442.32, -442.6, -443.0, -443.29, -443.61, -443.93, -444.27, -444.61,\r\n          -445.02, -445.56, -445.98, -446.42, -446.89, -447.37, -447.83,\r\n          -448.34, -449.0, -449.5, -450.01, -450.49, -450.99, -451.47, -451.98,\r\n          -452.64, -453.12, -453.61, -454.09, -454.57, -455.02, -455.46,\r\n          -456.02, -456.4, -456.79, -457.13, -457.47, -457.79, -458.2, -458.5,\r\n          -458.78, -459.06, -459.34, -459.6, -459.89, -460.27, -460.57, -460.85,\r\n          -461.17, -461.5, -461.88, -462.28, -462.88, -463.35, -463.83, -464.31,\r\n          -464.82, -465.32, -465.82, -466.49, -466.99, -467.47, -467.97,\r\n          -468.48, -468.96, -469.44, -470.09, -470.55, -471.01, -471.44,\r\n          -471.86, -472.28, -472.68, -473.19, -473.55, -473.89, -474.23,\r\n          -474.55, -474.86, -475.16, -475.56, -475.86, -476.14, -476.45,\r\n          -476.73, -477.01, -477.41, -477.71, -478.04, -478.36, -478.72, -479.1,\r\n          -479.54, -480.15, -480.61, -481.09, -481.6, -482.08, -482.58, -483.11,\r\n          -483.79, -484.29, -484.82, -485.32, -485.82, -486.31, -486.81,\r\n          -487.43, -487.9, -488.36, -488.78, -489.2, -489.61, -489.99, -490.47,\r\n          -490.81, -491.16, -491.48, -491.78, -492.08, -492.36, -492.76,\r\n          -493.05, -493.35, -493.63, -493.93, -494.23, -494.58, -495.04, -495.4,\r\n          -495.8, -496.23, -496.65, -497.11, -497.57, -498.2, -498.66, -499.14,\r\n          -499.61, -500.09, -500.57, -501.06, -501.7, -502.16, -502.62, -503.09,\r\n          -503.55, -504.01, -504.48, -505.08, -505.52, -505.96, -506.39,\r\n          -506.81, -507.19, -507.59, -508.08, -508.44, -508.8, -509.12, -509.47,\r\n          -509.79, -510.11, -510.53, -510.83, -511.14, -511.46, -511.76,\r\n          -512.08, -512.52, -512.85, -513.19, -513.57, -513.99, -514.44,\r\n          -514.88, -515.5, -515.99, -516.45, -516.93, -517.39, -517.88, -518.36,\r\n          -518.82, -519.47, -519.93, -520.41, -520.88, -521.34, -521.78,\r\n          -522.24, -522.83, -523.25, -523.67, -524.07, -524.48, -524.88,\r\n          -525.26, -525.76, -526.13, -526.47, -526.83, -527.17, -527.58,\r\n          -527.92, -528.32, -528.64, -528.96, -529.27, -529.59, -529.91,\r\n          -530.23, -530.67, -531.02, -531.38, -531.76, -532.16, -532.59,\r\n          -533.03, -533.65, -534.14, -534.62, -535.12, -535.62, -536.13,\r\n          -536.65, -537.31, -537.82, -538.3, -538.78, -539.25, -539.71, -540.17,\r\n          -540.78, -541.18, -541.6, -542.0, -542.39, -542.75, -543.11, -543.55,\r\n          -543.87, -544.2, -544.5, -544.8, -545.12, -545.42, -545.83, -546.13,\r\n          -546.45, -546.77, -547.09, -547.44, -547.92, -548.3, -548.7, -549.11,\r\n          -549.53, -549.97, -550.43, -550.9, -551.54, -552.0, -552.49, -552.97,\r\n          -553.47, -553.96, -554.58, -555.06, -555.55, -556.01, -556.47,\r\n          -556.95, -557.42, -558.02, -558.46, -558.89, -559.29, -559.69,\r\n          -560.07, -560.46, -560.92, -561.26, -561.58, -561.9, -562.23, -562.53,\r\n          -562.85, -563.25, -563.55, -563.86, -564.18, -564.48, -564.8, -565.14,\r\n          -565.67, -566.07, -566.47, -566.91, -567.36, -567.84, -568.3, -568.93,\r\n          -569.41, -569.85, -570.33, -570.8, -571.28, -571.74, -572.37, -572.85,\r\n          -573.29, -573.76, -574.22, -574.66, -575.1, -575.55, -576.13, -576.55,\r\n          -576.98, -577.38, -577.78, -578.18, -578.69, -579.05, -579.41,\r\n          -579.75, -580.07, -580.42, -580.74, -581.16, -581.48, -581.8, -582.11,\r\n          -582.43, -582.77, -583.09, -583.53, -583.9, -584.26, -584.66, -585.06,\r\n          -585.51, -585.97, -586.61, -587.1, -587.58, -588.08, -588.57, -589.07,\r\n          -589.57, -590.22, -590.7, -591.16, -591.64, -592.11, -592.57, -593.15,\r\n          -593.6, -594.02, -594.42, -594.82, -595.21, -595.59, -595.93, -596.41,\r\n          -596.75, -597.08, -597.4, -597.72, -598.06, -598.38, -598.81, -599.13,\r\n          -599.45, -599.77, -600.1, -600.42, -600.76, -601.22, -601.58, -601.97,\r\n          -602.39, -602.81, -603.25, -603.88, -604.34, -604.82, -605.31,\r\n          -605.79, -606.27, -606.78, -607.42, -607.92, -608.43, -608.91,\r\n          -609.39, -609.87, -610.36, -610.98, -611.42, -611.87, -612.29,\r\n          -612.69, -613.09, -613.6, -613.94, -614.28, -614.62, -614.95, -615.27,\r\n          -615.57, -615.87, -616.25, -616.55, -616.86, -617.16, -617.46,\r\n          -617.78, -618.12, -618.59, -618.97, -619.37, -619.79, -620.22,\r\n          -620.66, -621.12, -621.75, -622.21, -622.69, -623.15, -623.64,\r\n          -624.12, -624.6, -625.25, -625.73, -626.19, -626.66, -627.14, -627.6,\r\n          -628.06, -628.69, -629.13, -629.55, -629.98, -630.4, -630.8, -631.18,\r\n          -631.67, -632.01, -632.33, -632.65, -632.97, -633.28, -633.58,\r\n          -633.98, -634.26, -634.56, -634.85, -635.17, -635.47, -635.79,\r\n          -636.25, -636.62, -637.02, -637.44, -637.9, -638.37, -638.85, -639.49,\r\n          -640.0, -640.48, -640.96, -641.47, -641.93, -642.41, -643.06, -643.52,\r\n          -644.0, -644.46, -644.93, -645.39, -645.83, -646.42, -646.82, -647.22,\r\n          -647.6, -648.01, -648.37, -648.75, -649.21, -649.57, -649.92, -650.24,\r\n          -650.58, -650.9, -651.24, -651.67, -651.99, -652.29, -652.61, -652.96,\r\n          -653.28, -653.62, -654.08, -654.42, -654.81, -655.21, -655.63,\r\n          -656.05, -656.52, -657.14, -657.62, -658.11, -658.61, -659.13,\r\n          -659.64, -660.32, -660.82, -661.31, -661.81, -662.29, -662.79,\r\n          -663.26, -663.72, -664.32, -664.75, -665.17, -665.57, -665.95,\r\n          -666.32, -666.78, -667.1, -667.4, -667.7, -668.01, -668.31, -668.59,\r\n          -668.99, -669.27, -669.58, -669.9, -670.2, -670.54, -670.86, -671.23,\r\n          -671.73, -672.11, -672.53, -672.96, -673.42, -673.88, -674.36,\r\n          -675.01, -675.49, -675.97, -676.48, -676.98, -677.48, -678.15,\r\n          -678.63, -679.13, -679.62, -680.1, -680.58, -681.07, -681.53, -682.13,\r\n          -682.55, -682.96, -683.34, -683.72, -684.06, -684.41, -684.85,\r\n          -685.15, -685.45, -685.73, -686.02, -686.3, -686.6, -686.98, -687.26,\r\n          -687.59, -687.89, -688.21, -688.55, -688.95, -689.52, -689.96,\r\n          -690.42, -690.91, -691.39, -691.87, -692.37, -693.06, -693.54,\r\n          -694.04, -694.53, -695.03, -695.51, -696.02, -696.66, -697.14,\r\n          -697.63, -698.07, -698.53, -698.95, -699.4, -699.92, -700.3, -700.68,\r\n          -701.05, -701.39, -701.71, -702.03, -702.46, -702.76, -703.04,\r\n          -703.32, -703.62, -703.9, -704.21, -704.59, -704.89, -705.21, -705.53,\r\n          -705.88, -706.24, -706.66, -707.22, -707.67, -708.15, -708.63,\r\n          -709.14, -709.66, -710.18, -710.89, -711.41, -711.95, -712.48, -713.0,\r\n          -713.52, -714.03, -714.69, -715.17, -715.63, -716.08, -716.5, -716.9,\r\n          -717.28, -717.77, -718.11, -718.41, -718.71, -719.02, -719.3, -719.56,\r\n          -719.94, -720.2, -720.48, -720.77, -721.05, -721.35, -721.65, -722.09,\r\n          -722.44, -722.82, -723.2, -723.64, -724.07, -724.53, -725.15, -725.62,\r\n          -726.12, -726.6, -727.1, -727.61, -728.29, -728.79, -729.28, -729.78,\r\n          -730.26, -730.77, -731.25, -731.89, -732.38, -732.84, -733.28, -733.7,\r\n          -734.11, -734.49, -734.97, -735.31, -735.64, -735.96, -736.24,\r\n          -736.52, -736.9, -737.17, -737.43, -737.71, -737.97, -738.25, -738.55,\r\n          -738.96, -739.28, -739.64, -740.02, -740.47, -740.93, -741.41,\r\n          -742.08, -742.58, -743.08, -743.58, -744.11, -744.59, -745.11, -745.8,\r\n          -746.28, -746.78, -747.27, -747.77, -748.23, -748.72, -749.3, -749.72,\r\n          -750.14, -750.53, -750.91, -751.27, -751.61, -752.08, -752.4, -752.72,\r\n          -753.02, -753.32, -753.6, -753.93, -754.31, -754.61, -754.91, -755.21,\r\n          -755.52, -755.84, -756.18, -756.66, -757.03, -757.43, -757.85,\r\n          -758.31, -758.76, -759.4, -759.9, -760.39, -760.91, -761.41, -761.94,\r\n          -762.46, -762.98, -763.67, -764.17, -764.69, -765.17, -765.66,\r\n          -766.14, -766.6, -767.19, -767.59, -767.99, -768.37, -768.74, -769.2,\r\n          -769.84, -770.12, -770.43, -770.71, -770.99, -771.27, -771.57,\r\n          -771.96, -772.24, -772.56, -772.86, -773.22, -773.59, -774.09,\r\n          -774.51, -774.93, -775.38, -775.82, -776.3, -776.79, -777.29, -777.95,\r\n          -778.44, -778.94, -779.44, -779.94, -780.43, -780.93, -781.59, -782.1,\r\n          -782.58, -783.06, -783.53, -783.99, -784.45, -785.02, -785.42,\r\n          -785.78, -786.14, -786.48, -786.81, -787.11, -787.51, -787.77,\r\n          -788.05, -788.32, -788.58, -788.86, -789.14, -789.5, -789.78, -790.11,\r\n          -790.43, -790.77, -791.15, -791.57, -792.2, -792.66, -793.16, -793.67,\r\n          -794.19, -794.69, -795.24, -795.92, -796.44, -796.97, -797.47,\r\n          -797.99, -798.5, -799.0, -799.64, -800.11, -800.55, -800.99, -801.39,\r\n          -801.8, -802.16, -802.64, -802.96, -803.29, -803.59, -803.89, -804.17,\r\n          -804.45, -804.84, -805.1, -805.38, -805.68, -805.96, -806.24, -806.55,\r\n          -806.97, -807.29, -807.67, -808.05, -808.48, -808.9, -809.38, -810.03,\r\n          -810.53, -811.03, -811.52, -812.04, -812.54, -813.09, -813.77,\r\n          -814.29, -814.82, -815.32, -815.84, -816.34, -816.83, -817.47,\r\n          -817.91, -818.36, -818.76, -819.16, -819.52, -819.89, -820.33,\r\n          -820.63, -820.93, -821.21, -821.5, -821.76, -822.02, -822.38, -822.64,\r\n          -822.92, -823.21, -823.51, -823.81, -824.13, -824.64, -825.04,\r\n          -825.46, -825.9, -826.37, -826.85, -827.33, -827.98, -828.46, -828.96,\r\n          -829.46, -829.97, -830.47, -830.97, -831.64, -832.14, -832.62,\r\n          -833.13, -833.61, -834.07, -834.7, -835.16, -835.58, -836.0, -836.41,\r\n          -836.79, -837.13, -837.59, -837.9, -838.2, -838.48, -838.76, -839.04,\r\n          -839.3, -839.67, -839.93, -840.21, -840.49, -840.77, -841.07, -841.42,\r\n          -841.9, -842.3, -842.72, -843.19, -843.67, -844.19, -844.88, -845.4,\r\n          -845.92, -846.45, -846.97, -847.47, -848.0, -848.68, -849.18, -849.69,\r\n          -850.17, -850.65, -851.12, -851.56, -852.12, -852.52, -852.89,\r\n          -853.25, -853.59, -853.91, -854.23, -854.64, -854.92, -855.22, -855.5,\r\n          -855.78, -856.07, -856.37, -856.77, -857.07, -857.39, -857.7, -858.04,\r\n          -858.38, -858.74, -859.14, -859.71, -860.15, -860.61, -861.12, -861.6,\r\n          -862.12, -862.81, -863.31, -863.81, -864.34, -864.86, -865.36,\r\n          -865.91, -866.59, -867.09, -867.58, -868.04, -868.5, -868.94, -869.37,\r\n          -869.89, -870.27, -870.63, -870.96, -871.28, -871.58, -871.86,\r\n          -872.24, -872.51, -872.79, -873.05, -873.33, -873.59, -873.87,\r\n          -874.28, -874.6, -874.94, -875.3, -875.7, -876.13, -876.57, -877.19,\r\n          -877.66, -878.14, -878.62, -879.13, -879.63, -880.27, -880.78,\r\n          -881.28, -881.78, -882.26, -882.77, -883.27, -883.89, -884.38,\r\n          -884.84, -885.3, -885.73, -886.17, -886.57, -887.09, -887.48, -887.82,\r\n          -888.16, -888.48, -888.8, -889.09, -889.47, -889.75, -890.03, -890.31,\r\n          -890.57, -890.88, -891.16, -891.56, -891.88, -892.2, -892.55, -892.93,\r\n          -893.35, -893.93, -894.4, -894.88, -895.4, -895.93, -896.43, -896.97,\r\n          -897.7, -898.22, -898.74, -899.27, -899.79, -900.29, -900.82, -901.46,\r\n          -901.92, -902.39, -902.81, -903.23, -903.63, -904.0, -904.46, -904.78,\r\n          -905.1, -905.4, -905.71, -905.97, -906.25, -906.61, -906.89, -907.18,\r\n          -907.46, -907.74, -908.04, -908.34, -908.76, -909.11, -909.47,\r\n          -909.85, -910.27, -910.7, -911.32, -911.8, -912.29, -912.79, -913.29,\r\n          -913.82, -914.32, -915.0, -915.53, -916.03, -916.55, -917.05, -917.58,\r\n          -918.1, -918.75, -919.23, -919.69, -920.13, -920.56, -920.96, -921.34,\r\n          -921.8, -922.15, -922.45, -922.75, -923.05, -923.31, -923.7, -923.96,\r\n          -924.22, -924.5, -924.78, -925.04, -925.35, -925.79, -926.13, -926.51,\r\n          -926.91, -927.36, -927.8, -928.26, -928.75, -929.39, -929.87, -930.36,\r\n          -930.84, -931.32, -931.82, -932.49, -932.99, -933.47, -933.98,\r\n          -934.48, -934.94, -935.43, -936.05, -936.49, -936.92, -937.34,\r\n          -937.76, -938.16, -938.55, -939.03, -939.37, -939.69, -939.99, -940.3,\r\n          -940.58, -940.88, -941.26, -941.54, -941.82, -942.11, -942.39,\r\n          -942.69, -943.01, -943.33, -943.8, -944.16, -944.56, -944.98, -945.43,\r\n          -945.91, -946.57, -947.08, -947.6, -948.12, -948.65, -949.17, -949.69,\r\n          -950.22, -950.9, -951.4, -951.91, -952.39, -952.87, -953.33, -953.78,\r\n          -954.36, -954.76, -955.15, -955.51, -955.85, -956.17, -956.49, -956.9,\r\n          -957.2, -957.48, -957.76, -958.04, -958.32, -958.63, -959.01, -959.31,\r\n          -959.61, -959.93, -960.28, -960.62, -961.12, -961.5, -961.93, -962.35,\r\n          -962.81, -963.27, -963.76, -964.42, -964.92, -965.43, -965.91,\r\n          -966.43, -966.94, -967.44, -968.12, -968.63, -969.13, -969.63,\r\n          -970.12, -970.6, -971.06, -971.65, -972.07, -972.47, -972.83, -973.19,\r\n          -973.54, -973.88, -974.3, -974.58, -974.89, -975.15, -975.43, -975.71,\r\n          -975.99, -976.37, -976.66, -976.96, -977.28, -977.62, -977.98,\r\n          -978.39, -978.93, -979.37, -979.84, -980.32, -980.8, -981.28, -981.77,\r\n          -982.43, -982.93, -983.44, -983.92, -984.42, -984.93, -985.43,\r\n          -986.09, -986.58, -987.06, -987.52, -987.98, -988.41, -988.85,\r\n          -989.37, -989.76, -990.12, -990.46, -990.8, -991.12, -991.43, -991.81,\r\n          -992.07, -992.33, -992.59, -992.87, -993.14, -993.42, -993.8, -994.08,\r\n          -994.4, -994.75, -995.11, -995.51, -995.93, -996.56, -997.04, -997.54,\r\n          -998.05, -998.57, -999.09, -999.64, -1000.36, -1000.88, -1001.41,\r\n          -1001.93, -1002.45, -1002.98, -1003.48, -1004.12, -1004.59, -1005.05,\r\n          -1005.47, -1005.89, -1006.28, -1006.66, -1007.12, -1007.42, -1007.74,\r\n          -1008.03, -1008.33, -1008.61, -1008.89, -1009.25, -1009.54, -1009.82,\r\n          -1010.1, -1010.4, -1010.7, -1011.02, -1011.47, -1011.83, -1012.21,\r\n          -1012.61, -1013.04, -1013.48, -1013.94, -1014.61, -1015.09, -1015.59,\r\n          -1016.07, -1016.6, -1017.1, -1017.6, -1018.29, -1018.79, -1019.31,\r\n          -1019.8, -1020.32, -1020.8, -1021.31, -1021.95, -1022.39, -1022.39,\r\n          -1022.84, -1023.24, -1023.64, -1023.98, -1024.26, -1024.53, -1024.28,\r\n          -1023.88, -1023.56, -1023.08, -1022.82, -1022.57, -1022.31, -1022.05,\r\n          -1021.75, -1021.37, -1021.06, -1021.43, -1021.73, -1022.13, -1022.47,\r\n          -1022.76, -1023.1, -1022.78, -1022.53, -1022.23, -1021.95, -1021.61,\r\n          -1021.91, -1022.25, -1022.57, -1022.29, -1022.29\r\n        ],\r\n        \"torque\": [\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.12, -0.12, -0.13, -0.12, -0.12,\r\n          -0.11, -0.12, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11,\r\n          -0.11, -0.11, -0.11, -0.11, -0.11, -0.12, -0.11, -0.11, -0.12, -0.12,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.14, -0.14, -0.13, -0.13, -0.13,\r\n          -0.12, -0.11, -0.12, -0.11, -0.12, -0.11, -0.11, -0.11, -0.11, -0.11,\r\n          -0.11, -0.11, -0.11, -0.11, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.11, -0.1, -0.1, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11,\r\n          -0.11, -0.11, -0.11, -0.11, -0.12, -0.12, -0.12, -0.12, -0.12, -0.12,\r\n          -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11, -0.1,\r\n          -0.1, -0.1, -0.1, -0.09, -0.1, -0.1, -0.1, -0.09, -0.09, -0.1, -0.1,\r\n          -0.09, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.11, -0.11, -0.11,\r\n          -0.11, -0.11, -0.11, -0.12, -0.11, -0.11, -0.11, -0.11, -0.11, -0.11,\r\n          -0.11, -0.11, -0.11, -0.11, -0.11, -0.1, -0.11, -0.11, -0.11, -0.1,\r\n          -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.09, -0.09, -0.1, -0.09, -0.08,\r\n          -0.09, -0.1, -0.1, -0.1, -0.1, -0.09, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.11, -0.12, -0.13, -0.12, -0.11, -0.12, -0.12, -0.12, -0.11, -0.1,\r\n          -0.11, -0.1, -0.11, -0.1, -0.1, -0.11, -0.11, -0.11, -0.1, -0.1,\r\n          -0.11, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.11, -0.1, -0.1, -0.1, -0.11,\r\n          -0.12, -0.12, -0.11, -0.11, -0.12, -0.12, -0.13, -0.11, -0.11, -0.11,\r\n          -0.11, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.09,\r\n          -0.09, -0.09, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08,\r\n          -0.09, -0.08, -0.08, -0.08, -0.08, -0.09, -0.09, -0.08, -0.08, -0.08,\r\n          -0.09, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.08, -0.09, -0.09, -0.08,\r\n          -0.09, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08, -0.07, -0.08, -0.08,\r\n          -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.08, -0.07, -0.06, -0.06, -0.06, -0.08, -0.08,\r\n          -0.09, -0.09, -0.08, -0.08, -0.09, -0.1, -0.07, -0.07, -0.08, -0.07,\r\n          -0.06, -0.06, -0.07, -0.06, -0.06, -0.07, -0.07, -0.06, -0.06, -0.06,\r\n          -0.07, -0.07, -0.06, -0.05, -0.05, -0.06, -0.05, -0.04, -0.05, -0.05,\r\n          -0.04, -0.04, -0.06, -0.05, -0.06, -0.05, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.07, -0.08, -0.08, -0.08, -0.09, -0.07, -0.08, -0.08,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05,\r\n          -0.04, -0.04, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05,\r\n          -0.06, -0.05, -0.05, -0.05, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.07, -0.07, -0.08, -0.08, -0.07, -0.06, -0.06,\r\n          -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.05,\r\n          -0.05, -0.06, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.06, -0.05, -0.04, -0.04, -0.04, -0.05,\r\n          -0.06, -0.06, -0.07, -0.08, -0.07, -0.06, -0.07, -0.07, -0.07, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.05, -0.05, -0.06, -0.05, -0.04, -0.05, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.05, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.07, -0.08, -0.07, -0.09, -0.09, -0.08, -0.08,\r\n          -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.06,\r\n          -0.05, -0.05, -0.05, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.05, -0.05, -0.04, -0.05, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.07, -0.07, -0.08, -0.08, -0.07, -0.07, -0.07, -0.06,\r\n          -0.07, -0.07, -0.06, -0.07, -0.07, -0.06, -0.06, -0.07, -0.07, -0.06,\r\n          -0.07, -0.08, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05,\r\n          -0.05, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.06, -0.07, -0.06,\r\n          -0.06, -0.07, -0.08, -0.09, -0.1, -0.09, -0.08, -0.07, -0.08, -0.06,\r\n          -0.06, -0.07, -0.06, -0.06, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.05, -0.05, -0.05, -0.06, -0.05, -0.04, -0.05, -0.05,\r\n          -0.04, -0.05, -0.05, -0.05, -0.06, -0.06, -0.05, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.08, -0.08, -0.08, -0.07, -0.07, -0.08,\r\n          -0.08, -0.07, -0.08, -0.08, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.04, -0.05, -0.05,\r\n          -0.06, -0.06, -0.06, -0.06, -0.07, -0.06, -0.06, -0.06, -0.06, -0.07,\r\n          -0.08, -0.07, -0.08, -0.08, -0.08, -0.08, -0.09, -0.09, -0.08, -0.08,\r\n          -0.08, -0.08, -0.08, -0.07, -0.08, -0.07, -0.07, -0.07, -0.07, -0.08,\r\n          -0.07, -0.06, -0.06, -0.06, -0.06, -0.07, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.08, -0.08,\r\n          -0.08, -0.08, -0.08, -0.08, -0.09, -0.1, -0.11, -0.12, -0.1, -0.09,\r\n          -0.09, -0.1, -0.1, -0.1, -0.09, -0.09, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.1, -0.1, -0.11, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.1, -0.1, -0.11, -0.1, -0.11, -0.11, -0.11, -0.11, -0.12, -0.11,\r\n          -0.13, -0.13, -0.13, -0.13, -0.14, -0.15, -0.15, -0.14, -0.14, -0.13,\r\n          -0.13, -0.13, -0.14, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.14, -0.13, -0.13,\r\n          -0.15, -0.16, -0.16, -0.17, -0.16, -0.16, -0.17, -0.16, -0.15, -0.16,\r\n          -0.15, -0.14, -0.14, -0.14, -0.15, -0.13, -0.13, -0.14, -0.14, -0.13,\r\n          -0.13, -0.14, -0.13, -0.13, -0.13, -0.13, -0.13, -0.12, -0.11, -0.13,\r\n          -0.13, -0.12, -0.12, -0.11, -0.13, -0.13, -0.12, -0.13, -0.13, -0.14,\r\n          -0.14, -0.13, -0.13, -0.13, -0.14, -0.15, -0.17, -0.14, -0.13, -0.13,\r\n          -0.15, -0.13, -0.12, -0.13, -0.13, -0.13, -0.13, -0.13, -0.12, -0.12,\r\n          -0.13, -0.13, -0.13, -0.12, -0.13, -0.11, -0.11, -0.12, -0.11, -0.11,\r\n          -0.11, -0.13, -0.12, -0.11, -0.12, -0.13, -0.12, -0.12, -0.12, -0.12,\r\n          -0.13, -0.13, -0.12, -0.13, -0.13, -0.13, -0.13, -0.14, -0.13, -0.13,\r\n          -0.14, -0.16, -0.13, -0.13, -0.14, -0.14, -0.13, -0.13, -0.13, -0.12,\r\n          -0.13, -0.13, -0.13, -0.12, -0.12, -0.13, -0.11, -0.12, -0.13, -0.12,\r\n          -0.12, -0.13, -0.13, -0.12, -0.13, -0.13, -0.13, -0.13, -0.13, -0.12,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.14, -0.15, -0.15, -0.15,\r\n          -0.15, -0.16, -0.16, -0.15, -0.14, -0.15, -0.14, -0.14, -0.15, -0.15,\r\n          -0.14, -0.15, -0.14, -0.14, -0.13, -0.14, -0.14, -0.14, -0.13, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.14, -0.13, -0.13, -0.14, -0.15, -0.16, -0.17, -0.17, -0.15,\r\n          -0.14, -0.16, -0.17, -0.14, -0.14, -0.16, -0.15, -0.14, -0.15, -0.15,\r\n          -0.15, -0.14, -0.13, -0.14, -0.14, -0.13, -0.13, -0.13, -0.13, -0.14,\r\n          -0.13, -0.13, -0.13, -0.14, -0.13, -0.13, -0.13, -0.13, -0.12, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.15, -0.15, -0.16, -0.15, -0.16, -0.17, -0.15, -0.14, -0.15,\r\n          -0.14, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.14,\r\n          -0.13, -0.11, -0.13, -0.13, -0.13, -0.12, -0.12, -0.13, -0.13, -0.12,\r\n          -0.11, -0.13, -0.13, -0.11, -0.12, -0.13, -0.13, -0.12, -0.12, -0.12,\r\n          -0.13, -0.13, -0.13, -0.14, -0.13, -0.14, -0.13, -0.14, -0.13, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.12, -0.12, -0.11, -0.12, -0.11, -0.11, -0.11, -0.11, -0.11,\r\n          -0.11, -0.12, -0.11, -0.12, -0.12, -0.12, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.13, -0.14, -0.14, -0.14, -0.14, -0.13, -0.14, -0.14, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13,\r\n          -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.13, -0.12, -0.12, -0.12,\r\n          -0.12, -0.13, -0.12, -0.13, -0.13, -0.13, -0.12, -0.13, -0.13, -0.13,\r\n          -0.12, -0.12, -0.13, -0.13, -0.13, -0.13, -0.14, -0.15, -0.17, -0.15,\r\n          -0.13, -0.12, -0.13, -0.12, -0.12, -0.11, -0.12, -0.11, -0.12, -0.13,\r\n          -0.12, -0.12, -0.12, -0.12, -0.11, -0.11, -0.12, -0.11, -0.11, -0.11,\r\n          -0.11, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1, -0.11, -0.11, -0.11,\r\n          -0.12, -0.12, -0.1, -0.1, -0.1, -0.11, -0.09, -0.09, -0.1, -0.09,\r\n          -0.09, -0.09, -0.09, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08,\r\n          -0.07, -0.07, -0.08, -0.07, -0.07, -0.07, -0.08, -0.08, -0.08, -0.08,\r\n          -0.08, -0.09, -0.1, -0.09, -0.09, -0.1, -0.1, -0.1, -0.1, -0.1, -0.1,\r\n          -0.1, -0.11, -0.1, -0.09, -0.09, -0.1, -0.1, -0.1, -0.09, -0.08,\r\n          -0.08, -0.09, -0.09, -0.08, -0.09, -0.09, -0.08, -0.07, -0.07, -0.07,\r\n          -0.07, -0.06, -0.06, -0.06, -0.07, -0.07, -0.08, -0.08, -0.07, -0.07,\r\n          -0.08, -0.08, -0.08, -0.08, -0.09, -0.1, -0.1, -0.1, -0.1, -0.08,\r\n          -0.08, -0.09, -0.08, -0.08, -0.08, -0.07, -0.08, -0.08, -0.07, -0.07,\r\n          -0.08, -0.08, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.05, -0.05, -0.06, -0.04, -0.04, -0.05, -0.04, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.08,\r\n          -0.07, -0.07, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.03, -0.04, -0.04, -0.04, -0.04, -0.05, -0.04, -0.05,\r\n          -0.06, -0.06, -0.05, -0.06, -0.06, -0.06, -0.06, -0.08, -0.06, -0.06,\r\n          -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.05, -0.05, -0.05, -0.05,\r\n          -0.05, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05, -0.06, -0.05, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.07, -0.07, -0.08, -0.08, -0.09, -0.09,\r\n          -0.09, -0.07, -0.07, -0.07, -0.06, -0.06, -0.07, -0.06, -0.06, -0.07,\r\n          -0.06, -0.06, -0.07, -0.06, -0.06, -0.06, -0.05, -0.04, -0.04, -0.04,\r\n          -0.05, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.07,\r\n          -0.07, -0.07, -0.06, -0.07, -0.08, -0.07, -0.08, -0.08, -0.08, -0.08,\r\n          -0.1, -0.09, -0.08, -0.09, -0.08, -0.08, -0.08, -0.08, -0.06, -0.06,\r\n          -0.07, -0.07, -0.07, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.08,\r\n          -0.07, -0.07, -0.06, -0.07, -0.08, -0.08, -0.09, -0.09, -0.09, -0.1,\r\n          -0.08, -0.08, -0.07, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08, -0.08,\r\n          -0.07, -0.07, -0.06, -0.06, -0.07, -0.06, -0.06, -0.05, -0.05, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05,\r\n          -0.05, -0.05, -0.05, -0.05, -0.06, -0.06, -0.06, -0.06, -0.07, -0.07,\r\n          -0.08, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.04, -0.05, -0.06, -0.05, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.05, -0.05, -0.04, -0.04, -0.05, -0.06,\r\n          -0.06, -0.06, -0.06, -0.05, -0.05, -0.06, -0.07, -0.07, -0.07, -0.06,\r\n          -0.06, -0.07, -0.08, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05,\r\n          -0.05, -0.06, -0.06, -0.05, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.03, -0.03, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.05, -0.06, -0.05, -0.05, -0.05, -0.06, -0.06, -0.06, -0.07, -0.07,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.05, -0.05, -0.04, -0.05, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.03, -0.03, -0.03, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.06, -0.05, -0.05, -0.05, -0.06, -0.08, -0.08,\r\n          -0.07, -0.06, -0.06, -0.07, -0.06, -0.05, -0.04, -0.05, -0.06, -0.05,\r\n          -0.05, -0.04, -0.04, -0.04, -0.04, -0.05, -0.04, -0.04, -0.04, -0.03,\r\n          -0.03, -0.03, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05,\r\n          -0.05, -0.06, -0.05, -0.04, -0.06, -0.05, -0.05, -0.06, -0.06, -0.07,\r\n          -0.07, -0.08, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.05, -0.04, -0.04, -0.04, -0.05, -0.04, -0.04, -0.03,\r\n          -0.03, -0.03, -0.03, -0.04, -0.04, -0.03, -0.04, -0.04, -0.04, -0.04,\r\n          -0.05, -0.05, -0.05, -0.05, -0.06, -0.06, -0.07, -0.06, -0.06, -0.07,\r\n          -0.08, -0.07, -0.07, -0.06, -0.05, -0.05, -0.05, -0.06, -0.06, -0.05,\r\n          -0.04, -0.04, -0.05, -0.05, -0.05, -0.05, -0.04, -0.04, -0.05, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05, -0.05,\r\n          -0.05, -0.05, -0.05, -0.05, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.08, -0.09, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.05, -0.04, -0.05, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.04, -0.05, -0.05, -0.05, -0.04, -0.05,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.07, -0.06,\r\n          -0.07, -0.07, -0.07, -0.06, -0.07, -0.06, -0.06, -0.06, -0.06, -0.05,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05, -0.04, -0.04, -0.04,\r\n          -0.05, -0.06, -0.05, -0.06, -0.06, -0.06, -0.06, -0.07, -0.07, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.05, -0.06, -0.05, -0.05,\r\n          -0.06, -0.05, -0.05, -0.04, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.03, -0.03, -0.04, -0.04, -0.04, -0.04, -0.04, -0.03,\r\n          -0.04, -0.04, -0.05, -0.04, -0.05, -0.06, -0.06, -0.06, -0.06, -0.07,\r\n          -0.06, -0.08, -0.07, -0.07, -0.06, -0.06, -0.06, -0.06, -0.05, -0.06,\r\n          -0.06, -0.06, -0.06, -0.05, -0.05, -0.05, -0.05, -0.04, -0.04, -0.04,\r\n          -0.03, -0.03, -0.04, -0.04, -0.04, -0.04, -0.04, -0.05, -0.05, -0.04,\r\n          -0.04, -0.05, -0.06, -0.05, -0.06, -0.05, -0.04, -0.06, -0.06, -0.06,\r\n          -0.06, -0.07, -0.06, -0.06, -0.07, -0.06, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.05, -0.05, -0.06, -0.04, -0.04, -0.04, -0.04,\r\n          -0.03, -0.03, -0.03, -0.04, -0.03, -0.03, -0.04, -0.04, -0.04, -0.03,\r\n          -0.04, -0.05, -0.04, -0.05, -0.04, -0.05, -0.04, -0.04, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.06, -0.04,\r\n          -0.05, -0.04, -0.05, -0.05, -0.05, -0.04, -0.04, -0.04, -0.04, -0.04,\r\n          -0.04, -0.04, -0.04, -0.04, -0.03, -0.03, -0.03, -0.03, -0.03, -0.03,\r\n          -0.04, -0.04, -0.04, -0.04, -0.05, -0.06, -0.05, -0.05, -0.06, -0.06,\r\n          -0.07, -0.07, -0.06, -0.06, -0.08, -0.07, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.06, -0.06, -0.04, -0.04, -0.04, -0.05, -0.04,\r\n          -0.03, -0.03, -0.03, -0.05, -0.05, -0.04, -0.03, -0.03, -0.05, -0.05,\r\n          -0.05, -0.04, -0.04, -0.05, -0.06, -0.05, -0.06, -0.06, -0.06, -0.06,\r\n          -0.08, -0.07, -0.07, -0.06, -0.06, -0.08, -0.06, -0.06, -0.06, -0.06,\r\n          -0.06, -0.06, -0.06, -0.05, -0.05, -0.06, -0.05, -0.05, -0.05, -0.04,\r\n          -0.05, -0.05, -0.05, -0.04, -0.04, -0.04, -0.03, -0.02, 0.0, 0.0,\r\n          0.01, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01, -0.01, 0.0,\r\n          -0.01, -0.01, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02, -0.01, 0.0,\r\n          0.0\r\n        ],\r\n        \"time\": [\r\n          11390.4, 11391.6, 11392.8, 11394.0, 11395.2, 11396.4, 11397.6,\r\n          11398.8, 11400.0, 11401.2, 11402.4, 11403.6, 11404.8, 11406.0,\r\n          11407.2, 11408.4, 11409.6, 11410.8, 11412.0, 11413.2, 11414.4,\r\n          11415.6, 11416.8, 11418.0, 11419.2, 11420.4, 11421.6, 11422.8,\r\n          11424.0, 11425.2, 11426.4, 11427.6, 11428.8, 11430.0, 11431.2,\r\n          11432.4, 11433.6, 11434.8, 11436.0, 11437.2, 11438.4, 11439.6,\r\n          11440.8, 11442.0, 11443.2, 11444.4, 11445.6, 11446.8, 11448.0,\r\n          11449.2, 11450.4, 11451.6, 11452.8, 11454.0, 11455.2, 11456.4,\r\n          11457.6, 11458.8, 11460.0, 11461.2, 11462.4, 11463.6, 11464.8,\r\n          11466.0, 11467.2, 11468.4, 11469.6, 11470.8, 11472.0, 11473.2,\r\n          11474.4, 11475.6, 11476.8, 11478.0, 11479.2, 11480.4, 11481.6,\r\n          11482.8, 11484.0, 11485.2, 11486.4, 11487.6, 11488.8, 11490.0,\r\n          11491.2, 11492.4, 11493.6, 11494.8, 11496.0, 11497.2, 11498.4,\r\n          11499.6, 11500.8, 11502.0, 11503.2, 11504.4, 11505.6, 11506.8,\r\n          11508.0, 11509.2, 11510.4, 11511.6, 11512.8, 11514.0, 11515.2,\r\n          11516.4, 11517.6, 11518.8, 11520.0, 11521.2, 11522.4, 11523.6,\r\n          11524.8, 11526.0, 11527.2, 11528.4, 11529.6, 11530.8, 11532.0,\r\n          11533.2, 11534.4, 11535.6, 11536.8, 11538.0, 11539.2, 11540.4,\r\n          11541.6, 11542.8, 11544.0, 11545.2, 11546.4, 11547.6, 11548.8,\r\n          11550.0, 11551.2, 11552.4, 11553.6, 11554.8, 11556.0, 11557.2,\r\n          11558.4, 11559.6, 11560.8, 11562.0, 11563.2, 11564.4, 11565.6,\r\n          11566.8, 11568.0, 11569.2, 11570.4, 11571.6, 11572.8, 11574.0,\r\n          11575.2, 11576.4, 11577.6, 11578.8, 11580.0, 11581.2, 11582.4,\r\n          11583.6, 11584.8, 11586.0, 11587.2, 11588.4, 11589.6, 11590.8,\r\n          11592.0, 11593.2, 11594.4, 11595.6, 11596.8, 11598.0, 11599.2,\r\n          11600.4, 11601.6, 11602.8, 11604.0, 11605.2, 11606.4, 11607.6,\r\n          11608.8, 11610.0, 11611.2, 11612.4, 11613.6, 11614.8, 11616.0,\r\n          11617.2, 11618.4, 11619.6, 11620.8, 11622.0, 11623.2, 11624.4,\r\n          11625.6, 11626.8, 11628.0, 11629.2, 11630.4, 11631.6, 11632.8,\r\n          11634.0, 11635.2, 11636.4, 11637.6, 11638.8, 11640.0, 11641.2,\r\n          11642.4, 11643.6, 11644.8, 11646.0, 11647.2, 11648.4, 11649.6,\r\n          11650.8, 11652.0, 11653.2, 11654.4, 11655.6, 11656.8, 11658.0,\r\n          11659.2, 11660.4, 11661.6, 11662.8, 11664.0, 11665.2, 11666.4,\r\n          11667.6, 11668.8, 11670.0, 11671.2, 11672.4, 11673.6, 11674.8,\r\n          11676.0, 11677.2, 11678.4, 11679.6, 11680.8, 11682.0, 11683.2,\r\n          11684.4, 11685.6, 11686.8, 11688.0, 11689.2, 11690.4, 11691.6,\r\n          11692.8, 11694.0, 11695.2, 11696.4, 11697.6, 11698.8, 11700.0,\r\n          11701.2, 11702.4, 11703.6, 11704.8, 11706.0, 11707.2, 11708.4,\r\n          11709.6, 11710.8, 11712.0, 11713.2, 11714.4, 11715.6, 11716.8,\r\n          11718.0, 11719.2, 11720.4, 11721.6, 11722.8, 11724.0, 11725.2,\r\n          11726.4, 11727.6, 11728.8, 11730.0, 11731.2, 11732.4, 11733.6,\r\n          11734.8, 11736.0, 11737.2, 11738.4, 11739.6, 11740.8, 11742.0,\r\n          11743.2, 11744.4, 11745.6, 11746.8, 11748.0, 11749.2, 11750.4,\r\n          11751.6, 11752.8, 11754.0, 11755.2, 11756.4, 11757.6, 11758.8,\r\n          11760.0, 11761.2, 11762.4, 11763.6, 11764.8, 11766.0, 11767.2,\r\n          11768.4, 11769.6, 11770.8, 11772.0, 11773.2, 11774.4, 11775.6,\r\n          11776.8, 11778.0, 11779.2, 11780.4, 11781.6, 11782.8, 11784.0,\r\n          11785.2, 11786.4, 11787.6, 11788.8, 11790.0, 11791.2, 11792.4,\r\n          11793.6, 11794.8, 11796.0, 11797.2, 11798.4, 11799.6, 11800.8,\r\n          11802.0, 11803.2, 11804.4, 11805.6, 11806.8, 11808.0, 11809.2,\r\n          11810.4, 11811.6, 11812.8, 11814.0, 11815.2, 11816.4, 11817.6,\r\n          11818.8, 11820.0, 11821.2, 11822.4, 11823.6, 11824.8, 11826.0,\r\n          11827.2, 11828.4, 11829.6, 11830.8, 11832.0, 11833.2, 11834.4,\r\n          11835.6, 11836.8, 11838.0, 11839.2, 11840.4, 11841.6, 11842.8,\r\n          11844.0, 11845.2, 11846.4, 11847.6, 11848.8, 11850.0, 11851.2,\r\n          11852.4, 11853.6, 11854.8, 11856.0, 11857.2, 11858.4, 11859.6,\r\n          11860.8, 11862.0, 11863.2, 11864.4, 11865.6, 11866.8, 11868.0,\r\n          11869.2, 11870.4, 11871.6, 11872.8, 11874.0, 11875.2, 11876.4,\r\n          11877.6, 11878.8, 11880.0, 11881.2, 11882.4, 11883.6, 11884.8,\r\n          11886.0, 11887.2, 11888.4, 11889.6, 11890.8, 11892.0, 11893.2,\r\n          11894.4, 11895.6, 11896.8, 11898.0, 11899.2, 11900.4, 11901.6,\r\n          11902.8, 11904.0, 11905.2, 11906.4, 11907.6, 11908.8, 11910.0,\r\n          11911.2, 11912.4, 11913.6, 11914.8, 11916.0, 11917.2, 11918.4,\r\n          11919.6, 11920.8, 11922.0, 11923.2, 11924.4, 11925.6, 11926.8,\r\n          11928.0, 11929.2, 11930.4, 11931.6, 11932.8, 11934.0, 11935.2,\r\n          11936.4, 11937.6, 11938.8, 11940.0, 11941.2, 11942.4, 11943.6,\r\n          11944.8, 11946.0, 11947.2, 11948.4, 11949.6, 11950.8, 11952.0,\r\n          11953.2, 11954.4, 11955.6, 11956.8, 11958.0, 11959.2, 11960.4,\r\n          11961.6, 11962.8, 11964.0, 11965.2, 11966.4, 11967.6, 11968.8,\r\n          11970.0, 11971.2, 11972.4, 11973.6, 11974.8, 11976.0, 11977.2,\r\n          11978.4, 11979.6, 11980.8, 11982.0, 11983.2, 11984.4, 11985.6,\r\n          11986.8, 11988.0, 11989.2, 11990.4, 11991.6, 11992.8, 11994.0,\r\n          11995.2, 11996.4, 11997.6, 11998.8, 12000.0, 12001.2, 12002.4,\r\n          12003.6, 12004.8, 12006.0, 12007.2, 12008.4, 12009.6, 12010.8,\r\n          12012.0, 12013.2, 12014.4, 12015.6, 12016.8, 12018.0, 12019.2,\r\n          12020.4, 12021.6, 12022.8, 12024.0, 12025.2, 12026.4, 12027.6,\r\n          12028.8, 12030.0, 12031.2, 12032.4, 12033.6, 12034.8, 12036.0,\r\n          12037.2, 12038.4, 12039.6, 12040.8, 12042.0, 12043.2, 12044.4,\r\n          12045.6, 12046.8, 12048.0, 12049.2, 12050.4, 12051.6, 12052.8,\r\n          12054.0, 12055.2, 12056.4, 12057.6, 12058.8, 12060.0, 12061.2,\r\n          12062.4, 12063.6, 12064.8, 12066.0, 12067.2, 12068.4, 12069.6,\r\n          12070.8, 12072.0, 12073.2, 12074.4, 12075.6, 12076.8, 12078.0,\r\n          12079.2, 12080.4, 12081.6, 12082.8, 12084.0, 12085.2, 12086.4,\r\n          12087.6, 12088.8, 12090.0, 12091.2, 12092.4, 12093.6, 12094.8,\r\n          12096.0, 12097.2, 12098.4, 12099.6, 12100.8, 12102.0, 12103.2,\r\n          12104.4, 12105.6, 12106.8, 12108.0, 12109.2, 12110.4, 12111.6,\r\n          12112.8, 12114.0, 12115.2, 12116.4, 12117.6, 12118.8, 12120.0,\r\n          12121.2, 12122.4, 12123.6, 12124.8, 12126.0, 12127.2, 12128.4,\r\n          12129.6, 12130.8, 12132.0, 12133.2, 12134.4, 12135.6, 12136.8,\r\n          12138.0, 12139.2, 12140.4, 12141.6, 12142.8, 12144.0, 12145.2,\r\n          12146.4, 12147.6, 12148.8, 12150.0, 12151.2, 12152.4, 12153.6,\r\n          12154.8, 12156.0, 12157.2, 12158.4, 12159.6, 12160.8, 12162.0,\r\n          12163.2, 12164.4, 12165.6, 12166.8, 12168.0, 12169.2, 12170.4,\r\n          12171.6, 12172.8, 12174.0, 12175.2, 12176.4, 12177.6, 12178.8,\r\n          12180.0, 12181.2, 12182.4, 12183.6, 12184.8, 12186.0, 12187.2,\r\n          12188.4, 12189.6, 12190.8, 12192.0, 12193.2, 12194.4, 12195.6,\r\n          12196.8, 12198.0, 12199.2, 12200.4, 12201.6, 12202.8, 12204.0,\r\n          12205.2, 12206.4, 12207.6, 12208.8, 12210.0, 12211.2, 12212.4,\r\n          12213.6, 12214.8, 12216.0, 12217.2, 12218.4, 12219.6, 12220.8,\r\n          12222.0, 12223.2, 12224.4, 12225.6, 12226.8, 12228.0, 12229.2,\r\n          12230.4, 12231.6, 12232.8, 12234.0, 12235.2, 12236.4, 12237.6,\r\n          12238.8, 12240.0, 12241.2, 12242.4, 12243.6, 12244.8, 12246.0,\r\n          12247.2, 12248.4, 12249.6, 12250.8, 12252.0, 12253.2, 12254.4,\r\n          12255.6, 12256.8, 12258.0, 12259.2, 12260.4, 12261.6, 12262.8,\r\n          12264.0, 12265.2, 12266.4, 12267.6, 12268.8, 12270.0, 12271.2,\r\n          12272.4, 12273.6, 12274.8, 12276.0, 12277.2, 12278.4, 12279.6,\r\n          12280.8, 12282.0, 12283.2, 12284.4, 12285.6, 12286.8, 12288.0,\r\n          12289.2, 12290.4, 12291.6, 12292.8, 12294.0, 12295.2, 12296.4,\r\n          12297.6, 12298.8, 12300.0, 12301.2, 12302.4, 12303.6, 12304.8,\r\n          12306.0, 12307.2, 12308.4, 12309.6, 12310.8, 12312.0, 12313.2,\r\n          12314.4, 12315.6, 12316.8, 12318.0, 12319.2, 12320.4, 12321.6,\r\n          12322.8, 12324.0, 12325.2, 12326.4, 12327.6, 12328.8, 12330.0,\r\n          12331.2, 12332.4, 12333.6, 12334.8, 12336.0, 12337.2, 12338.4,\r\n          12339.6, 12340.8, 12342.0, 12343.2, 12344.4, 12345.6, 12346.8,\r\n          12348.0, 12349.2, 12350.4, 12351.6, 12352.8, 12354.0, 12355.2,\r\n          12356.4, 12357.6, 12358.8, 12360.0, 12361.2, 12362.4, 12363.6,\r\n          12364.8, 12366.0, 12367.2, 12368.4, 12369.6, 12370.8, 12372.0,\r\n          12373.2, 12374.4, 12375.6, 12376.8, 12378.0, 12379.2, 12380.4,\r\n          12381.6, 12382.8, 12384.0, 12385.2, 12386.4, 12387.6, 12388.8,\r\n          12390.0, 12391.2, 12392.4, 12393.6, 12394.8, 12396.0, 12397.2,\r\n          12398.4, 12399.6, 12400.8, 12402.0, 12403.2, 12404.4, 12405.6,\r\n          12406.8, 12408.0, 12409.2, 12410.4, 12411.6, 12412.8, 12414.0,\r\n          12415.2, 12416.4, 12417.6, 12418.8, 12420.0, 12421.2, 12422.4,\r\n          12423.6, 12424.8, 12426.0, 12427.2, 12428.4, 12429.6, 12430.8,\r\n          12432.0, 12433.2, 12434.4, 12435.6, 12436.8, 12438.0, 12439.2,\r\n          12440.4, 12441.6, 12442.8, 12444.0, 12445.2, 12446.4, 12447.6,\r\n          12448.8, 12450.0, 12451.2, 12452.4, 12453.6, 12454.8, 12456.0,\r\n          12457.2, 12458.4, 12459.6, 12460.8, 12462.0, 12463.2, 12464.4,\r\n          12465.6, 12466.8, 12468.0, 12469.2, 12470.4, 12471.6, 12472.8,\r\n          12474.0, 12475.2, 12476.4, 12477.6, 12478.8, 12480.0, 12481.2,\r\n          12482.4, 12483.6, 12484.8, 12486.0, 12487.2, 12488.4, 12489.6,\r\n          12490.8, 12492.0, 12493.2, 12494.4, 12495.6, 12496.8, 12498.0,\r\n          12499.2, 12500.4, 12501.6, 12502.8, 12504.0, 12505.2, 12506.4,\r\n          12507.6, 12508.8, 12510.0, 12511.2, 12512.4, 12513.6, 12514.8,\r\n          12516.0, 12517.2, 12518.4, 12519.6, 12520.8, 12522.0, 12523.2,\r\n          12524.4, 12525.6, 12526.8, 12528.0, 12529.2, 12530.4, 12531.6,\r\n          12532.8, 12534.0, 12535.2, 12536.4, 12537.6, 12538.8, 12540.0,\r\n          12541.2, 12542.4, 12543.6, 12544.8, 12546.0, 12547.2, 12548.4,\r\n          12549.6, 12550.8, 12552.0, 12553.2, 12554.4, 12555.6, 12556.8,\r\n          12558.0, 12559.2, 12560.4, 12561.6, 12562.8, 12564.0, 12565.2,\r\n          12566.4, 12567.6, 12568.8, 12570.0, 12571.2, 12572.4, 12573.6,\r\n          12574.8, 12576.0, 12577.2, 12578.4, 12579.6, 12580.8, 12582.0,\r\n          12583.2, 12584.4, 12585.6, 12586.8, 12588.0, 12589.2, 12590.4,\r\n          12591.6, 12592.8, 12594.0, 12595.2, 12596.4, 12597.6, 12598.8,\r\n          12600.0, 12601.2, 12602.4, 12603.6, 12604.8, 12606.0, 12607.2,\r\n          12608.4, 12609.6, 12610.8, 12612.0, 12613.2, 12614.4, 12615.6,\r\n          12616.8, 12618.0, 12619.2, 12620.4, 12621.6, 12622.8, 12624.0,\r\n          12625.2, 12626.4, 12627.6, 12628.8, 12630.0, 12631.2, 12632.4,\r\n          12633.6, 12634.8, 12636.0, 12637.2, 12638.4, 12639.6, 12640.8,\r\n          12642.0, 12643.2, 12644.4, 12645.6, 12646.8, 12648.0, 12649.2,\r\n          12650.4, 12651.6, 12652.8, 12654.0, 12655.2, 12656.4, 12657.6,\r\n          12658.8, 12660.0, 12661.2, 12662.4, 12663.6, 12664.8, 12666.0,\r\n          12667.2, 12668.4, 12669.6, 12670.8, 12672.0, 12673.2, 12674.4,\r\n          12675.6, 12676.8, 12678.0, 12679.2, 12680.4, 12681.6, 12682.8,\r\n          12684.0, 12685.2, 12686.4, 12687.6, 12688.8, 12690.0, 12691.2,\r\n          12692.4, 12693.6, 12694.8, 12696.0, 12697.2, 12698.4, 12699.6,\r\n          12700.8, 12702.0, 12703.2, 12704.4, 12705.6, 12706.8, 12708.0,\r\n          12709.2, 12710.4, 12711.6, 12712.8, 12714.0, 12715.2, 12716.4,\r\n          12717.6, 12718.8, 12720.0, 12721.2, 12722.4, 12723.6, 12724.8,\r\n          12726.0, 12727.2, 12728.4, 12729.6, 12730.8, 12732.0, 12733.2,\r\n          12734.4, 12735.6, 12736.8, 12738.0, 12739.2, 12740.4, 12741.6,\r\n          12742.8, 12744.0, 12745.2, 12746.4, 12747.6, 12748.8, 12750.0,\r\n          12751.2, 12752.4, 12753.6, 12754.8, 12756.0, 12757.2, 12758.4,\r\n          12759.6, 12760.8, 12762.0, 12763.2, 12764.4, 12765.6, 12766.8,\r\n          12768.0, 12769.2, 12770.4, 12771.6, 12772.8, 12774.0, 12775.2,\r\n          12776.4, 12777.6, 12778.8, 12780.0, 12781.2, 12782.4, 12783.6,\r\n          12784.8, 12786.0, 12787.2, 12788.4, 12789.6, 12790.8, 12792.0,\r\n          12793.2, 12794.4, 12795.6, 12796.8, 12798.0, 12799.2, 12800.4,\r\n          12801.6, 12802.8, 12804.0, 12805.2, 12806.4, 12807.6, 12808.8,\r\n          12810.0, 12811.2, 12812.4, 12813.6, 12814.8, 12816.0, 12817.2,\r\n          12818.4, 12819.6, 12820.8, 12822.0, 12823.2, 12824.4, 12825.6,\r\n          12826.8, 12828.0, 12829.2, 12830.4, 12831.6, 12832.8, 12834.0,\r\n          12835.2, 12836.4, 12837.6, 12838.8, 12840.0, 12841.2, 12842.4,\r\n          12843.6, 12844.8, 12846.0, 12847.2, 12848.4, 12849.6, 12850.8,\r\n          12852.0, 12853.2, 12854.4, 12855.6, 12856.8, 12858.0, 12859.2,\r\n          12860.4, 12861.6, 12862.8, 12864.0, 12865.2, 12866.4, 12867.6,\r\n          12868.8, 12870.0, 12871.2, 12872.4, 12873.6, 12874.8, 12876.0,\r\n          12877.2, 12878.4, 12879.6, 12880.8, 12882.0, 12883.2, 12884.4,\r\n          12885.6, 12886.8, 12888.0, 12889.2, 12890.4, 12891.6, 12892.8,\r\n          12894.0, 12895.2, 12896.4, 12897.6, 12898.8, 12900.0, 12901.2,\r\n          12902.4, 12903.6, 12904.8, 12906.0, 12907.2, 12908.4, 12909.6,\r\n          12910.8, 12912.0, 12913.2, 12914.4, 12915.6, 12916.8, 12918.0,\r\n          12919.2, 12920.4, 12921.6, 12922.8, 12924.0, 12925.2, 12926.4,\r\n          12927.6, 12928.8, 12930.0, 12931.2, 12932.4, 12933.6, 12934.8,\r\n          12936.0, 12937.2, 12938.4, 12939.6, 12940.8, 12942.0, 12943.2,\r\n          12944.4, 12945.6, 12946.8, 12948.0, 12949.2, 12950.4, 12951.6,\r\n          12952.8, 12954.0, 12955.2, 12956.4, 12957.6, 12958.8, 12960.0,\r\n          12961.2, 12962.4, 12963.6, 12964.8, 12966.0, 12967.2, 12968.4,\r\n          12969.6, 12970.8, 12972.0, 12973.2, 12974.4, 12975.6, 12976.8,\r\n          12978.0, 12979.2, 12980.4, 12981.6, 12982.8, 12984.0, 12985.2,\r\n          12986.4, 12987.6, 12988.8, 12990.0, 12991.2, 12992.4, 12993.6,\r\n          12994.8, 12996.0, 12997.2, 12998.4, 12999.6, 13000.8, 13002.0,\r\n          13003.2, 13004.4, 13005.6, 13006.8, 13008.0, 13009.2, 13010.4,\r\n          13011.6, 13012.8, 13014.0, 13015.2, 13016.4, 13017.6, 13018.8,\r\n          13020.0, 13021.2, 13022.4, 13023.6, 13024.8, 13026.0, 13027.2,\r\n          13028.4, 13029.6, 13030.8, 13033.2, 13034.4, 13035.6, 13036.8,\r\n          13038.0, 13039.2, 13040.4, 13041.6, 13042.8, 13044.0, 13045.2,\r\n          13046.4, 13047.6, 13048.8, 13050.0, 13051.2, 13052.4, 13053.6,\r\n          13054.8, 13056.0, 13057.2, 13058.4, 13059.6, 13060.8, 13062.0,\r\n          13063.2, 13064.4, 13065.6, 13066.8, 13068.0, 13069.2, 13070.4,\r\n          13071.6, 13072.8, 13074.0, 13075.2, 13076.4, 13077.6, 13078.8,\r\n          13080.0, 13081.2, 13082.4, 13083.6, 13084.8, 13086.0, 13087.2,\r\n          13088.4, 13089.6, 13090.8, 13092.0, 13093.2, 13094.4, 13095.6,\r\n          13096.8, 13098.0, 13099.2, 13100.4, 13101.6, 13102.8, 13104.0,\r\n          13105.2, 13106.4, 13107.6, 13108.8, 13110.0, 13111.2, 13112.4,\r\n          13113.6, 13114.8, 13116.0, 13117.2, 13118.4, 13119.6, 13120.8,\r\n          13122.0, 13123.2, 13124.4, 13125.6, 13126.8, 13128.0, 13129.2,\r\n          13130.4, 13131.6, 13132.8, 13134.0, 13135.2, 13136.4, 13137.6,\r\n          13138.8, 13140.0, 13141.2, 13142.4, 13143.6, 13144.8, 13146.0,\r\n          13147.2, 13148.4, 13149.6, 13150.8, 13152.0, 13153.2, 13154.4,\r\n          13155.6, 13156.8, 13158.0, 13159.2, 13160.4, 13161.6, 13162.8,\r\n          13164.0, 13165.2, 13166.4, 13167.6, 13168.8, 13170.0, 13171.2,\r\n          13172.4, 13173.6, 13174.8, 13176.0, 13177.2, 13178.4, 13179.6,\r\n          13180.8, 13182.0, 13183.2, 13184.4, 13185.6, 13186.8, 13188.0,\r\n          13189.2, 13190.4, 13191.6, 13192.8, 13194.0, 13195.2, 13196.4,\r\n          13197.6, 13198.8, 13200.0, 13201.2, 13202.4, 13203.6, 13204.8,\r\n          13206.0, 13207.2, 13208.4, 13209.6, 13210.8, 13212.0, 13213.2,\r\n          13214.4, 13215.6, 13216.8, 13218.0, 13219.2, 13220.4, 13221.6,\r\n          13222.8, 13224.0, 13225.2, 13226.4, 13227.6, 13228.8, 13230.0,\r\n          13231.2, 13232.4, 13233.6, 13234.8, 13236.0, 13237.2, 13238.4,\r\n          13239.6, 13240.8, 13242.0, 13243.2, 13244.4, 13245.6, 13246.8,\r\n          13248.0, 13249.2, 13250.4, 13251.6, 13252.8, 13254.0, 13255.2,\r\n          13256.4, 13257.6, 13258.8, 13260.0, 13261.2, 13262.4, 13263.6,\r\n          13264.8, 13266.0, 13267.2, 13268.4, 13269.6, 13270.8, 13272.0,\r\n          13273.2, 13274.4, 13275.6, 13276.8, 13278.0, 13279.2, 13280.4,\r\n          13281.6, 13282.8, 13284.0, 13285.2, 13286.4, 13287.6, 13288.8,\r\n          13290.0, 13291.2, 13292.4, 13293.6, 13294.8, 13296.0, 13297.2,\r\n          13298.4, 13299.6, 13300.8, 13302.0, 13303.2, 13304.4, 13305.6,\r\n          13306.8, 13308.0, 13309.2, 13310.4, 13311.6, 13312.8, 13314.0,\r\n          13315.2, 13316.4, 13317.6, 13318.8, 13320.0, 13321.2, 13322.4,\r\n          13323.6, 13324.8, 13326.0, 13327.2, 13328.4, 13329.6, 13330.8,\r\n          13332.0, 13333.2, 13334.4, 13335.6, 13336.8, 13338.0, 13339.2,\r\n          13340.4, 13341.6, 13342.8, 13344.0, 13345.2, 13346.4, 13347.6,\r\n          13348.8, 13350.0, 13351.2, 13352.4, 13353.6, 13354.8, 13356.0,\r\n          13357.2, 13358.4, 13359.6, 13360.8, 13362.0, 13363.2, 13364.4,\r\n          13365.6, 13366.8, 13368.0, 13369.2, 13370.4, 13371.6, 13372.8,\r\n          13374.0, 13375.2, 13376.4, 13377.6, 13378.8, 13380.0, 13381.2,\r\n          13382.4, 13383.6, 13384.8, 13386.0, 13387.2, 13388.4, 13389.6,\r\n          13390.8, 13392.0, 13393.2, 13394.4, 13395.6, 13396.8, 13398.0,\r\n          13399.2, 13400.4, 13401.6, 13402.8, 13404.0, 13405.2, 13406.4,\r\n          13407.6, 13408.8, 13410.0, 13411.2, 13412.4, 13413.6, 13414.8,\r\n          13416.0, 13417.2, 13418.4, 13419.6, 13420.8, 13422.0, 13423.2,\r\n          13424.4, 13425.6, 13426.8, 13428.0, 13429.2, 13430.4, 13431.6,\r\n          13432.8, 13434.0, 13435.2, 13436.4, 13437.6, 13438.8, 13440.0,\r\n          13441.2, 13442.4, 13443.6, 13444.8, 13446.0, 13447.2, 13448.4,\r\n          13449.6, 13450.8, 13452.0, 13453.2, 13454.4, 13455.6, 13456.8,\r\n          13458.0, 13459.2, 13460.4, 13461.6, 13462.8, 13464.0, 13465.2,\r\n          13466.4, 13467.6, 13468.8, 13470.0, 13471.2, 13472.4, 13473.6,\r\n          13474.8, 13476.0, 13477.2, 13478.4, 13479.6, 13480.8, 13482.0,\r\n          13483.2, 13484.4, 13485.6, 13486.8, 13488.0, 13489.2, 13490.4,\r\n          13491.6, 13492.8, 13494.0, 13495.2, 13496.4, 13497.6, 13498.8,\r\n          13500.0, 13501.2, 13502.4, 13503.6, 13504.8, 13506.0, 13507.2,\r\n          13508.4, 13509.6, 13510.8, 13512.0, 13513.2, 13514.4, 13515.6,\r\n          13516.8, 13518.0, 13519.2, 13520.4, 13521.6, 13522.8, 13524.0,\r\n          13525.2, 13526.4, 13527.6, 13528.8, 13530.0, 13531.2, 13532.4,\r\n          13533.6, 13534.8, 13536.0, 13537.2, 13538.4, 13539.6, 13540.8,\r\n          13542.0, 13543.2, 13544.4, 13545.6, 13546.8, 13548.0, 13549.2,\r\n          13550.4, 13551.6, 13552.8, 13554.0, 13555.2, 13556.4, 13557.6,\r\n          13558.8, 13560.0, 13561.2, 13562.4, 13563.6, 13564.8, 13566.0,\r\n          13567.2, 13568.4, 13569.6, 13570.8, 13572.0, 13573.2, 13574.4,\r\n          13575.6, 13576.8, 13578.0, 13579.2, 13580.4, 13581.6, 13582.8,\r\n          13584.0, 13585.2, 13586.4, 13587.6, 13588.8, 13590.0, 13591.2,\r\n          13592.4, 13593.6, 13594.8, 13596.0, 13597.2, 13598.4, 13599.6,\r\n          13600.8, 13602.0, 13603.2, 13604.4, 13605.6, 13606.8, 13608.0,\r\n          13609.2, 13610.4, 13611.6, 13612.8, 13614.0, 13615.2, 13616.4,\r\n          13617.6, 13618.8, 13620.0, 13621.2, 13622.4, 13623.6, 13624.8,\r\n          13626.0, 13627.2, 13628.4, 13629.6, 13630.8, 13632.0, 13633.2,\r\n          13634.4, 13635.6, 13636.8, 13638.0, 13639.2, 13640.4, 13641.6,\r\n          13642.8, 13644.0, 13645.2, 13646.4, 13647.6, 13648.8, 13650.0,\r\n          13651.2, 13652.4, 13653.6, 13654.8, 13656.0, 13657.2, 13658.4,\r\n          13659.6, 13660.8, 13662.0, 13663.2, 13664.4, 13665.6, 13666.8,\r\n          13668.0, 13669.2, 13670.4, 13671.6, 13672.8, 13674.0, 13675.2,\r\n          13676.4, 13677.6, 13678.8, 13680.0, 13681.2, 13682.4, 13683.6,\r\n          13684.8, 13686.0, 13687.2, 13688.4, 13689.6, 13690.8, 13692.0,\r\n          13693.2, 13694.4, 13695.6, 13696.8, 13698.0, 13699.2, 13700.4,\r\n          13701.6, 13702.8, 13704.0, 13705.2, 13706.4, 13707.6, 13708.8,\r\n          13710.0, 13711.2, 13712.4, 13713.6, 13714.8, 13716.0, 13717.2,\r\n          13718.4, 13719.6, 13720.8, 13722.0, 13723.2, 13724.4, 13725.6,\r\n          13726.8, 13728.0, 13729.2, 13730.4, 13731.6, 13732.8, 13734.0,\r\n          13735.2, 13736.4, 13737.6, 13738.8, 13740.0, 13741.2, 13742.4,\r\n          13743.6, 13744.8, 13746.0, 13747.2, 13748.4, 13749.6, 13749.6,\r\n          13750.8, 13752.0, 13753.2, 13754.4, 13755.6, 13758.0, 13761.6,\r\n          13764.0, 13765.2, 13767.6, 13768.8, 13770.0, 13771.2, 13772.4,\r\n          13773.6, 13776.0, 13779.6, 13785.6, 13788.0, 13790.4, 13792.8,\r\n          13795.2, 13798.8, 13810.8, 13813.2, 13815.6, 13818.0, 13821.6,\r\n          13834.8, 13838.4, 13842.0, 13858.8, 13860.0\r\n        ],\r\n        \"process_time\": [\r\n          11390.4, 11391.6, 11392.8, 11394.0, 11395.2, 11396.4, 11397.6,\r\n          11398.8, 11400.0, 11401.2, 11402.4, 11403.6, 11404.8, 11406.0,\r\n          11407.2, 11408.4, 11409.6, 11410.8, 11412.0, 11413.2, 11414.4,\r\n          11415.6, 11416.8, 11418.0, 11419.2, 11420.4, 11421.6, 11422.8,\r\n          11424.0, 11425.2, 11426.4, 11427.6, 11428.8, 11430.0, 11431.2,\r\n          11432.4, 11433.6, 11434.8, 11436.0, 11437.2, 11438.4, 11439.6,\r\n          11440.8, 11442.0, 11443.2, 11444.4, 11445.6, 11446.8, 11448.0,\r\n          11449.2, 11450.4, 11451.6, 11452.8, 11454.0, 11455.2, 11456.4,\r\n          11457.6, 11458.8, 11460.0, 11461.2, 11462.4, 11463.6, 11464.8,\r\n          11466.0, 11467.2, 11468.4, 11469.6, 11470.8, 11472.0, 11473.2,\r\n          11474.4, 11475.6, 11476.8, 11478.0, 11479.2, 11480.4, 11481.6,\r\n          11482.8, 11484.0, 11485.2, 11486.4, 11487.6, 11488.8, 11490.0,\r\n          11491.2, 11492.4, 11493.6, 11494.8, 11496.0, 11497.2, 11498.4,\r\n          11499.6, 11500.8, 11502.0, 11503.2, 11504.4, 11505.6, 11506.8,\r\n          11508.0, 11509.2, 11510.4, 11511.6, 11512.8, 11514.0, 11515.2,\r\n          11516.4, 11517.6, 11518.8, 11520.0, 11521.2, 11522.4, 11523.6,\r\n          11524.8, 11526.0, 11527.2, 11528.4, 11529.6, 11530.8, 11532.0,\r\n          11533.2, 11534.4, 11535.6, 11536.8, 11538.0, 11539.2, 11540.4,\r\n          11541.6, 11542.8, 11544.0, 11545.2, 11546.4, 11547.6, 11548.8,\r\n          11550.0, 11551.2, 11552.4, 11553.6, 11554.8, 11556.0, 11557.2,\r\n          11558.4, 11559.6, 11560.8, 11562.0, 11563.2, 11564.4, 11565.6,\r\n          11566.8, 11568.0, 11569.2, 11570.4, 11571.6, 11572.8, 11574.0,\r\n          11575.2, 11576.4, 11577.6, 11578.8, 11580.0, 11581.2, 11582.4,\r\n          11583.6, 11584.8, 11586.0, 11587.2, 11588.4, 11589.6, 11590.8,\r\n          11592.0, 11593.2, 11594.4, 11595.6, 11596.8, 11598.0, 11599.2,\r\n          11600.4, 11601.6, 11602.8, 11604.0, 11605.2, 11606.4, 11607.6,\r\n          11608.8, 11610.0, 11611.2, 11612.4, 11613.6, 11614.8, 11616.0,\r\n          11617.2, 11618.4, 11619.6, 11620.8, 11622.0, 11623.2, 11624.4,\r\n          11625.6, 11626.8, 11628.0, 11629.2, 11630.4, 11631.6, 11632.8,\r\n          11634.0, 11635.2, 11636.4, 11637.6, 11638.8, 11640.0, 11641.2,\r\n          11642.4, 11643.6, 11644.8, 11646.0, 11647.2, 11648.4, 11649.6,\r\n          11650.8, 11652.0, 11653.2, 11654.4, 11655.6, 11656.8, 11658.0,\r\n          11659.2, 11660.4, 11661.6, 11662.8, 11664.0, 11665.2, 11666.4,\r\n          11667.6, 11668.8, 11670.0, 11671.2, 11672.4, 11673.6, 11674.8,\r\n          11676.0, 11677.2, 11678.4, 11679.6, 11680.8, 11682.0, 11683.2,\r\n          11684.4, 11685.6, 11686.8, 11688.0, 11689.2, 11690.4, 11691.6,\r\n          11692.8, 11694.0, 11695.2, 11696.4, 11697.6, 11698.8, 11700.0,\r\n          11701.2, 11702.4, 11703.6, 11704.8, 11706.0, 11707.2, 11708.4,\r\n          11709.6, 11710.8, 11712.0, 11713.2, 11714.4, 11715.6, 11716.8,\r\n          11718.0, 11719.2, 11720.4, 11721.6, 11722.8, 11724.0, 11725.2,\r\n          11726.4, 11727.6, 11728.8, 11730.0, 11731.2, 11732.4, 11733.6,\r\n          11734.8, 11736.0, 11737.2, 11738.4, 11739.6, 11740.8, 11742.0,\r\n          11743.2, 11744.4, 11745.6, 11746.8, 11748.0, 11749.2, 11750.4,\r\n          11751.6, 11752.8, 11754.0, 11755.2, 11756.4, 11757.6, 11758.8,\r\n          11760.0, 11761.2, 11762.4, 11763.6, 11764.8, 11766.0, 11767.2,\r\n          11768.4, 11769.6, 11770.8, 11772.0, 11773.2, 11774.4, 11775.6,\r\n          11776.8, 11778.0, 11779.2, 11780.4, 11781.6, 11782.8, 11784.0,\r\n          11785.2, 11786.4, 11787.6, 11788.8, 11790.0, 11791.2, 11792.4,\r\n          11793.6, 11794.8, 11796.0, 11797.2, 11798.4, 11799.6, 11800.8,\r\n          11802.0, 11803.2, 11804.4, 11805.6, 11806.8, 11808.0, 11809.2,\r\n          11810.4, 11811.6, 11812.8, 11814.0, 11815.2, 11816.4, 11817.6,\r\n          11818.8, 11820.0, 11821.2, 11822.4, 11823.6, 11824.8, 11826.0,\r\n          11827.2, 11828.4, 11829.6, 11830.8, 11832.0, 11833.2, 11834.4,\r\n          11835.6, 11836.8, 11838.0, 11839.2, 11840.4, 11841.6, 11842.8,\r\n          11844.0, 11845.2, 11846.4, 11847.6, 11848.8, 11850.0, 11851.2,\r\n          11852.4, 11853.6, 11854.8, 11856.0, 11857.2, 11858.4, 11859.6,\r\n          11860.8, 11862.0, 11863.2, 11864.4, 11865.6, 11866.8, 11868.0,\r\n          11869.2, 11870.4, 11871.6, 11872.8, 11874.0, 11875.2, 11876.4,\r\n          11877.6, 11878.8, 11880.0, 11881.2, 11882.4, 11883.6, 11884.8,\r\n          11886.0, 11887.2, 11888.4, 11889.6, 11890.8, 11892.0, 11893.2,\r\n          11894.4, 11895.6, 11896.8, 11898.0, 11899.2, 11900.4, 11901.6,\r\n          11902.8, 11904.0, 11905.2, 11906.4, 11907.6, 11908.8, 11910.0,\r\n          11911.2, 11912.4, 11913.6, 11914.8, 11916.0, 11917.2, 11918.4,\r\n          11919.6, 11920.8, 11922.0, 11923.2, 11924.4, 11925.6, 11926.8,\r\n          11928.0, 11929.2, 11930.4, 11931.6, 11932.8, 11934.0, 11935.2,\r\n          11936.4, 11937.6, 11938.8, 11940.0, 11941.2, 11942.4, 11943.6,\r\n          11944.8, 11946.0, 11947.2, 11948.4, 11949.6, 11950.8, 11952.0,\r\n          11953.2, 11954.4, 11955.6, 11956.8, 11958.0, 11959.2, 11960.4,\r\n          11961.6, 11962.8, 11964.0, 11965.2, 11966.4, 11967.6, 11968.8,\r\n          11970.0, 11971.2, 11972.4, 11973.6, 11974.8, 11976.0, 11977.2,\r\n          11978.4, 11979.6, 11980.8, 11982.0, 11983.2, 11984.4, 11985.6,\r\n          11986.8, 11988.0, 11989.2, 11990.4, 11991.6, 11992.8, 11994.0,\r\n          11995.2, 11996.4, 11997.6, 11998.8, 12000.0, 12001.2, 12002.4,\r\n          12003.6, 12004.8, 12006.0, 12007.2, 12008.4, 12009.6, 12010.8,\r\n          12012.0, 12013.2, 12014.4, 12015.6, 12016.8, 12018.0, 12019.2,\r\n          12020.4, 12021.6, 12022.8, 12024.0, 12025.2, 12026.4, 12027.6,\r\n          12028.8, 12030.0, 12031.2, 12032.4, 12033.6, 12034.8, 12036.0,\r\n          12037.2, 12038.4, 12039.6, 12040.8, 12042.0, 12043.2, 12044.4,\r\n          12045.6, 12046.8, 12048.0, 12049.2, 12050.4, 12051.6, 12052.8,\r\n          12054.0, 12055.2, 12056.4, 12057.6, 12058.8, 12060.0, 12061.2,\r\n          12062.4, 12063.6, 12064.8, 12066.0, 12067.2, 12068.4, 12069.6,\r\n          12070.8, 12072.0, 12073.2, 12074.4, 12075.6, 12076.8, 12078.0,\r\n          12079.2, 12080.4, 12081.6, 12082.8, 12084.0, 12085.2, 12086.4,\r\n          12087.6, 12088.8, 12090.0, 12091.2, 12092.4, 12093.6, 12094.8,\r\n          12096.0, 12097.2, 12098.4, 12099.6, 12100.8, 12102.0, 12103.2,\r\n          12104.4, 12105.6, 12106.8, 12108.0, 12109.2, 12110.4, 12111.6,\r\n          12112.8, 12114.0, 12115.2, 12116.4, 12117.6, 12118.8, 12120.0,\r\n          12121.2, 12122.4, 12123.6, 12124.8, 12126.0, 12127.2, 12128.4,\r\n          12129.6, 12130.8, 12132.0, 12133.2, 12134.4, 12135.6, 12136.8,\r\n          12138.0, 12139.2, 12140.4, 12141.6, 12142.8, 12144.0, 12145.2,\r\n          12146.4, 12147.6, 12148.8, 12150.0, 12151.2, 12152.4, 12153.6,\r\n          12154.8, 12156.0, 12157.2, 12158.4, 12159.6, 12160.8, 12162.0,\r\n          12163.2, 12164.4, 12165.6, 12166.8, 12168.0, 12169.2, 12170.4,\r\n          12171.6, 12172.8, 12174.0, 12175.2, 12176.4, 12177.6, 12178.8,\r\n          12180.0, 12181.2, 12182.4, 12183.6, 12184.8, 12186.0, 12187.2,\r\n          12188.4, 12189.6, 12190.8, 12192.0, 12193.2, 12194.4, 12195.6,\r\n          12196.8, 12198.0, 12199.2, 12200.4, 12201.6, 12202.8, 12204.0,\r\n          12205.2, 12206.4, 12207.6, 12208.8, 12210.0, 12211.2, 12212.4,\r\n          12213.6, 12214.8, 12216.0, 12217.2, 12218.4, 12219.6, 12220.8,\r\n          12222.0, 12223.2, 12224.4, 12225.6, 12226.8, 12228.0, 12229.2,\r\n          12230.4, 12231.6, 12232.8, 12234.0, 12235.2, 12236.4, 12237.6,\r\n          12238.8, 12240.0, 12241.2, 12242.4, 12243.6, 12244.8, 12246.0,\r\n          12247.2, 12248.4, 12249.6, 12250.8, 12252.0, 12253.2, 12254.4,\r\n          12255.6, 12256.8, 12258.0, 12259.2, 12260.4, 12261.6, 12262.8,\r\n          12264.0, 12265.2, 12266.4, 12267.6, 12268.8, 12270.0, 12271.2,\r\n          12272.4, 12273.6, 12274.8, 12276.0, 12277.2, 12278.4, 12279.6,\r\n          12280.8, 12282.0, 12283.2, 12284.4, 12285.6, 12286.8, 12288.0,\r\n          12289.2, 12290.4, 12291.6, 12292.8, 12294.0, 12295.2, 12296.4,\r\n          12297.6, 12298.8, 12300.0, 12301.2, 12302.4, 12303.6, 12304.8,\r\n          12306.0, 12307.2, 12308.4, 12309.6, 12310.8, 12312.0, 12313.2,\r\n          12314.4, 12315.6, 12316.8, 12318.0, 12319.2, 12320.4, 12321.6,\r\n          12322.8, 12324.0, 12325.2, 12326.4, 12327.6, 12328.8, 12330.0,\r\n          12331.2, 12332.4, 12333.6, 12334.8, 12336.0, 12337.2, 12338.4,\r\n          12339.6, 12340.8, 12342.0, 12343.2, 12344.4, 12345.6, 12346.8,\r\n          12348.0, 12349.2, 12350.4, 12351.6, 12352.8, 12354.0, 12355.2,\r\n          12356.4, 12357.6, 12358.8, 12360.0, 12361.2, 12362.4, 12363.6,\r\n          12364.8, 12366.0, 12367.2, 12368.4, 12369.6, 12370.8, 12372.0,\r\n          12373.2, 12374.4, 12375.6, 12376.8, 12378.0, 12379.2, 12380.4,\r\n          12381.6, 12382.8, 12384.0, 12385.2, 12386.4, 12387.6, 12388.8,\r\n          12390.0, 12391.2, 12392.4, 12393.6, 12394.8, 12396.0, 12397.2,\r\n          12398.4, 12399.6, 12400.8, 12402.0, 12403.2, 12404.4, 12405.6,\r\n          12406.8, 12408.0, 12409.2, 12410.4, 12411.6, 12412.8, 12414.0,\r\n          12415.2, 12416.4, 12417.6, 12418.8, 12420.0, 12421.2, 12422.4,\r\n          12423.6, 12424.8, 12426.0, 12427.2, 12428.4, 12429.6, 12430.8,\r\n          12432.0, 12433.2, 12434.4, 12435.6, 12436.8, 12438.0, 12439.2,\r\n          12440.4, 12441.6, 12442.8, 12444.0, 12445.2, 12446.4, 12447.6,\r\n          12448.8, 12450.0, 12451.2, 12452.4, 12453.6, 12454.8, 12456.0,\r\n          12457.2, 12458.4, 12459.6, 12460.8, 12462.0, 12463.2, 12464.4,\r\n          12465.6, 12466.8, 12468.0, 12469.2, 12470.4, 12471.6, 12472.8,\r\n          12474.0, 12475.2, 12476.4, 12477.6, 12478.8, 12480.0, 12481.2,\r\n          12482.4, 12483.6, 12484.8, 12486.0, 12487.2, 12488.4, 12489.6,\r\n          12490.8, 12492.0, 12493.2, 12494.4, 12495.6, 12496.8, 12498.0,\r\n          12499.2, 12500.4, 12501.6, 12502.8, 12504.0, 12505.2, 12506.4,\r\n          12507.6, 12508.8, 12510.0, 12511.2, 12512.4, 12513.6, 12514.8,\r\n          12516.0, 12517.2, 12518.4, 12519.6, 12520.8, 12522.0, 12523.2,\r\n          12524.4, 12525.6, 12526.8, 12528.0, 12529.2, 12530.4, 12531.6,\r\n          12532.8, 12534.0, 12535.2, 12536.4, 12537.6, 12538.8, 12540.0,\r\n          12541.2, 12542.4, 12543.6, 12544.8, 12546.0, 12547.2, 12548.4,\r\n          12549.6, 12550.8, 12552.0, 12553.2, 12554.4, 12555.6, 12556.8,\r\n          12558.0, 12559.2, 12560.4, 12561.6, 12562.8, 12564.0, 12565.2,\r\n          12566.4, 12567.6, 12568.8, 12570.0, 12571.2, 12572.4, 12573.6,\r\n          12574.8, 12576.0, 12577.2, 12578.4, 12579.6, 12580.8, 12582.0,\r\n          12583.2, 12584.4, 12585.6, 12586.8, 12588.0, 12589.2, 12590.4,\r\n          12591.6, 12592.8, 12594.0, 12595.2, 12596.4, 12597.6, 12598.8,\r\n          12600.0, 12601.2, 12602.4, 12603.6, 12604.8, 12606.0, 12607.2,\r\n          12608.4, 12609.6, 12610.8, 12612.0, 12613.2, 12614.4, 12615.6,\r\n          12616.8, 12618.0, 12619.2, 12620.4, 12621.6, 12622.8, 12624.0,\r\n          12625.2, 12626.4, 12627.6, 12628.8, 12630.0, 12631.2, 12632.4,\r\n          12633.6, 12634.8, 12636.0, 12637.2, 12638.4, 12639.6, 12640.8,\r\n          12642.0, 12643.2, 12644.4, 12645.6, 12646.8, 12648.0, 12649.2,\r\n          12650.4, 12651.6, 12652.8, 12654.0, 12655.2, 12656.4, 12657.6,\r\n          12658.8, 12660.0, 12661.2, 12662.4, 12663.6, 12664.8, 12666.0,\r\n          12667.2, 12668.4, 12669.6, 12670.8, 12672.0, 12673.2, 12674.4,\r\n          12675.6, 12676.8, 12678.0, 12679.2, 12680.4, 12681.6, 12682.8,\r\n          12684.0, 12685.2, 12686.4, 12687.6, 12688.8, 12690.0, 12691.2,\r\n          12692.4, 12693.6, 12694.8, 12696.0, 12697.2, 12698.4, 12699.6,\r\n          12700.8, 12702.0, 12703.2, 12704.4, 12705.6, 12706.8, 12708.0,\r\n          12709.2, 12710.4, 12711.6, 12712.8, 12714.0, 12715.2, 12716.4,\r\n          12717.6, 12718.8, 12720.0, 12721.2, 12722.4, 12723.6, 12724.8,\r\n          12726.0, 12727.2, 12728.4, 12729.6, 12730.8, 12732.0, 12733.2,\r\n          12734.4, 12735.6, 12736.8, 12738.0, 12739.2, 12740.4, 12741.6,\r\n          12742.8, 12744.0, 12745.2, 12746.4, 12747.6, 12748.8, 12750.0,\r\n          12751.2, 12752.4, 12753.6, 12754.8, 12756.0, 12757.2, 12758.4,\r\n          12759.6, 12760.8, 12762.0, 12763.2, 12764.4, 12765.6, 12766.8,\r\n          12768.0, 12769.2, 12770.4, 12771.6, 12772.8, 12774.0, 12775.2,\r\n          12776.4, 12777.6, 12778.8, 12780.0, 12781.2, 12782.4, 12783.6,\r\n          12784.8, 12786.0, 12787.2, 12788.4, 12789.6, 12790.8, 12792.0,\r\n          12793.2, 12794.4, 12795.6, 12796.8, 12798.0, 12799.2, 12800.4,\r\n          12801.6, 12802.8, 12804.0, 12805.2, 12806.4, 12807.6, 12808.8,\r\n          12810.0, 12811.2, 12812.4, 12813.6, 12814.8, 12816.0, 12817.2,\r\n          12818.4, 12819.6, 12820.8, 12822.0, 12823.2, 12824.4, 12825.6,\r\n          12826.8, 12828.0, 12829.2, 12830.4, 12831.6, 12832.8, 12834.0,\r\n          12835.2, 12836.4, 12837.6, 12838.8, 12840.0, 12841.2, 12842.4,\r\n          12843.6, 12844.8, 12846.0, 12847.2, 12848.4, 12849.6, 12850.8,\r\n          12852.0, 12853.2, 12854.4, 12855.6, 12856.8, 12858.0, 12859.2,\r\n          12860.4, 12861.6, 12862.8, 12864.0, 12865.2, 12866.4, 12867.6,\r\n          12868.8, 12870.0, 12871.2, 12872.4, 12873.6, 12874.8, 12876.0,\r\n          12877.2, 12878.4, 12879.6, 12880.8, 12882.0, 12883.2, 12884.4,\r\n          12885.6, 12886.8, 12888.0, 12889.2, 12890.4, 12891.6, 12892.8,\r\n          12894.0, 12895.2, 12896.4, 12897.6, 12898.8, 12900.0, 12901.2,\r\n          12902.4, 12903.6, 12904.8, 12906.0, 12907.2, 12908.4, 12909.6,\r\n          12910.8, 12912.0, 12913.2, 12914.4, 12915.6, 12916.8, 12918.0,\r\n          12919.2, 12920.4, 12921.6, 12922.8, 12924.0, 12925.2, 12926.4,\r\n          12927.6, 12928.8, 12930.0, 12931.2, 12932.4, 12933.6, 12934.8,\r\n          12936.0, 12937.2, 12938.4, 12939.6, 12940.8, 12942.0, 12943.2,\r\n          12944.4, 12945.6, 12946.8, 12948.0, 12949.2, 12950.4, 12951.6,\r\n          12952.8, 12954.0, 12955.2, 12956.4, 12957.6, 12958.8, 12960.0,\r\n          12961.2, 12962.4, 12963.6, 12964.8, 12966.0, 12967.2, 12968.4,\r\n          12969.6, 12970.8, 12972.0, 12973.2, 12974.4, 12975.6, 12976.8,\r\n          12978.0, 12979.2, 12980.4, 12981.6, 12982.8, 12984.0, 12985.2,\r\n          12986.4, 12987.6, 12988.8, 12990.0, 12991.2, 12992.4, 12993.6,\r\n          12994.8, 12996.0, 12997.2, 12998.4, 12999.6, 13000.8, 13002.0,\r\n          13003.2, 13004.4, 13005.6, 13006.8, 13008.0, 13009.2, 13010.4,\r\n          13011.6, 13012.8, 13014.0, 13015.2, 13016.4, 13017.6, 13018.8,\r\n          13020.0, 13021.2, 13022.4, 13023.6, 13024.8, 13026.0, 13027.2,\r\n          13028.4, 13029.6, 13030.8, 13033.2, 13034.4, 13035.6, 13036.8,\r\n          13038.0, 13039.2, 13040.4, 13041.6, 13042.8, 13044.0, 13045.2,\r\n          13046.4, 13047.6, 13048.8, 13050.0, 13051.2, 13052.4, 13053.6,\r\n          13054.8, 13056.0, 13057.2, 13058.4, 13059.6, 13060.8, 13062.0,\r\n          13063.2, 13064.4, 13065.6, 13066.8, 13068.0, 13069.2, 13070.4,\r\n          13071.6, 13072.8, 13074.0, 13075.2, 13076.4, 13077.6, 13078.8,\r\n          13080.0, 13081.2, 13082.4, 13083.6, 13084.8, 13086.0, 13087.2,\r\n          13088.4, 13089.6, 13090.8, 13092.0, 13093.2, 13094.4, 13095.6,\r\n          13096.8, 13098.0, 13099.2, 13100.4, 13101.6, 13102.8, 13104.0,\r\n          13105.2, 13106.4, 13107.6, 13108.8, 13110.0, 13111.2, 13112.4,\r\n          13113.6, 13114.8, 13116.0, 13117.2, 13118.4, 13119.6, 13120.8,\r\n          13122.0, 13123.2, 13124.4, 13125.6, 13126.8, 13128.0, 13129.2,\r\n          13130.4, 13131.6, 13132.8, 13134.0, 13135.2, 13136.4, 13137.6,\r\n          13138.8, 13140.0, 13141.2, 13142.4, 13143.6, 13144.8, 13146.0,\r\n          13147.2, 13148.4, 13149.6, 13150.8, 13152.0, 13153.2, 13154.4,\r\n          13155.6, 13156.8, 13158.0, 13159.2, 13160.4, 13161.6, 13162.8,\r\n          13164.0, 13165.2, 13166.4, 13167.6, 13168.8, 13170.0, 13171.2,\r\n          13172.4, 13173.6, 13174.8, 13176.0, 13177.2, 13178.4, 13179.6,\r\n          13180.8, 13182.0, 13183.2, 13184.4, 13185.6, 13186.8, 13188.0,\r\n          13189.2, 13190.4, 13191.6, 13192.8, 13194.0, 13195.2, 13196.4,\r\n          13197.6, 13198.8, 13200.0, 13201.2, 13202.4, 13203.6, 13204.8,\r\n          13206.0, 13207.2, 13208.4, 13209.6, 13210.8, 13212.0, 13213.2,\r\n          13214.4, 13215.6, 13216.8, 13218.0, 13219.2, 13220.4, 13221.6,\r\n          13222.8, 13224.0, 13225.2, 13226.4, 13227.6, 13228.8, 13230.0,\r\n          13231.2, 13232.4, 13233.6, 13234.8, 13236.0, 13237.2, 13238.4,\r\n          13239.6, 13240.8, 13242.0, 13243.2, 13244.4, 13245.6, 13246.8,\r\n          13248.0, 13249.2, 13250.4, 13251.6, 13252.8, 13254.0, 13255.2,\r\n          13256.4, 13257.6, 13258.8, 13260.0, 13261.2, 13262.4, 13263.6,\r\n          13264.8, 13266.0, 13267.2, 13268.4, 13269.6, 13270.8, 13272.0,\r\n          13273.2, 13274.4, 13275.6, 13276.8, 13278.0, 13279.2, 13280.4,\r\n          13281.6, 13282.8, 13284.0, 13285.2, 13286.4, 13287.6, 13288.8,\r\n          13290.0, 13291.2, 13292.4, 13293.6, 13294.8, 13296.0, 13297.2,\r\n          13298.4, 13299.6, 13300.8, 13302.0, 13303.2, 13304.4, 13305.6,\r\n          13306.8, 13308.0, 13309.2, 13310.4, 13311.6, 13312.8, 13314.0,\r\n          13315.2, 13316.4, 13317.6, 13318.8, 13320.0, 13321.2, 13322.4,\r\n          13323.6, 13324.8, 13326.0, 13327.2, 13328.4, 13329.6, 13330.8,\r\n          13332.0, 13333.2, 13334.4, 13335.6, 13336.8, 13338.0, 13339.2,\r\n          13340.4, 13341.6, 13342.8, 13344.0, 13345.2, 13346.4, 13347.6,\r\n          13348.8, 13350.0, 13351.2, 13352.4, 13353.6, 13354.8, 13356.0,\r\n          13357.2, 13358.4, 13359.6, 13360.8, 13362.0, 13363.2, 13364.4,\r\n          13365.6, 13366.8, 13368.0, 13369.2, 13370.4, 13371.6, 13372.8,\r\n          13374.0, 13375.2, 13376.4, 13377.6, 13378.8, 13380.0, 13381.2,\r\n          13382.4, 13383.6, 13384.8, 13386.0, 13387.2, 13388.4, 13389.6,\r\n          13390.8, 13392.0, 13393.2, 13394.4, 13395.6, 13396.8, 13398.0,\r\n          13399.2, 13400.4, 13401.6, 13402.8, 13404.0, 13405.2, 13406.4,\r\n          13407.6, 13408.8, 13410.0, 13411.2, 13412.4, 13413.6, 13414.8,\r\n          13416.0, 13417.2, 13418.4, 13419.6, 13420.8, 13422.0, 13423.2,\r\n          13424.4, 13425.6, 13426.8, 13428.0, 13429.2, 13430.4, 13431.6,\r\n          13432.8, 13434.0, 13435.2, 13436.4, 13437.6, 13438.8, 13440.0,\r\n          13441.2, 13442.4, 13443.6, 13444.8, 13446.0, 13447.2, 13448.4,\r\n          13449.6, 13450.8, 13452.0, 13453.2, 13454.4, 13455.6, 13456.8,\r\n          13458.0, 13459.2, 13460.4, 13461.6, 13462.8, 13464.0, 13465.2,\r\n          13466.4, 13467.6, 13468.8, 13470.0, 13471.2, 13472.4, 13473.6,\r\n          13474.8, 13476.0, 13477.2, 13478.4, 13479.6, 13480.8, 13482.0,\r\n          13483.2, 13484.4, 13485.6, 13486.8, 13488.0, 13489.2, 13490.4,\r\n          13491.6, 13492.8, 13494.0, 13495.2, 13496.4, 13497.6, 13498.8,\r\n          13500.0, 13501.2, 13502.4, 13503.6, 13504.8, 13506.0, 13507.2,\r\n          13508.4, 13509.6, 13510.8, 13512.0, 13513.2, 13514.4, 13515.6,\r\n          13516.8, 13518.0, 13519.2, 13520.4, 13521.6, 13522.8, 13524.0,\r\n          13525.2, 13526.4, 13527.6, 13528.8, 13530.0, 13531.2, 13532.4,\r\n          13533.6, 13534.8, 13536.0, 13537.2, 13538.4, 13539.6, 13540.8,\r\n          13542.0, 13543.2, 13544.4, 13545.6, 13546.8, 13548.0, 13549.2,\r\n          13550.4, 13551.6, 13552.8, 13554.0, 13555.2, 13556.4, 13557.6,\r\n          13558.8, 13560.0, 13561.2, 13562.4, 13563.6, 13564.8, 13566.0,\r\n          13567.2, 13568.4, 13569.6, 13570.8, 13572.0, 13573.2, 13574.4,\r\n          13575.6, 13576.8, 13578.0, 13579.2, 13580.4, 13581.6, 13582.8,\r\n          13584.0, 13585.2, 13586.4, 13587.6, 13588.8, 13590.0, 13591.2,\r\n          13592.4, 13593.6, 13594.8, 13596.0, 13597.2, 13598.4, 13599.6,\r\n          13600.8, 13602.0, 13603.2, 13604.4, 13605.6, 13606.8, 13608.0,\r\n          13609.2, 13610.4, 13611.6, 13612.8, 13614.0, 13615.2, 13616.4,\r\n          13617.6, 13618.8, 13620.0, 13621.2, 13622.4, 13623.6, 13624.8,\r\n          13626.0, 13627.2, 13628.4, 13629.6, 13630.8, 13632.0, 13633.2,\r\n          13634.4, 13635.6, 13636.8, 13638.0, 13639.2, 13640.4, 13641.6,\r\n          13642.8, 13644.0, 13645.2, 13646.4, 13647.6, 13648.8, 13650.0,\r\n          13651.2, 13652.4, 13653.6, 13654.8, 13656.0, 13657.2, 13658.4,\r\n          13659.6, 13660.8, 13662.0, 13663.2, 13664.4, 13665.6, 13666.8,\r\n          13668.0, 13669.2, 13670.4, 13671.6, 13672.8, 13674.0, 13675.2,\r\n          13676.4, 13677.6, 13678.8, 13680.0, 13681.2, 13682.4, 13683.6,\r\n          13684.8, 13686.0, 13687.2, 13688.4, 13689.6, 13690.8, 13692.0,\r\n          13693.2, 13694.4, 13695.6, 13696.8, 13698.0, 13699.2, 13700.4,\r\n          13701.6, 13702.8, 13704.0, 13705.2, 13706.4, 13707.6, 13708.8,\r\n          13710.0, 13711.2, 13712.4, 13713.6, 13714.8, 13716.0, 13717.2,\r\n          13718.4, 13719.6, 13720.8, 13722.0, 13723.2, 13724.4, 13725.6,\r\n          13726.8, 13728.0, 13729.2, 13730.4, 13731.6, 13732.8, 13734.0,\r\n          13735.2, 13736.4, 13737.6, 13738.8, 13740.0, 13741.2, 13742.4,\r\n          13743.6, 13744.8, 13746.0, 13747.2, 13748.4, 13749.6, 13749.6,\r\n          13750.8, 13752.0, 13753.2, 13754.4, 13755.6, 13758.0, 13761.6,\r\n          13764.0, 13765.2, 13767.6, 13768.8, 13770.0, 13771.2, 13772.4,\r\n          13773.6, 13776.0, 13779.6, 13785.6, 13788.0, 13790.4, 13792.8,\r\n          13795.2, 13798.8, 13810.8, 13813.2, 13815.6, 13818.0, 13821.6,\r\n          13834.8, 13838.4, 13842.0, 13858.8, 13860.0\r\n        ]\r\n      },\r\n      \"additionalData\": {\r\n        \"step type\": \"standard\",\r\n        \"category\": \"4\",\r\n        \"last cmd\": \"MFs TimeMax\",\r\n        \"quality code\": \"  131\",\r\n        \"docu buffer\": \"0\"\r\n      },\r\n      \"context\": {\r\n        \"angle\": {\r\n          \"limits\": {\r\n            \"target\": 720.0,\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 99999.0\r\n          }\r\n        },\r\n        \"time\": {\r\n          \"limits\": {\r\n            \"upperWarn\": 10.0\r\n          }\r\n        },\r\n        \"torque\": {\r\n          \"limits\": {\r\n            \"lowerWarn\": 0.0,\r\n            \"upperWarn\": 2.0\r\n          }\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"ts\": \"{{$isoTimestamp}}\",\r\n      \"specialValues\": [\r\n        {\r\n          \"name\": \"MFs_TimeMax\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TimeMax\": 10.0,\r\n            \"MFs_TimeMax_Limit\": 10.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MF_TorqueMin\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MF_TorqueMin\": 0.05,\r\n            \"MF_TorqueMin_Limit\": 0.0\r\n          }\r\n        },\r\n        {\r\n          \"name\": \"MFs_TorqueMax\",\r\n          \"time\": 0,\r\n          \"value\": {\r\n            \"MFs_TorqueMax\": 0.05,\r\n            \"MFs_TorqueMax_Limit\": 2.0\r\n          }\r\n        }\r\n      ],\r\n      \"series\": {\r\n        \"dummy\": []\r\n      }\r\n    }\r\n  ]\r\n}\r\n",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/connectivity/messaging/v1/:tenant_id/ppmp/process",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"connectivity",
								"messaging",
								"v1",
								":tenant_id",
								"ppmp",
								"process"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						},
						"description": "TestAuthorizationReadFromBase"
					},
					"response": []
				},
				{
					"name": "Send OPP Shopfloor MSG",
					"request": {
						"auth": {
							"type": "basic",
							"basic": {
								"username": "",
								"password": ""
							}
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"header\": {\r\n        \"spec\": \"urn:spec://OPP/V1\", // mandatory\r\n        \"ts\": \"2021-12-31T08:10:49.41+02:00\", //optional for sender, \r\n        \"msgId\": \"X_Y_Z\", //not required to be unique but must be defined by sender\r\n        \"sender\": \"94E181EC-BDED-438E-B414-A6B411DCF790\", //asset/device/clientId not required to be unique but must be known to machine connectivity otherwise not authorized, mandatory\r\n        \"senderDetail\": \"line20 station50\" // optional string\r\n    },\r\n    \"body\": [\r\n        {\r\n            \"spec\": \"urn:spec://shopfloor-management/changeover/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:changeover\",            \r\n            \"content\": {\r\n                \"changeOver\": {\r\n                    \"ts\": \"2021-12-31T08:10:47.13+02:00\",\r\n                    \"typeNo\": \"123456789\",\r\n                    \"typeVar\": \"A\",\r\n                    \"state\": 1\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"spec\": \"urn:spec://shopfloor-management/error/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:error\",            \r\n            \"content\": {\r\n                \"errorInfo\": {\r\n                    \"errorNo\": 236996,\r\n                    \"errorText\": \"clip Sensor expected at WRKPOS\",\r\n                    \"errorType\": 1,\r\n                    \"errorState\": 0\r\n                },\r\n                \"deviceInfo\": {\r\n                    \"operationMode\": 1,\r\n                    \"modeOn\": true,\r\n                    \"typeNo\": \"123456789\",\r\n                    \"typeVar\": \"A\"\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"spec\": \"urn:spec://shopfloor-management/group-of-parts-processed/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:group-of-parts-processed\",            \r\n            \"content\": {\r\n                \"partgroup\": {\r\n                    \"resultDate\": \"2021-12-31T08:00:00.00+02:00\",\r\n                    \"typeNo\": \"1038350767\",\r\n                    \"typeVar\": \"0001\",\r\n                    \"processNo\": 1908,\r\n                    \"parts\": [\r\n                        {\r\n                            \"identifier\": \"0713600000001111\",\r\n                            \"nokBits\": 0,\r\n                            \"resultState\": 1,\r\n                            \"resultDate\": \"2021-12-31T08:00:10.00+02:00\"\r\n                        },\r\n                        {\r\n                            \"identifier\": \"0713600000002222\",\r\n                            \"nokBits\": 0,\r\n                            \"resultState\": 1,\r\n                            \"resultDate\": \"2021-12-31T08:00:20.00+02:00\"\r\n                        },\r\n                        {\r\n                            \"identifier\": \"0713600000003333\",\r\n                            \"nokBits\": 0,\r\n                            \"resultState\": 1,\r\n                            \"resultDate\": \"2021-12-31T08:00:20.00+02:00\"\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"spec\": \"urn:spec://shopfloor-management/multi-part-processed/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:multi-part-processed\",            \r\n            \"content\": {\r\n                \"multipart\": {\r\n                    \"resultDate\": \"2021-12-31T08:00:00.00+02:00\",\r\n                    \"typeNo\": \"1038350767\",\r\n                    \"typeVar\": \"0001\",\r\n                    \"processNo\": 1908,\r\n                    \"parts\": [\r\n                        {\r\n                            \"nokBits\": 0,\r\n                            \"resultState\": 1,\r\n                            \"quantity\": 517\r\n                        },\r\n                        {\r\n                            \"nokBits\": 17,\r\n                            \"resultState\": 2,\r\n                            \"quantity\": 12\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"spec\": \"urn:spec://shopfloor-management/operationmode-changed/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:operationmode-changed\",            \r\n            \"content\": {\r\n                \"operationModeChanged\": {\r\n                    \"operationMode\": 1,\r\n                    \"modeOn\": false,\r\n                    \"typeNo\": \"123456789\",\r\n                    \"typeVar\": \"A\"\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \r\n            \"spec\": \"urn:spec://shopfloor-management/part-processed/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:part-processed\",            \r\n            \"content\": {\r\n                \"partCounterInfo\": {\r\n                    \"identifier\": \"0713600000005380\",\r\n                    \"typeNo\": \"1038350767\",\r\n                    \"typeVar\": \"0001\",\r\n                    \"nokBits\": 0,\r\n                    \"resultState\": 1,\r\n                    \"resultDate\": \"2021-12-31T08:10:49.41+02:00\",\r\n                    \"processNo\": 1908\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \r\n            \"spec\": \"urn:spec://shopfloor-management/partmissing/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:partmissing\",            \r\n            \"content\": {\r\n                \"missingPartsInfo\": {\r\n                    \"missingPartsState\": 0,\r\n                    \"missingPartsType\": 1\r\n                },\r\n                \"deviceInfo\": {\r\n                    \"operationMode\": 1,\r\n                    \"modeOn\": true,\r\n                    \"typeNo\": \"123456789\",\r\n                    \"typeVar\": \"A\"\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \r\n            \"spec\": \"urn:spec://shopfloor-management/jam/request/v09\",\r\n            \"type\": \"observation:shopfloor-management:jam\",            \r\n            \"content\": {\r\n                \"jamInfo\": {\r\n                    \"jamState\": 0\r\n                },\r\n                \"deviceInfo\": {\r\n                    \"operationMode\": 1,\r\n                    \"modeOn\": true,\r\n                    \"typeNo\": \"123456789\",\r\n                    \"typeVar\": \"A\"\r\n                }\r\n            }\r\n        }        \r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/connectivity/messaging/v1/:tenant_id/oppml",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"connectivity",
								"messaging",
								"v1",
								":tenant_id",
								"oppml"
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						},
						"description": "TestAuthorizationReadFromBase"
					},
					"response": []
				},
				{
					"name": "Send OPP measurement observation",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"header\": {\r\n        \"spec\": \"urn:spec://OPP/V0.9\", // mandatory\r\n        \"ts\": \"{{$isoTimestamp}}\", //optional for sender, \r\n        \"msgId\": \"sendMSG\", //not required to be unique but must be defined by sender\r\n        \"sender\": \"{{device_technical_id}}\", //asset/device/clientId not required to be unique but must be known to machine connectivity otherwise not authorized, mandatory\r\n        \"senderDetail\": \"line20 station50\" // optional string\r\n    },\r\n    \"body\": [\r\n        {\r\n            \"spec\": \"https://to-be-determined-location-of-opp/schema/domains/machine-equipment/measurement-time-series/request/v09\",\r\n            \"type\": \"observation:machine-equipment:measurement-time-series\",\r\n            \"ts\": \"{{$isoTimestamp}}\",\r\n            \"content\": {\r\n                \"part\": {\r\n                    \"identifier\": \"123a-999\",\r\n                    \"typeNo\": \"1233456789\",\r\n                    \"typeVar\": \"T123\",\r\n                    \"operationMode\": 1, // 1 = Automatic, 2 = Step, 3 = Manual, 4 = Special\r\n                    \"partResult\": 4, // 4 = PartOk\r\n                    \"additionalData\": {\r\n                        \"customValue\": 123\r\n                    }\r\n                },\r\n                \"measurementTimeSeries\": [\r\n                    {\r\n                        \"ts\": \"{{$isoTimestamp}}\",\r\n                        \"timeOffsets\": [\r\n                            0,\r\n                            1,\r\n                            2\r\n                        ],\r\n                        \"name\": \"temperature\",\r\n                        \"values\": [\r\n                            0.8,\r\n                            -0.1,\r\n                            0.5\r\n                        ],\r\n                        \"measurementType\": 1, // 0 = absolute (default), 1 = delta\r\n                        \"measurementUnit\": \"°C\",\r\n                        \"limits\": {\r\n                            \"lowerError\": 0,\r\n                            \"lowerWarn\": 0.1,\r\n                            \"target\": 0.5,\r\n                            \"upperWarn\": 0.9,\r\n                            \"upperError\": 1\r\n                        }\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/connectivity/messaging/v1/:tenantID/oppml",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"connectivity",
								"messaging",
								"v1",
								":tenantID",
								"oppml"
							],
							"variable": [
								{
									"key": "tenantID",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								}
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "basic",
				"basic": {}
			}
		},
		{
			"name": "Condition Monitoring",
			"item": [
				{
					"name": "Get Device Measurements",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{base_url}}/cpm/INL_CY/rest/v1/tenants/:tenant_id/devices/:device_id_in_mdm/measurements?devicePropertyNames=pressure&from=2024-02-27T09:51:02.516Z&to=2024-02-27T14:51:02.516Z&limit=10000",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"cpm",
								"INL_CY",
								"rest",
								"v1",
								"tenants",
								":tenant_id",
								"devices",
								":device_id_in_mdm",
								"measurements"
							],
							"query": [
								{
									"key": "devicePropertyNames",
									"value": "pressure"
								},
								{
									"key": "from",
									"value": "2024-02-27T09:51:02.516Z"
								},
								{
									"key": "to",
									"value": "2024-02-27T14:51:02.516Z"
								},
								{
									"key": "limit",
									"value": "10000"
								}
							],
							"variable": [
								{
									"key": "tenant_id",
									"value": "{{tenant_id}}",
									"description": "(Required) ID of the tenant."
								},
								{
									"key": "device_id_in_mdm",
									"value": "{{device_id_in_mdm}}",
									"description": "(Required) ID of the device."
								}
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "oauth2",
				"oauth2": {
					"scope": "openid aud:{{condition_monitoring_client_id}}",
					"accessTokenUrl": "{{base_url}}/iam/access-management/v1/tenants/{{tenant_id}}/openid-connect/token",
					"clientSecret": "{{client_secret}}",
					"clientId": "{{client_id}}",
					"tokenName": "cpm",
					"challengeAlgorithm": "S256",
					"grant_type": "client_credentials",
					"addTokenTo": "header",
					"client_authentication": "header"
				}
			}
		}
	]
}