[{"data":1,"prerenderedAt":7938},["ShallowReactive",2],{"blog-\u002Fblog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red":3,"featureCatalog":7010,"changelog-titles":7403,"blog-all-for-related":7937},{"id":4,"title":5,"authors":6,"body":8,"cta":6980,"date":6984,"description":6985,"extension":6986,"features":6987,"image":6988,"lastUpdated":6989,"meta":6990,"navigation":6996,"path":6997,"release":6987,"seo":6998,"sitemap":6999,"stem":7000,"subtitle":7001,"tags":7002,"tldr":7008,"video":6987,"__hash__":7009},"blog\u002Fblog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red.md","Bridging OPC UA Data to MQTT with Node-RED (2026)",[7],"sumit-shinde",{"type":9,"value":10,"toc":6968},"minimark",[11,15,18,23,35,38,41,54,59,62,66,102,106,109,130,138,147,156,165,173,213,216,220,223,242,250,292,296,299,309,317,333,341,4868,4872,4875,4878,4911,4919,6923,6927,6964],[12,13,14],"p",{},"Have you ever found yourself trying to connect old industrial systems with new IoT tools? This is a common scenario when trying to digitally transform while setting up your Unified Name Space. Maybe you have machinery that uses OPC UA, but your data is sent through MQTT. How do you make these systems work together smoothly?",[12,16,17],{},"In this guide, we'll demonstrate how to use Node-RED to bridge OPC UA data to MQTT. This integration will streamline your data flow and enhance real-time monitoring, helping you modernize your setup and improve communication between systems.",[19,20,22],"h3",{"id":21},"why-bridge-opc-ua-to-mqtt","Why Bridge OPC UA to MQTT",[12,24,25,31],{},[26,27],"img",{"alt":28,"dataZoomable":29,"src":30},"Diagram showing the data flow when bridging OPC UA to MQTT to enable communication between non-OPC UA compatible systems and devices","","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fopc-ua-to-mqtt.png",[32,33,34],"em",{},"Diagram showing the data flow when bridging OPC UA to MQTT to enable communication between non-OPC UA compatible systems and devices.",[12,36,37],{},"In modern industrial environments, integrating systems with different communication protocols can be a significant challenge. For example, a CNC machine on the factory floor might use OPC UA, while some cloud solutions, edge devices, and other systems, such as custom ERP solutions and IoT applications, might rely on MQTT protocol. This is where bridging OPC UA to MQTT becomes highly beneficial.",[12,39,40],{},"By converting OPC UA data into MQTT messages, you make the data from the CNC machine accessible to a broader range of systems that use MQTT, which is a more universally supported messaging protocol. This bridging solution simplifies the integration process, allowing diverse systems to communicate effectively without needing direct OPC UA support.",[12,42,43,47,48,53],{},[44,45,46],"strong",{},"Node-RED"," is perfect for this job. It can connect both OPC UA and MQTT, making it easy to transform and route data between different systems. Its flexibility and support for many protocols make it great for integrating various industrial hardware and software. For more on how Node-RED can improve industrial operations, check out ",[49,50,52],"a",{"href":51},"\u002Fblog\u002F2024\u002F07\u002Fbuilding-on-flowfuse-devices\u002F","Building on FlowFuse: Remote Device Monitoring",".",[55,56,58],"h2",{"id":57},"bridging-opc-ua-data-to-mqtt-with-node-red","Bridging OPC UA Data to MQTT with Node-RED",[12,60,61],{},"In this section, I'll demonstrate how to bridge OPC UA data to MQTT using Node-RED. We will use simulated OPC UA server data from a CNC machine as an example. The goal is to show how you can efficiently transfer this data to an MQTT broker, making it accessible to various applications and systems.",[19,63,65],{"id":64},"prerequisite","Prerequisite",[67,68,69,79,87,95],"ul",{},[70,71,72,73,53],"li",{},"OPC UA Server: Make sure you have an OPC UA server configured and running with the necessary data. For this blog, we'll use the Prosys OPC UA Simulation Server, which simulates data from CNC machines designed for testing OPC UA client applications and learning the technology. You can download it from ",[49,74,78],{"href":75,"rel":76},"https:\u002F\u002Fprosysopc.com\u002Fproducts\u002Fopc-ua-simulation-server\u002F",[77],"nofollow","here",[70,80,81,82,53],{},"FlowFuse Account: A FlowFuse account lets you quickly create, deploy, and manage Node-RED instances in the cloud. ",[49,83,86],{"href":84,"rel":85},"https:\u002F\u002Fapp.flowfuse.com\u002Faccount\u002Fcreate?utm_campaign=60718323-BCTA&utm_source=blog&utm_medium=cta&utm_term=high_intent&utm_content=Bridging%20OPC%20UA%20Data%20to%20MQTT%20with%20Node-RED",[77],"sign up now",[70,88,89,94],{},[49,90,93],{"href":91,"rel":92},"https:\u002F\u002Fflows.nodered.org\u002Fnode\u002Fnode-red-contrib-opcua",[77],"node-red-contrib-opcua",": install the node-red contrib package that will enable integration of opcua in Node-RED.",[70,96,97,98,53],{},"MQTT Broker: We’ll need an MQTT broker for data communication. FlowFuse offers an integrated MQTT Broker Service within Platform for easy setup. For more details, check out ",[49,99,101],{"href":100},"\u002Fblog\u002F2024\u002F10\u002Fannouncement-mqtt-broker\u002F","FlowFuse's MQTT Broker Announcement",[19,103,105],{"id":104},"retrieving-data-from-the-opc-ua-server","Retrieving Data from the OPC UA Server",[12,107,108],{},"To begin retrieving data from your OPC UA server using Node-RED, follow these steps:",[110,111,112,119],"ol",{},[70,113,114,115,118],{},"Drag the ",[44,116,117],{},"inject"," node onto the canvas.",[70,120,114,121,124,125,129],{},[44,122,123],{},"change"," node onto the canvas and double-click on the node to open its configuration settings. Set the ",[126,127,128],"code",{},"msg.topic"," to the node ID and datatype of the property you wish to read.",[12,131,132,136],{},[26,133],{"alt":134,"dataZoomable":29,"src":135},"(Left) Image of the Change node setting the 'msg.topic' to retrieve the cycle time data and (Right) the OPC UA Prosys interface.","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fchange-node-setting-nodeid-datatype.png",[32,137,134],{},[110,139,141],{"start":140},2,[70,142,114,143,146],{},[44,144,145],{},"OpcUa-Client"," node onto the canvas. Double-click on it to open its configuration settings. Click the \"+\" icon next to the Endpoint field and enter the URL of your running OPC UA server. Configure the security policy and mode according to your server setup. If you use the Prosys OPC UA Simulation Server and have not enabled any security features, you can leave the security policy and mode as \"None.\"",[12,148,149,153],{},[26,150],{"alt":151,"dataZoomable":29,"src":152},"Configuring opc-ua client node with the opc ua server endpoint","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fopc-ua-config.png",[32,154,155],{},"Configuring opc-ua node with the opc ua server endpoint",[110,157,159],{"start":158},3,[70,160,161,162,164],{},"In the ",[44,163,145],{}," node settings, select the action type as \"READ.\" This instructs Node-RED to read data from the OPC UA server.",[12,166,167,171],{},[26,168],{"alt":169,"dataZoomable":29,"src":170},"Configuring OpcUa-Client node to select the read operation","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fopc-ua-config2.png",[32,172,169],{},[110,174,176,179,185,210],{"start":175},4,[70,177,178],{},"If your OPC UA server uses security features, specify the path to your certificate files in the relevant fields. If no security is configured, this step can be skipped.",[70,180,114,181,184],{},[44,182,183],{},"debug"," node onto the canvas. The output will help you verify the data retrieved from the OPC UA server.",[70,186,187,188,190,191,193,194,190,196,198,199,190,201,203,204,206,207,209],{},"Connect the output of the ",[44,189,117],{}," node to the input of the ",[44,192,123],{}," node and the output of the ",[44,195,123],{},[44,197,145],{}," node. Then, connect the output of the ",[44,200,145],{},[44,202,183],{}," node. This setup ensures that when the ",[44,205,117],{}," node triggers, it sends data to the ",[44,208,145],{}," node, and the results are displayed in the Debug node.",[70,211,212],{},"Deploy the flow by clicking the \"Deploy\" button in the top right corner. To test the setup, press the Inject button.",[12,214,215],{},"You can follow the same steps to retrieve other property values from the OPC UA server. In this example, we are retrieving four simulated data properties: the cycle time, temperature, and spindle speed of the simulated CNC machine. Your setup might differ depending on the properties and data available on your OPC UA server.",[19,217,219],{"id":218},"transforming-and-aggregating-data","Transforming and Aggregating Data",[12,221,222],{},"Once you have successfully retrieved data from your OPC UA server, the next step is to transform and aggregate this data to make it suitable for publishing to an MQTT broker. This demonstration, we will aggregate the retrieved individual property values into a single object. Depending on your specific needs, you might choose to split the object properties and send them separately or perform various calculations and transformations on the data.",[110,224,225,229],{},[70,226,114,227,118],{},[44,228,123],{},[70,230,231,232,234,235,237,238,241],{},"Double-click on the node and set ",[126,233,128],{}," to the name of the property you want to set for the retrieved data. In this context, set ",[126,236,128],{}," to ",[126,239,240],{},"'cycle-time'",", which will be the key in the object that we will create.",[12,243,244,247],{},[26,245],{"alt":246,"dataZoomable":29,"src":135},"Setting the msg.topic with the Change node to retrieve data from the OPC UA server.",[32,248,249],{},"Setting the msg.topic with the change node to retrieve data from the OPC UA server.",[110,251,252,268,282,289],{"start":158},[70,253,114,254,257,258,261,262,264,265,267],{},[44,255,256],{},"join"," node onto the canvas. Set the mode to manual, with the option to create ",[126,259,260],{},"msg.payload"," using the values of ",[126,263,128],{}," as keys. Set the count to 3 and ensure that the interval for all of the ",[44,266,117],{}," nodes triggering data retrieval is the same. This ensures that the data is collected and aggregated correctly at the same time.",[70,269,187,270,272,273,275,276,278,279,281],{},[44,271,145],{}," node (which retrieves the data) to the input of the ",[44,274,123],{}," node. For example, if I have set the ",[44,277,123],{}," node for the 'cycle-time' data property, connect it to the ",[44,280,145],{}," node that retrieves this data.",[70,283,187,284,190,286,288],{},[44,285,123],{},[44,287,256],{}," node.",[70,290,291],{},"Repeat this process for all of your data properties.",[19,293,295],{"id":294},"sending-data-to-the-mqtt-broker","Sending Data to the MQTT Broker",[12,297,298],{},"Now, in this section, we will show you how to send the collected data to an MQTT broker:",[110,300,301,306],{},[70,302,114,303,118],{},[44,304,305],{},"mqtt out",[70,307,308],{},"Double-click on it and configure it with your MQTT broker details.",[12,310,311,315],{},[26,312],{"alt":313,"dataZoomable":29,"src":314},"Configuring the mqtt out node with broker information","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-out-node-config.png",[32,316,313],{},[110,318,319,324,330],{"start":158},[70,320,321,322,288],{},"Set the topic for your data in the ",[44,323,305],{},[70,325,187,326,190,328,288],{},[44,327,256],{},[44,329,305],{},[70,331,332],{},"Deploy the flow. After deploying, you will see the status \"connected\" with a green dot at the bottom of each node, indicating that you have successfully connected to your MQTT broker.",[12,334,335,339],{},[26,336],{"alt":337,"dataZoomable":29,"src":338},"Image showing the successful bridging of OPC UA data to MQTT","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fopcua-to-mqtt.gif",[32,340,337],{},[342,343,344],"render-flow",{},[345,346,350],"pre",{"className":347,"code":348,"language":349,"meta":29,"style":29},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[{\"id\":\"a099aefb08837e70\",\"type\":\"OpcUa-Client\",\"z\":\"807758ec576fbfd8\",\"endpoint\":\"9dd56eda04f5c5b5\",\"action\":\"read\",\"deadbandtype\":\"a\",\"deadbandvalue\":1,\"time\":10,\"timeUnit\":\"s\",\"certificate\":\"n\",\"localfile\":\"\",\"localkeyfile\":\"\",\"securitymode\":\"None\",\"securitypolicy\":\"None\",\"useTransport\":false,\"maxChunkCount\":1,\"maxMessageSize\":8192,\"receiveBufferSize\":8192,\"sendBufferSize\":8192,\"name\":\"\",\"x\":480,\"y\":320,\"wires\":[[\"f5fd1ffafdfe790f\"],[]]},{\"id\":\"1aa02b27b99dfe9d\",\"type\":\"mqtt out\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"topic\":\"\u002Fmanufacturing\u002Fcnc\",\"qos\":\"2\",\"retain\":\"true\",\"respTopic\":\"\",\"contentType\":\"\",\"userProps\":\"\",\"correl\":\"\",\"expiry\":\"\",\"broker\":\"abd4e6202945fee3\",\"x\":1390,\"y\":380,\"wires\":[]},{\"id\":\"d565ae620d90498a\",\"type\":\"OpcUa-Client\",\"z\":\"807758ec576fbfd8\",\"endpoint\":\"9dd56eda04f5c5b5\",\"action\":\"read\",\"deadbandtype\":\"a\",\"deadbandvalue\":1,\"time\":10,\"timeUnit\":\"s\",\"certificate\":\"n\",\"localfile\":\"\",\"localkeyfile\":\"\",\"securitymode\":\"None\",\"securitypolicy\":\"None\",\"useTransport\":false,\"maxChunkCount\":1,\"maxMessageSize\":8192,\"receiveBufferSize\":8192,\"sendBufferSize\":8192,\"name\":\"\",\"x\":480,\"y\":400,\"wires\":[[\"fc4b83a8a0be3a35\"],[]]},{\"id\":\"0e0614ada3269627\",\"type\":\"OpcUa-Client\",\"z\":\"807758ec576fbfd8\",\"endpoint\":\"9dd56eda04f5c5b5\",\"action\":\"read\",\"deadbandtype\":\"a\",\"deadbandvalue\":1,\"time\":10,\"timeUnit\":\"s\",\"certificate\":\"n\",\"localfile\":\"\",\"localkeyfile\":\"\",\"securitymode\":\"None\",\"securitypolicy\":\"None\",\"useTransport\":false,\"maxChunkCount\":1,\"maxMessageSize\":8192,\"receiveBufferSize\":8192,\"sendBufferSize\":8192,\"name\":\"\",\"x\":480,\"y\":480,\"wires\":[[\"e1c4fe72e4f37b6a\"],[]]},{\"id\":\"f5fd1ffafdfe790f\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"Set the topic for the data\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"cycle-time\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":730,\"y\":300,\"wires\":[[\"913e9de1324a6f21\"]]},{\"id\":\"fc4b83a8a0be3a35\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"Set the topic for the data\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"spindle-speed\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":730,\"y\":380,\"wires\":[[\"913e9de1324a6f21\"]]},{\"id\":\"e1c4fe72e4f37b6a\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"Set the topic for the data\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"temperature\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":730,\"y\":460,\"wires\":[[\"913e9de1324a6f21\"]]},{\"id\":\"913e9de1324a6f21\",\"type\":\"join\",\"z\":\"807758ec576fbfd8\",\"name\":\"Create object from those three data property \",\"mode\":\"custom\",\"build\":\"object\",\"property\":\"payload\",\"propertyType\":\"msg\",\"key\":\"topic\",\"joiner\":\"\\\\n\",\"joinerType\":\"str\",\"useparts\":false,\"accumulate\":false,\"timeout\":\"\",\"count\":\"3\",\"reduceRight\":false,\"reduceExp\":\"\",\"reduceInit\":\"\",\"reduceInitType\":\"\",\"reduceFixup\":\"\",\"x\":1080,\"y\":380,\"wires\":[[\"1aa02b27b99dfe9d\"]]},{\"id\":\"3339483f64116fce\",\"type\":\"mqtt in\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"topic\":\"\u002Fmanufacturing\u002Fcnc\",\"qos\":\"2\",\"datatype\":\"auto-detect\",\"broker\":\"abd4e6202945fee3\",\"nl\":false,\"rap\":true,\"rh\":0,\"inputs\":0,\"x\":170,\"y\":660,\"wires\":[[\"d881d251071bd317\"]]},{\"id\":\"d881d251071bd317\",\"type\":\"debug\",\"z\":\"807758ec576fbfd8\",\"name\":\"debug 1\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"false\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":460,\"y\":660,\"wires\":[]},{\"id\":\"55f43460af9601ec\",\"type\":\"comment\",\"z\":\"807758ec576fbfd8\",\"name\":\"Retrieving the data from mqtt\",\"info\":\"\",\"x\":320,\"y\":600,\"wires\":[]},{\"id\":\"628ab54495901021\",\"type\":\"comment\",\"z\":\"807758ec576fbfd8\",\"name\":\"Bridging OPC UA data to MQTT\",\"info\":\"\",\"x\":350,\"y\":240,\"wires\":[]},{\"id\":\"ce6b8a0e2c8a895d\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"ns=3;i=1010,datatype=float\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":290,\"y\":320,\"wires\":[[\"a099aefb08837e70\"]]},{\"id\":\"50fe2b9310d3bb3f\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"ns=3;i=1011,datatype=basedatatype\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":290,\"y\":400,\"wires\":[[\"d565ae620d90498a\"]]},{\"id\":\"9cf691f55748d013\",\"type\":\"change\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"ns=3;i=1012,datatype=float\",\"tot\":\"str\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":290,\"y\":480,\"wires\":[[\"0e0614ada3269627\"]]},{\"id\":\"de74dabc616c3094\",\"type\":\"inject\",\"z\":\"807758ec576fbfd8\",\"name\":\"\",\"props\":[{\"p\":\"payload\"},{\"p\":\"topic\",\"vt\":\"str\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"\",\"payloadType\":\"date\",\"x\":120,\"y\":400,\"wires\":[[\"ce6b8a0e2c8a895d\",\"50fe2b9310d3bb3f\",\"9cf691f55748d013\"]]},{\"id\":\"9dd56eda04f5c5b5\",\"type\":\"OpcUa-Endpoint\",\"endpoint\":\"opc.tcp:\u002F\u002FRoni:53530\u002FOPCUA\u002FSimulationServer\",\"secpol\":\"None\",\"secmode\":\"None\",\"none\":true,\"login\":false,\"usercert\":false,\"usercertificate\":\"\",\"userprivatekey\":\"\"},{\"id\":\"abd4e6202945fee3\",\"type\":\"mqtt-broker\",\"name\":\"\",\"broker\":\"http:\u002F\u002Fbroker.hivemq.com\",\"port\":\"1883\",\"clientid\":\"\",\"autoConnect\":true,\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"autoUnsubscribe\":true,\"birthTopic\":\"\",\"birthQos\":\"0\",\"birthRetain\":\"false\",\"birthPayload\":\"\",\"birthMsg\":{},\"closeTopic\":\"\",\"closeQos\":\"0\",\"closeRetain\":\"false\",\"closePayload\":\"\",\"closeMsg\":{},\"willTopic\":\"\",\"willQos\":\"0\",\"willRetain\":\"false\",\"willPayload\":\"\",\"willMsg\":{},\"userProps\":\"\",\"sessionExpiry\":\"\"}]\n","json",[126,351,352],{"__ignoreMap":29},[353,354,357,361,364,368,370,373,375,379,381,384,386,389,391,393,395,397,399,401,403,406,408,410,412,415,417,419,421,424,426,428,430,433,435,437,439,442,444,446,448,451,453,455,457,460,462,464,466,468,470,472,474,477,479,481,485,487,489,492,494,496,499,501,503,506,508,510,512,515,517,519,521,524,526,528,530,533,535,537,539,542,544,546,549,551,553,556,558,560,562,564,566,569,571,573,575,578,580,582,584,587,589,591,593,595,597,599,601,604,606,609,611,614,616,618,620,622,624,627,629,631,634,636,638,641,643,645,647,649,651,654,656,658,660,662,664,667,669,671,673,675,677,680,682,684,687,689,691,694,696,698,701,703,705,708,710,713,715,718,720,723,725,727,729,731,733,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,789,791,793,795,798,800,802,804,807,809,811,813,816,818,820,822,825,827,829,831,834,836,838,840,843,845,847,849,851,853,856,858,860,862,864,866,869,871,873,875,877,879,882,884,886,888,890,892,895,897,899,901,903,905,908,910,912,914,917,919,921,923,925,927,929,932,934,936,938,940,942,945,947,949,951,953,956,958,960,962,964,966,969,971,973,975,977,979,981,983,985,987,989,991,993,995,997,999,1001,1003,1005,1007,1009,1011,1013,1015,1017,1019,1021,1023,1025,1027,1029,1031,1033,1035,1037,1039,1041,1043,1045,1047,1049,1051,1053,1055,1057,1059,1061,1063,1065,1067,1069,1071,1073,1075,1077,1079,1081,1083,1085,1087,1089,1091,1093,1095,1097,1099,1101,1103,1105,1107,1109,1111,1113,1115,1117,1119,1121,1123,1125,1127,1129,1131,1133,1135,1137,1139,1141,1143,1145,1147,1149,1151,1153,1155,1157,1159,1161,1163,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1187,1189,1191,1193,1195,1197,1199,1201,1203,1205,1207,1209,1211,1213,1215,1217,1219,1221,1223,1225,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1247,1249,1251,1253,1256,1258,1260,1262,1264,1266,1268,1271,1273,1275,1277,1279,1281,1283,1285,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1589,1591,1593,1595,1597,1599,1601,1603,1605,1607,1609,1611,1613,1615,1617,1619,1621,1623,1625,1627,1629,1631,1633,1635,1637,1639,1641,1643,1645,1647,1649,1651,1654,1656,1658,1660,1663,1665,1668,1670,1674,1676,1678,1680,1683,1685,1687,1689,1691,1693,1695,1697,1699,1701,1703,1705,1708,1710,1712,1714,1717,1719,1721,1723,1726,1728,1730,1732,1735,1737,1739,1741,1744,1746,1748,1750,1753,1755,1758,1760,1762,1764,1766,1768,1770,1772,1775,1777,1779,1781,1783,1785,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1813,1815,1817,1819,1821,1823,1825,1828,1830,1832,1834,1836,1838,1841,1843,1845,1847,1849,1851,1853,1856,1858,1861,1863,1865,1867,1869,1871,1873,1875,1877,1879,1881,1883,1885,1887,1889,1891,1893,1895,1897,1899,1901,1903,1905,1907,1909,1911,1913,1915,1917,1919,1921,1923,1925,1927,1929,1931,1933,1935,1937,1939,1941,1943,1945,1947,1949,1951,1953,1955,1957,1959,1961,1963,1965,1967,1969,1971,1973,1975,1977,1979,1981,1983,1985,1987,1989,1991,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2243,2245,2247,2249,2251,2253,2255,2257,2259,2261,2263,2265,2267,2269,2271,2273,2275,2277,2279,2281,2283,2285,2287,2289,2291,2293,2295,2297,2299,2301,2303,2305,2307,2309,2311,2313,2315,2317,2319,2321,2323,2325,2327,2329,2331,2333,2335,2337,2339,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2421,2423,2425,2427,2430,2432,2434,2436,2439,2441,2443,2445,2448,2450,2452,2454,2457,2459,2461,2463,2465,2467,2469,2471,2474,2476,2478,2480,2483,2485,2487,2489,2491,2493,2495,2497,2500,2502,2504,2506,2508,2510,2512,2514,2517,2519,2521,2523,2527,2529,2531,2533,2535,2538,2540,2542,2544,2546,2548,2550,2552,2555,2557,2559,2561,2564,2566,2568,2570,2573,2575,2577,2579,2581,2583,2586,2588,2590,2592,2595,2597,2599,2601,2604,2606,2608,2610,2613,2615,2617,2619,2621,2623,2626,2628,2630,2632,2634,2636,2639,2641,2643,2645,2647,2649,2652,2654,2656,2658,2660,2662,2664,2666,2668,2671,2673,2675,2677,2679,2681,2683,2685,2687,2689,2691,2693,2695,2697,2699,2701,2703,2705,2707,2709,2711,2714,2716,2718,2720,2722,2724,2726,2728,2731,2733,2735,2737,2739,2741,2743,2745,2747,2749,2751,2753,2755,2757,2759,2761,2763,2765,2767,2769,2771,2773,2775,2777,2779,2781,2783,2785,2787,2789,2791,2793,2795,2797,2800,2802,2804,2806,2809,2811,2813,2815,2817,2819,2821,2823,2825,2827,2829,2831,2834,2836,2838,2840,2843,2845,2848,2850,2853,2855,2857,2860,2862,2864,2867,2869,2871,2873,2875,2877,2879,2881,2883,2886,2888,2890,2892,2894,2896,2899,2901,2903,2905,2907,2909,2911,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2979,2981,2983,2985,2988,2990,2992,2994,2997,2999,3001,3003,3006,3008,3010,3012,3015,3017,3019,3021,3024,3026,3028,3030,3033,3035,3037,3039,3042,3044,3046,3048,3050,3052,3055,3057,3059,3061,3064,3066,3068,3070,3072,3074,3076,3078,3080,3082,3084,3086,3088,3090,3092,3094,3096,3098,3100,3102,3104,3106,3108,3110,3113,3115,3117,3119,3121,3123,3125,3127,3130,3132,3134,3136,3138,3140,3142,3144,3146,3148,3150,3152,3154,3156,3158,3160,3163,3165,3167,3169,3172,3174,3176,3178,3180,3182,3184,3186,3188,3190,3192,3194,3196,3198,3200,3203,3205,3207,3209,3211,3213,3215,3217,3219,3221,3223,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3254,3256,3258,3260,3262,3264,3266,3268,3270,3272,3275,3277,3279,3281,3283,3285,3287,3289,3291,3293,3295,3297,3299,3302,3304,3306,3308,3310,3312,3315,3317,3319,3321,3323,3325,3327,3329,3331,3333,3335,3338,3340,3342,3344,3346,3348,3350,3352,3354,3356,3358,3360,3362,3364,3366,3368,3370,3372,3374,3376,3378,3380,3382,3384,3386,3388,3390,3392,3394,3396,3398,3400,3402,3404,3406,3408,3410,3412,3414,3416,3418,3420,3422,3424,3426,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3455,3457,3459,3461,3463,3465,3467,3469,3471,3473,3475,3477,3479,3481,3483,3485,3487,3489,3491,3493,3495,3497,3499,3501,3503,3505,3507,3509,3511,3513,3515,3517,3519,3521,3523,3525,3527,3529,3531,3533,3535,3537,3539,3542,3544,3546,3548,3550,3552,3554,3556,3558,3560,3562,3564,3566,3568,3570,3572,3574,3576,3578,3580,3582,3585,3587,3589,3591,3593,3595,3597,3599,3601,3603,3605,3607,3609,3611,3613,3615,3617,3619,3621,3623,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3649,3651,3653,3655,3657,3659,3661,3663,3665,3667,3669,3671,3673,3675,3677,3679,3681,3683,3685,3687,3689,3691,3693,3695,3697,3699,3702,3704,3706,3708,3710,3712,3714,3716,3718,3720,3722,3724,3726,3728,3730,3732,3734,3736,3738,3740,3742,3744,3746,3748,3750,3752,3754,3756,3758,3760,3762,3764,3766,3768,3770,3772,3774,3776,3778,3780,3782,3784,3786,3788,3790,3792,3794,3796,3798,3800,3802,3804,3806,3808,3810,3812,3814,3816,3818,3820,3822,3824,3826,3828,3831,3833,3835,3837,3839,3841,3843,3845,3847,3849,3851,3853,3855,3857,3859,3861,3863,3865,3867,3869,3871,3873,3875,3877,3879,3881,3883,3885,3887,3889,3891,3893,3895,3897,3899,3901,3903,3905,3907,3909,3911,3913,3915,3917,3919,3921,3923,3925,3927,3929,3931,3933,3935,3937,3939,3941,3943,3945,3948,3950,3952,3954,3956,3958,3960,3962,3964,3966,3968,3970,3972,3974,3976,3978,3980,3982,3984,3986,3988,3990,3992,3994,3996,3998,4000,4002,4004,4006,4008,4010,4012,4014,4016,4018,4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4042,4044,4046,4048,4050,4052,4054,4056,4058,4060,4062,4064,4066,4068,4070,4072,4074,4077,4079,4081,4083,4085,4087,4089,4091,4093,4095,4097,4099,4101,4103,4105,4107,4109,4111,4113,4115,4117,4119,4121,4123,4125,4127,4130,4132,4134,4136,4138,4140,4142,4144,4146,4148,4151,4153,4155,4157,4159,4161,4163,4165,4167,4169,4172,4174,4176,4178,4180,4182,4184,4186,4189,4191,4193,4195,4197,4199,4202,4204,4206,4208,4210,4212,4215,4217,4219,4221,4224,4226,4228,4231,4233,4235,4237,4239,4241,4243,4245,4247,4249,4251,4253,4255,4257,4259,4262,4264,4266,4268,4271,4273,4275,4277,4279,4281,4283,4286,4288,4290,4292,4294,4296,4298,4300,4302,4304,4306,4308,4310,4312,4314,4316,4318,4320,4322,4324,4326,4328,4330,4332,4334,4336,4338,4340,4342,4344,4346,4348,4350,4352,4354,4356,4358,4361,4363,4365,4367,4369,4371,4373,4375,4378,4380,4382,4384,4387,4389,4391,4393,4395,4397,4399,4401,4404,4406,4408,4410,4412,4414,4416,4418,4421,4423,4425,4427,4430,4432,4434,4436,4439,4441,4443,4445,4448,4450,4452,4454,4456,4458,4461,4463,4465,4467,4469,4471,4473,4475,4477,4479,4481,4483,4485,4487,4489,4491,4493,4495,4498,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4527,4529,4531,4533,4536,4538,4540,4542,4545,4547,4549,4551,4554,4556,4558,4560,4562,4564,4567,4569,4571,4573,4576,4578,4580,4582,4585,4587,4589,4591,4594,4596,4598,4600,4603,4605,4607,4609,4612,4614,4616,4618,4621,4623,4625,4627,4630,4632,4634,4636,4639,4641,4643,4645,4647,4649,4652,4654,4656,4658,4660,4662,4664,4666,4669,4671,4673,4675,4677,4679,4681,4683,4686,4688,4690,4692,4694,4696,4699,4701,4704,4706,4709,4711,4713,4715,4717,4719,4722,4724,4726,4728,4730,4732,4734,4736,4739,4741,4743,4745,4747,4749,4751,4753,4756,4758,4760,4762,4764,4766,4769,4771,4773,4775,4778,4780,4782,4784,4786,4788,4791,4793,4795,4797,4799,4801,4803,4805,4808,4810,4812,4814,4816,4818,4820,4822,4825,4827,4829,4831,4833,4835,4838,4840,4842,4844,4846,4848,4850,4852,4854,4856,4859,4861,4863,4865],"span",{"class":355,"line":356},"line",1,[353,358,360],{"class":359},"sMK4o","[{",[353,362,363],{"class":359},"\"",[353,365,367],{"class":366},"spNyl","id",[353,369,363],{"class":359},[353,371,372],{"class":359},":",[353,374,363],{"class":359},[353,376,378],{"class":377},"sfazB","a099aefb08837e70",[353,380,363],{"class":359},[353,382,383],{"class":359},",",[353,385,363],{"class":359},[353,387,388],{"class":366},"type",[353,390,363],{"class":359},[353,392,372],{"class":359},[353,394,363],{"class":359},[353,396,145],{"class":377},[353,398,363],{"class":359},[353,400,383],{"class":359},[353,402,363],{"class":359},[353,404,405],{"class":366},"z",[353,407,363],{"class":359},[353,409,372],{"class":359},[353,411,363],{"class":359},[353,413,414],{"class":377},"807758ec576fbfd8",[353,416,363],{"class":359},[353,418,383],{"class":359},[353,420,363],{"class":359},[353,422,423],{"class":366},"endpoint",[353,425,363],{"class":359},[353,427,372],{"class":359},[353,429,363],{"class":359},[353,431,432],{"class":377},"9dd56eda04f5c5b5",[353,434,363],{"class":359},[353,436,383],{"class":359},[353,438,363],{"class":359},[353,440,441],{"class":366},"action",[353,443,363],{"class":359},[353,445,372],{"class":359},[353,447,363],{"class":359},[353,449,450],{"class":377},"read",[353,452,363],{"class":359},[353,454,383],{"class":359},[353,456,363],{"class":359},[353,458,459],{"class":366},"deadbandtype",[353,461,363],{"class":359},[353,463,372],{"class":359},[353,465,363],{"class":359},[353,467,49],{"class":377},[353,469,363],{"class":359},[353,471,383],{"class":359},[353,473,363],{"class":359},[353,475,476],{"class":366},"deadbandvalue",[353,478,363],{"class":359},[353,480,372],{"class":359},[353,482,484],{"class":483},"sbssI","1",[353,486,383],{"class":359},[353,488,363],{"class":359},[353,490,491],{"class":366},"time",[353,493,363],{"class":359},[353,495,372],{"class":359},[353,497,498],{"class":483},"10",[353,500,383],{"class":359},[353,502,363],{"class":359},[353,504,505],{"class":366},"timeUnit",[353,507,363],{"class":359},[353,509,372],{"class":359},[353,511,363],{"class":359},[353,513,514],{"class":377},"s",[353,516,363],{"class":359},[353,518,383],{"class":359},[353,520,363],{"class":359},[353,522,523],{"class":366},"certificate",[353,525,363],{"class":359},[353,527,372],{"class":359},[353,529,363],{"class":359},[353,531,532],{"class":377},"n",[353,534,363],{"class":359},[353,536,383],{"class":359},[353,538,363],{"class":359},[353,540,541],{"class":366},"localfile",[353,543,363],{"class":359},[353,545,372],{"class":359},[353,547,548],{"class":359},"\"\"",[353,550,383],{"class":359},[353,552,363],{"class":359},[353,554,555],{"class":366},"localkeyfile",[353,557,363],{"class":359},[353,559,372],{"class":359},[353,561,548],{"class":359},[353,563,383],{"class":359},[353,565,363],{"class":359},[353,567,568],{"class":366},"securitymode",[353,570,363],{"class":359},[353,572,372],{"class":359},[353,574,363],{"class":359},[353,576,577],{"class":377},"None",[353,579,363],{"class":359},[353,581,383],{"class":359},[353,583,363],{"class":359},[353,585,586],{"class":366},"securitypolicy",[353,588,363],{"class":359},[353,590,372],{"class":359},[353,592,363],{"class":359},[353,594,577],{"class":377},[353,596,363],{"class":359},[353,598,383],{"class":359},[353,600,363],{"class":359},[353,602,603],{"class":366},"useTransport",[353,605,363],{"class":359},[353,607,608],{"class":359},":false,",[353,610,363],{"class":359},[353,612,613],{"class":366},"maxChunkCount",[353,615,363],{"class":359},[353,617,372],{"class":359},[353,619,484],{"class":483},[353,621,383],{"class":359},[353,623,363],{"class":359},[353,625,626],{"class":366},"maxMessageSize",[353,628,363],{"class":359},[353,630,372],{"class":359},[353,632,633],{"class":483},"8192",[353,635,383],{"class":359},[353,637,363],{"class":359},[353,639,640],{"class":366},"receiveBufferSize",[353,642,363],{"class":359},[353,644,372],{"class":359},[353,646,633],{"class":483},[353,648,383],{"class":359},[353,650,363],{"class":359},[353,652,653],{"class":366},"sendBufferSize",[353,655,363],{"class":359},[353,657,372],{"class":359},[353,659,633],{"class":483},[353,661,383],{"class":359},[353,663,363],{"class":359},[353,665,666],{"class":366},"name",[353,668,363],{"class":359},[353,670,372],{"class":359},[353,672,548],{"class":359},[353,674,383],{"class":359},[353,676,363],{"class":359},[353,678,679],{"class":366},"x",[353,681,363],{"class":359},[353,683,372],{"class":359},[353,685,686],{"class":483},"480",[353,688,383],{"class":359},[353,690,363],{"class":359},[353,692,693],{"class":366},"y",[353,695,363],{"class":359},[353,697,372],{"class":359},[353,699,700],{"class":483},"320",[353,702,383],{"class":359},[353,704,363],{"class":359},[353,706,707],{"class":366},"wires",[353,709,363],{"class":359},[353,711,712],{"class":359},":[[",[353,714,363],{"class":359},[353,716,717],{"class":377},"f5fd1ffafdfe790f",[353,719,363],{"class":359},[353,721,722],{"class":359},"],[]]},{",[353,724,363],{"class":359},[353,726,367],{"class":366},[353,728,363],{"class":359},[353,730,372],{"class":359},[353,732,363],{"class":359},[353,734,735],{"class":377},"1aa02b27b99dfe9d",[353,737,363],{"class":359},[353,739,383],{"class":359},[353,741,363],{"class":359},[353,743,388],{"class":366},[353,745,363],{"class":359},[353,747,372],{"class":359},[353,749,363],{"class":359},[353,751,305],{"class":377},[353,753,363],{"class":359},[353,755,383],{"class":359},[353,757,363],{"class":359},[353,759,405],{"class":366},[353,761,363],{"class":359},[353,763,372],{"class":359},[353,765,363],{"class":359},[353,767,414],{"class":377},[353,769,363],{"class":359},[353,771,383],{"class":359},[353,773,363],{"class":359},[353,775,666],{"class":366},[353,777,363],{"class":359},[353,779,372],{"class":359},[353,781,548],{"class":359},[353,783,383],{"class":359},[353,785,363],{"class":359},[353,787,788],{"class":366},"topic",[353,790,363],{"class":359},[353,792,372],{"class":359},[353,794,363],{"class":359},[353,796,797],{"class":377},"\u002Fmanufacturing\u002Fcnc",[353,799,363],{"class":359},[353,801,383],{"class":359},[353,803,363],{"class":359},[353,805,806],{"class":366},"qos",[353,808,363],{"class":359},[353,810,372],{"class":359},[353,812,363],{"class":359},[353,814,815],{"class":377},"2",[353,817,363],{"class":359},[353,819,383],{"class":359},[353,821,363],{"class":359},[353,823,824],{"class":366},"retain",[353,826,363],{"class":359},[353,828,372],{"class":359},[353,830,363],{"class":359},[353,832,833],{"class":377},"true",[353,835,363],{"class":359},[353,837,383],{"class":359},[353,839,363],{"class":359},[353,841,842],{"class":366},"respTopic",[353,844,363],{"class":359},[353,846,372],{"class":359},[353,848,548],{"class":359},[353,850,383],{"class":359},[353,852,363],{"class":359},[353,854,855],{"class":366},"contentType",[353,857,363],{"class":359},[353,859,372],{"class":359},[353,861,548],{"class":359},[353,863,383],{"class":359},[353,865,363],{"class":359},[353,867,868],{"class":366},"userProps",[353,870,363],{"class":359},[353,872,372],{"class":359},[353,874,548],{"class":359},[353,876,383],{"class":359},[353,878,363],{"class":359},[353,880,881],{"class":366},"correl",[353,883,363],{"class":359},[353,885,372],{"class":359},[353,887,548],{"class":359},[353,889,383],{"class":359},[353,891,363],{"class":359},[353,893,894],{"class":366},"expiry",[353,896,363],{"class":359},[353,898,372],{"class":359},[353,900,548],{"class":359},[353,902,383],{"class":359},[353,904,363],{"class":359},[353,906,907],{"class":366},"broker",[353,909,363],{"class":359},[353,911,372],{"class":359},[353,913,363],{"class":359},[353,915,916],{"class":377},"abd4e6202945fee3",[353,918,363],{"class":359},[353,920,383],{"class":359},[353,922,363],{"class":359},[353,924,679],{"class":366},[353,926,363],{"class":359},[353,928,372],{"class":359},[353,930,931],{"class":483},"1390",[353,933,383],{"class":359},[353,935,363],{"class":359},[353,937,693],{"class":366},[353,939,363],{"class":359},[353,941,372],{"class":359},[353,943,944],{"class":483},"380",[353,946,383],{"class":359},[353,948,363],{"class":359},[353,950,707],{"class":366},[353,952,363],{"class":359},[353,954,955],{"class":359},":[]},{",[353,957,363],{"class":359},[353,959,367],{"class":366},[353,961,363],{"class":359},[353,963,372],{"class":359},[353,965,363],{"class":359},[353,967,968],{"class":377},"d565ae620d90498a",[353,970,363],{"class":359},[353,972,383],{"class":359},[353,974,363],{"class":359},[353,976,388],{"class":366},[353,978,363],{"class":359},[353,980,372],{"class":359},[353,982,363],{"class":359},[353,984,145],{"class":377},[353,986,363],{"class":359},[353,988,383],{"class":359},[353,990,363],{"class":359},[353,992,405],{"class":366},[353,994,363],{"class":359},[353,996,372],{"class":359},[353,998,363],{"class":359},[353,1000,414],{"class":377},[353,1002,363],{"class":359},[353,1004,383],{"class":359},[353,1006,363],{"class":359},[353,1008,423],{"class":366},[353,1010,363],{"class":359},[353,1012,372],{"class":359},[353,1014,363],{"class":359},[353,1016,432],{"class":377},[353,1018,363],{"class":359},[353,1020,383],{"class":359},[353,1022,363],{"class":359},[353,1024,441],{"class":366},[353,1026,363],{"class":359},[353,1028,372],{"class":359},[353,1030,363],{"class":359},[353,1032,450],{"class":377},[353,1034,363],{"class":359},[353,1036,383],{"class":359},[353,1038,363],{"class":359},[353,1040,459],{"class":366},[353,1042,363],{"class":359},[353,1044,372],{"class":359},[353,1046,363],{"class":359},[353,1048,49],{"class":377},[353,1050,363],{"class":359},[353,1052,383],{"class":359},[353,1054,363],{"class":359},[353,1056,476],{"class":366},[353,1058,363],{"class":359},[353,1060,372],{"class":359},[353,1062,484],{"class":483},[353,1064,383],{"class":359},[353,1066,363],{"class":359},[353,1068,491],{"class":366},[353,1070,363],{"class":359},[353,1072,372],{"class":359},[353,1074,498],{"class":483},[353,1076,383],{"class":359},[353,1078,363],{"class":359},[353,1080,505],{"class":366},[353,1082,363],{"class":359},[353,1084,372],{"class":359},[353,1086,363],{"class":359},[353,1088,514],{"class":377},[353,1090,363],{"class":359},[353,1092,383],{"class":359},[353,1094,363],{"class":359},[353,1096,523],{"class":366},[353,1098,363],{"class":359},[353,1100,372],{"class":359},[353,1102,363],{"class":359},[353,1104,532],{"class":377},[353,1106,363],{"class":359},[353,1108,383],{"class":359},[353,1110,363],{"class":359},[353,1112,541],{"class":366},[353,1114,363],{"class":359},[353,1116,372],{"class":359},[353,1118,548],{"class":359},[353,1120,383],{"class":359},[353,1122,363],{"class":359},[353,1124,555],{"class":366},[353,1126,363],{"class":359},[353,1128,372],{"class":359},[353,1130,548],{"class":359},[353,1132,383],{"class":359},[353,1134,363],{"class":359},[353,1136,568],{"class":366},[353,1138,363],{"class":359},[353,1140,372],{"class":359},[353,1142,363],{"class":359},[353,1144,577],{"class":377},[353,1146,363],{"class":359},[353,1148,383],{"class":359},[353,1150,363],{"class":359},[353,1152,586],{"class":366},[353,1154,363],{"class":359},[353,1156,372],{"class":359},[353,1158,363],{"class":359},[353,1160,577],{"class":377},[353,1162,363],{"class":359},[353,1164,383],{"class":359},[353,1166,363],{"class":359},[353,1168,603],{"class":366},[353,1170,363],{"class":359},[353,1172,608],{"class":359},[353,1174,363],{"class":359},[353,1176,613],{"class":366},[353,1178,363],{"class":359},[353,1180,372],{"class":359},[353,1182,484],{"class":483},[353,1184,383],{"class":359},[353,1186,363],{"class":359},[353,1188,626],{"class":366},[353,1190,363],{"class":359},[353,1192,372],{"class":359},[353,1194,633],{"class":483},[353,1196,383],{"class":359},[353,1198,363],{"class":359},[353,1200,640],{"class":366},[353,1202,363],{"class":359},[353,1204,372],{"class":359},[353,1206,633],{"class":483},[353,1208,383],{"class":359},[353,1210,363],{"class":359},[353,1212,653],{"class":366},[353,1214,363],{"class":359},[353,1216,372],{"class":359},[353,1218,633],{"class":483},[353,1220,383],{"class":359},[353,1222,363],{"class":359},[353,1224,666],{"class":366},[353,1226,363],{"class":359},[353,1228,372],{"class":359},[353,1230,548],{"class":359},[353,1232,383],{"class":359},[353,1234,363],{"class":359},[353,1236,679],{"class":366},[353,1238,363],{"class":359},[353,1240,372],{"class":359},[353,1242,686],{"class":483},[353,1244,383],{"class":359},[353,1246,363],{"class":359},[353,1248,693],{"class":366},[353,1250,363],{"class":359},[353,1252,372],{"class":359},[353,1254,1255],{"class":483},"400",[353,1257,383],{"class":359},[353,1259,363],{"class":359},[353,1261,707],{"class":366},[353,1263,363],{"class":359},[353,1265,712],{"class":359},[353,1267,363],{"class":359},[353,1269,1270],{"class":377},"fc4b83a8a0be3a35",[353,1272,363],{"class":359},[353,1274,722],{"class":359},[353,1276,363],{"class":359},[353,1278,367],{"class":366},[353,1280,363],{"class":359},[353,1282,372],{"class":359},[353,1284,363],{"class":359},[353,1286,1287],{"class":377},"0e0614ada3269627",[353,1289,363],{"class":359},[353,1291,383],{"class":359},[353,1293,363],{"class":359},[353,1295,388],{"class":366},[353,1297,363],{"class":359},[353,1299,372],{"class":359},[353,1301,363],{"class":359},[353,1303,145],{"class":377},[353,1305,363],{"class":359},[353,1307,383],{"class":359},[353,1309,363],{"class":359},[353,1311,405],{"class":366},[353,1313,363],{"class":359},[353,1315,372],{"class":359},[353,1317,363],{"class":359},[353,1319,414],{"class":377},[353,1321,363],{"class":359},[353,1323,383],{"class":359},[353,1325,363],{"class":359},[353,1327,423],{"class":366},[353,1329,363],{"class":359},[353,1331,372],{"class":359},[353,1333,363],{"class":359},[353,1335,432],{"class":377},[353,1337,363],{"class":359},[353,1339,383],{"class":359},[353,1341,363],{"class":359},[353,1343,441],{"class":366},[353,1345,363],{"class":359},[353,1347,372],{"class":359},[353,1349,363],{"class":359},[353,1351,450],{"class":377},[353,1353,363],{"class":359},[353,1355,383],{"class":359},[353,1357,363],{"class":359},[353,1359,459],{"class":366},[353,1361,363],{"class":359},[353,1363,372],{"class":359},[353,1365,363],{"class":359},[353,1367,49],{"class":377},[353,1369,363],{"class":359},[353,1371,383],{"class":359},[353,1373,363],{"class":359},[353,1375,476],{"class":366},[353,1377,363],{"class":359},[353,1379,372],{"class":359},[353,1381,484],{"class":483},[353,1383,383],{"class":359},[353,1385,363],{"class":359},[353,1387,491],{"class":366},[353,1389,363],{"class":359},[353,1391,372],{"class":359},[353,1393,498],{"class":483},[353,1395,383],{"class":359},[353,1397,363],{"class":359},[353,1399,505],{"class":366},[353,1401,363],{"class":359},[353,1403,372],{"class":359},[353,1405,363],{"class":359},[353,1407,514],{"class":377},[353,1409,363],{"class":359},[353,1411,383],{"class":359},[353,1413,363],{"class":359},[353,1415,523],{"class":366},[353,1417,363],{"class":359},[353,1419,372],{"class":359},[353,1421,363],{"class":359},[353,1423,532],{"class":377},[353,1425,363],{"class":359},[353,1427,383],{"class":359},[353,1429,363],{"class":359},[353,1431,541],{"class":366},[353,1433,363],{"class":359},[353,1435,372],{"class":359},[353,1437,548],{"class":359},[353,1439,383],{"class":359},[353,1441,363],{"class":359},[353,1443,555],{"class":366},[353,1445,363],{"class":359},[353,1447,372],{"class":359},[353,1449,548],{"class":359},[353,1451,383],{"class":359},[353,1453,363],{"class":359},[353,1455,568],{"class":366},[353,1457,363],{"class":359},[353,1459,372],{"class":359},[353,1461,363],{"class":359},[353,1463,577],{"class":377},[353,1465,363],{"class":359},[353,1467,383],{"class":359},[353,1469,363],{"class":359},[353,1471,586],{"class":366},[353,1473,363],{"class":359},[353,1475,372],{"class":359},[353,1477,363],{"class":359},[353,1479,577],{"class":377},[353,1481,363],{"class":359},[353,1483,383],{"class":359},[353,1485,363],{"class":359},[353,1487,603],{"class":366},[353,1489,363],{"class":359},[353,1491,608],{"class":359},[353,1493,363],{"class":359},[353,1495,613],{"class":366},[353,1497,363],{"class":359},[353,1499,372],{"class":359},[353,1501,484],{"class":483},[353,1503,383],{"class":359},[353,1505,363],{"class":359},[353,1507,626],{"class":366},[353,1509,363],{"class":359},[353,1511,372],{"class":359},[353,1513,633],{"class":483},[353,1515,383],{"class":359},[353,1517,363],{"class":359},[353,1519,640],{"class":366},[353,1521,363],{"class":359},[353,1523,372],{"class":359},[353,1525,633],{"class":483},[353,1527,383],{"class":359},[353,1529,363],{"class":359},[353,1531,653],{"class":366},[353,1533,363],{"class":359},[353,1535,372],{"class":359},[353,1537,633],{"class":483},[353,1539,383],{"class":359},[353,1541,363],{"class":359},[353,1543,666],{"class":366},[353,1545,363],{"class":359},[353,1547,372],{"class":359},[353,1549,548],{"class":359},[353,1551,383],{"class":359},[353,1553,363],{"class":359},[353,1555,679],{"class":366},[353,1557,363],{"class":359},[353,1559,372],{"class":359},[353,1561,686],{"class":483},[353,1563,383],{"class":359},[353,1565,363],{"class":359},[353,1567,693],{"class":366},[353,1569,363],{"class":359},[353,1571,372],{"class":359},[353,1573,686],{"class":483},[353,1575,383],{"class":359},[353,1577,363],{"class":359},[353,1579,707],{"class":366},[353,1581,363],{"class":359},[353,1583,712],{"class":359},[353,1585,363],{"class":359},[353,1587,1588],{"class":377},"e1c4fe72e4f37b6a",[353,1590,363],{"class":359},[353,1592,722],{"class":359},[353,1594,363],{"class":359},[353,1596,367],{"class":366},[353,1598,363],{"class":359},[353,1600,372],{"class":359},[353,1602,363],{"class":359},[353,1604,717],{"class":377},[353,1606,363],{"class":359},[353,1608,383],{"class":359},[353,1610,363],{"class":359},[353,1612,388],{"class":366},[353,1614,363],{"class":359},[353,1616,372],{"class":359},[353,1618,363],{"class":359},[353,1620,123],{"class":377},[353,1622,363],{"class":359},[353,1624,383],{"class":359},[353,1626,363],{"class":359},[353,1628,405],{"class":366},[353,1630,363],{"class":359},[353,1632,372],{"class":359},[353,1634,363],{"class":359},[353,1636,414],{"class":377},[353,1638,363],{"class":359},[353,1640,383],{"class":359},[353,1642,363],{"class":359},[353,1644,666],{"class":366},[353,1646,363],{"class":359},[353,1648,372],{"class":359},[353,1650,363],{"class":359},[353,1652,1653],{"class":377},"Set the topic for the data",[353,1655,363],{"class":359},[353,1657,383],{"class":359},[353,1659,363],{"class":359},[353,1661,1662],{"class":366},"rules",[353,1664,363],{"class":359},[353,1666,1667],{"class":359},":[{",[353,1669,363],{"class":359},[353,1671,1673],{"class":1672},"sBMFI","t",[353,1675,363],{"class":359},[353,1677,372],{"class":359},[353,1679,363],{"class":359},[353,1681,1682],{"class":377},"set",[353,1684,363],{"class":359},[353,1686,383],{"class":359},[353,1688,363],{"class":359},[353,1690,12],{"class":1672},[353,1692,363],{"class":359},[353,1694,372],{"class":359},[353,1696,363],{"class":359},[353,1698,788],{"class":377},[353,1700,363],{"class":359},[353,1702,383],{"class":359},[353,1704,363],{"class":359},[353,1706,1707],{"class":1672},"pt",[353,1709,363],{"class":359},[353,1711,372],{"class":359},[353,1713,363],{"class":359},[353,1715,1716],{"class":377},"msg",[353,1718,363],{"class":359},[353,1720,383],{"class":359},[353,1722,363],{"class":359},[353,1724,1725],{"class":1672},"to",[353,1727,363],{"class":359},[353,1729,372],{"class":359},[353,1731,363],{"class":359},[353,1733,1734],{"class":377},"cycle-time",[353,1736,363],{"class":359},[353,1738,383],{"class":359},[353,1740,363],{"class":359},[353,1742,1743],{"class":1672},"tot",[353,1745,363],{"class":359},[353,1747,372],{"class":359},[353,1749,363],{"class":359},[353,1751,1752],{"class":377},"str",[353,1754,363],{"class":359},[353,1756,1757],{"class":359},"}],",[353,1759,363],{"class":359},[353,1761,441],{"class":366},[353,1763,363],{"class":359},[353,1765,372],{"class":359},[353,1767,548],{"class":359},[353,1769,383],{"class":359},[353,1771,363],{"class":359},[353,1773,1774],{"class":366},"property",[353,1776,363],{"class":359},[353,1778,372],{"class":359},[353,1780,548],{"class":359},[353,1782,383],{"class":359},[353,1784,363],{"class":359},[353,1786,1787],{"class":366},"from",[353,1789,363],{"class":359},[353,1791,372],{"class":359},[353,1793,548],{"class":359},[353,1795,383],{"class":359},[353,1797,363],{"class":359},[353,1799,1725],{"class":366},[353,1801,363],{"class":359},[353,1803,372],{"class":359},[353,1805,548],{"class":359},[353,1807,383],{"class":359},[353,1809,363],{"class":359},[353,1811,1812],{"class":366},"reg",[353,1814,363],{"class":359},[353,1816,608],{"class":359},[353,1818,363],{"class":359},[353,1820,679],{"class":366},[353,1822,363],{"class":359},[353,1824,372],{"class":359},[353,1826,1827],{"class":483},"730",[353,1829,383],{"class":359},[353,1831,363],{"class":359},[353,1833,693],{"class":366},[353,1835,363],{"class":359},[353,1837,372],{"class":359},[353,1839,1840],{"class":483},"300",[353,1842,383],{"class":359},[353,1844,363],{"class":359},[353,1846,707],{"class":366},[353,1848,363],{"class":359},[353,1850,712],{"class":359},[353,1852,363],{"class":359},[353,1854,1855],{"class":377},"913e9de1324a6f21",[353,1857,363],{"class":359},[353,1859,1860],{"class":359},"]]},{",[353,1862,363],{"class":359},[353,1864,367],{"class":366},[353,1866,363],{"class":359},[353,1868,372],{"class":359},[353,1870,363],{"class":359},[353,1872,1270],{"class":377},[353,1874,363],{"class":359},[353,1876,383],{"class":359},[353,1878,363],{"class":359},[353,1880,388],{"class":366},[353,1882,363],{"class":359},[353,1884,372],{"class":359},[353,1886,363],{"class":359},[353,1888,123],{"class":377},[353,1890,363],{"class":359},[353,1892,383],{"class":359},[353,1894,363],{"class":359},[353,1896,405],{"class":366},[353,1898,363],{"class":359},[353,1900,372],{"class":359},[353,1902,363],{"class":359},[353,1904,414],{"class":377},[353,1906,363],{"class":359},[353,1908,383],{"class":359},[353,1910,363],{"class":359},[353,1912,666],{"class":366},[353,1914,363],{"class":359},[353,1916,372],{"class":359},[353,1918,363],{"class":359},[353,1920,1653],{"class":377},[353,1922,363],{"class":359},[353,1924,383],{"class":359},[353,1926,363],{"class":359},[353,1928,1662],{"class":366},[353,1930,363],{"class":359},[353,1932,1667],{"class":359},[353,1934,363],{"class":359},[353,1936,1673],{"class":1672},[353,1938,363],{"class":359},[353,1940,372],{"class":359},[353,1942,363],{"class":359},[353,1944,1682],{"class":377},[353,1946,363],{"class":359},[353,1948,383],{"class":359},[353,1950,363],{"class":359},[353,1952,12],{"class":1672},[353,1954,363],{"class":359},[353,1956,372],{"class":359},[353,1958,363],{"class":359},[353,1960,788],{"class":377},[353,1962,363],{"class":359},[353,1964,383],{"class":359},[353,1966,363],{"class":359},[353,1968,1707],{"class":1672},[353,1970,363],{"class":359},[353,1972,372],{"class":359},[353,1974,363],{"class":359},[353,1976,1716],{"class":377},[353,1978,363],{"class":359},[353,1980,383],{"class":359},[353,1982,363],{"class":359},[353,1984,1725],{"class":1672},[353,1986,363],{"class":359},[353,1988,372],{"class":359},[353,1990,363],{"class":359},[353,1992,1993],{"class":377},"spindle-speed",[353,1995,363],{"class":359},[353,1997,383],{"class":359},[353,1999,363],{"class":359},[353,2001,1743],{"class":1672},[353,2003,363],{"class":359},[353,2005,372],{"class":359},[353,2007,363],{"class":359},[353,2009,1752],{"class":377},[353,2011,363],{"class":359},[353,2013,1757],{"class":359},[353,2015,363],{"class":359},[353,2017,441],{"class":366},[353,2019,363],{"class":359},[353,2021,372],{"class":359},[353,2023,548],{"class":359},[353,2025,383],{"class":359},[353,2027,363],{"class":359},[353,2029,1774],{"class":366},[353,2031,363],{"class":359},[353,2033,372],{"class":359},[353,2035,548],{"class":359},[353,2037,383],{"class":359},[353,2039,363],{"class":359},[353,2041,1787],{"class":366},[353,2043,363],{"class":359},[353,2045,372],{"class":359},[353,2047,548],{"class":359},[353,2049,383],{"class":359},[353,2051,363],{"class":359},[353,2053,1725],{"class":366},[353,2055,363],{"class":359},[353,2057,372],{"class":359},[353,2059,548],{"class":359},[353,2061,383],{"class":359},[353,2063,363],{"class":359},[353,2065,1812],{"class":366},[353,2067,363],{"class":359},[353,2069,608],{"class":359},[353,2071,363],{"class":359},[353,2073,679],{"class":366},[353,2075,363],{"class":359},[353,2077,372],{"class":359},[353,2079,1827],{"class":483},[353,2081,383],{"class":359},[353,2083,363],{"class":359},[353,2085,693],{"class":366},[353,2087,363],{"class":359},[353,2089,372],{"class":359},[353,2091,944],{"class":483},[353,2093,383],{"class":359},[353,2095,363],{"class":359},[353,2097,707],{"class":366},[353,2099,363],{"class":359},[353,2101,712],{"class":359},[353,2103,363],{"class":359},[353,2105,1855],{"class":377},[353,2107,363],{"class":359},[353,2109,1860],{"class":359},[353,2111,363],{"class":359},[353,2113,367],{"class":366},[353,2115,363],{"class":359},[353,2117,372],{"class":359},[353,2119,363],{"class":359},[353,2121,1588],{"class":377},[353,2123,363],{"class":359},[353,2125,383],{"class":359},[353,2127,363],{"class":359},[353,2129,388],{"class":366},[353,2131,363],{"class":359},[353,2133,372],{"class":359},[353,2135,363],{"class":359},[353,2137,123],{"class":377},[353,2139,363],{"class":359},[353,2141,383],{"class":359},[353,2143,363],{"class":359},[353,2145,405],{"class":366},[353,2147,363],{"class":359},[353,2149,372],{"class":359},[353,2151,363],{"class":359},[353,2153,414],{"class":377},[353,2155,363],{"class":359},[353,2157,383],{"class":359},[353,2159,363],{"class":359},[353,2161,666],{"class":366},[353,2163,363],{"class":359},[353,2165,372],{"class":359},[353,2167,363],{"class":359},[353,2169,1653],{"class":377},[353,2171,363],{"class":359},[353,2173,383],{"class":359},[353,2175,363],{"class":359},[353,2177,1662],{"class":366},[353,2179,363],{"class":359},[353,2181,1667],{"class":359},[353,2183,363],{"class":359},[353,2185,1673],{"class":1672},[353,2187,363],{"class":359},[353,2189,372],{"class":359},[353,2191,363],{"class":359},[353,2193,1682],{"class":377},[353,2195,363],{"class":359},[353,2197,383],{"class":359},[353,2199,363],{"class":359},[353,2201,12],{"class":1672},[353,2203,363],{"class":359},[353,2205,372],{"class":359},[353,2207,363],{"class":359},[353,2209,788],{"class":377},[353,2211,363],{"class":359},[353,2213,383],{"class":359},[353,2215,363],{"class":359},[353,2217,1707],{"class":1672},[353,2219,363],{"class":359},[353,2221,372],{"class":359},[353,2223,363],{"class":359},[353,2225,1716],{"class":377},[353,2227,363],{"class":359},[353,2229,383],{"class":359},[353,2231,363],{"class":359},[353,2233,1725],{"class":1672},[353,2235,363],{"class":359},[353,2237,372],{"class":359},[353,2239,363],{"class":359},[353,2241,2242],{"class":377},"temperature",[353,2244,363],{"class":359},[353,2246,383],{"class":359},[353,2248,363],{"class":359},[353,2250,1743],{"class":1672},[353,2252,363],{"class":359},[353,2254,372],{"class":359},[353,2256,363],{"class":359},[353,2258,1752],{"class":377},[353,2260,363],{"class":359},[353,2262,1757],{"class":359},[353,2264,363],{"class":359},[353,2266,441],{"class":366},[353,2268,363],{"class":359},[353,2270,372],{"class":359},[353,2272,548],{"class":359},[353,2274,383],{"class":359},[353,2276,363],{"class":359},[353,2278,1774],{"class":366},[353,2280,363],{"class":359},[353,2282,372],{"class":359},[353,2284,548],{"class":359},[353,2286,383],{"class":359},[353,2288,363],{"class":359},[353,2290,1787],{"class":366},[353,2292,363],{"class":359},[353,2294,372],{"class":359},[353,2296,548],{"class":359},[353,2298,383],{"class":359},[353,2300,363],{"class":359},[353,2302,1725],{"class":366},[353,2304,363],{"class":359},[353,2306,372],{"class":359},[353,2308,548],{"class":359},[353,2310,383],{"class":359},[353,2312,363],{"class":359},[353,2314,1812],{"class":366},[353,2316,363],{"class":359},[353,2318,608],{"class":359},[353,2320,363],{"class":359},[353,2322,679],{"class":366},[353,2324,363],{"class":359},[353,2326,372],{"class":359},[353,2328,1827],{"class":483},[353,2330,383],{"class":359},[353,2332,363],{"class":359},[353,2334,693],{"class":366},[353,2336,363],{"class":359},[353,2338,372],{"class":359},[353,2340,2341],{"class":483},"460",[353,2343,383],{"class":359},[353,2345,363],{"class":359},[353,2347,707],{"class":366},[353,2349,363],{"class":359},[353,2351,712],{"class":359},[353,2353,363],{"class":359},[353,2355,1855],{"class":377},[353,2357,363],{"class":359},[353,2359,1860],{"class":359},[353,2361,363],{"class":359},[353,2363,367],{"class":366},[353,2365,363],{"class":359},[353,2367,372],{"class":359},[353,2369,363],{"class":359},[353,2371,1855],{"class":377},[353,2373,363],{"class":359},[353,2375,383],{"class":359},[353,2377,363],{"class":359},[353,2379,388],{"class":366},[353,2381,363],{"class":359},[353,2383,372],{"class":359},[353,2385,363],{"class":359},[353,2387,256],{"class":377},[353,2389,363],{"class":359},[353,2391,383],{"class":359},[353,2393,363],{"class":359},[353,2395,405],{"class":366},[353,2397,363],{"class":359},[353,2399,372],{"class":359},[353,2401,363],{"class":359},[353,2403,414],{"class":377},[353,2405,363],{"class":359},[353,2407,383],{"class":359},[353,2409,363],{"class":359},[353,2411,666],{"class":366},[353,2413,363],{"class":359},[353,2415,372],{"class":359},[353,2417,363],{"class":359},[353,2419,2420],{"class":377},"Create object from those three data property ",[353,2422,363],{"class":359},[353,2424,383],{"class":359},[353,2426,363],{"class":359},[353,2428,2429],{"class":366},"mode",[353,2431,363],{"class":359},[353,2433,372],{"class":359},[353,2435,363],{"class":359},[353,2437,2438],{"class":377},"custom",[353,2440,363],{"class":359},[353,2442,383],{"class":359},[353,2444,363],{"class":359},[353,2446,2447],{"class":366},"build",[353,2449,363],{"class":359},[353,2451,372],{"class":359},[353,2453,363],{"class":359},[353,2455,2456],{"class":377},"object",[353,2458,363],{"class":359},[353,2460,383],{"class":359},[353,2462,363],{"class":359},[353,2464,1774],{"class":366},[353,2466,363],{"class":359},[353,2468,372],{"class":359},[353,2470,363],{"class":359},[353,2472,2473],{"class":377},"payload",[353,2475,363],{"class":359},[353,2477,383],{"class":359},[353,2479,363],{"class":359},[353,2481,2482],{"class":366},"propertyType",[353,2484,363],{"class":359},[353,2486,372],{"class":359},[353,2488,363],{"class":359},[353,2490,1716],{"class":377},[353,2492,363],{"class":359},[353,2494,383],{"class":359},[353,2496,363],{"class":359},[353,2498,2499],{"class":366},"key",[353,2501,363],{"class":359},[353,2503,372],{"class":359},[353,2505,363],{"class":359},[353,2507,788],{"class":377},[353,2509,363],{"class":359},[353,2511,383],{"class":359},[353,2513,363],{"class":359},[353,2515,2516],{"class":366},"joiner",[353,2518,363],{"class":359},[353,2520,372],{"class":359},[353,2522,363],{"class":359},[353,2524,2526],{"class":2525},"sTEyZ","\\\\",[353,2528,532],{"class":377},[353,2530,363],{"class":359},[353,2532,383],{"class":359},[353,2534,363],{"class":359},[353,2536,2537],{"class":366},"joinerType",[353,2539,363],{"class":359},[353,2541,372],{"class":359},[353,2543,363],{"class":359},[353,2545,1752],{"class":377},[353,2547,363],{"class":359},[353,2549,383],{"class":359},[353,2551,363],{"class":359},[353,2553,2554],{"class":366},"useparts",[353,2556,363],{"class":359},[353,2558,608],{"class":359},[353,2560,363],{"class":359},[353,2562,2563],{"class":366},"accumulate",[353,2565,363],{"class":359},[353,2567,608],{"class":359},[353,2569,363],{"class":359},[353,2571,2572],{"class":366},"timeout",[353,2574,363],{"class":359},[353,2576,372],{"class":359},[353,2578,548],{"class":359},[353,2580,383],{"class":359},[353,2582,363],{"class":359},[353,2584,2585],{"class":366},"count",[353,2587,363],{"class":359},[353,2589,372],{"class":359},[353,2591,363],{"class":359},[353,2593,2594],{"class":377},"3",[353,2596,363],{"class":359},[353,2598,383],{"class":359},[353,2600,363],{"class":359},[353,2602,2603],{"class":366},"reduceRight",[353,2605,363],{"class":359},[353,2607,608],{"class":359},[353,2609,363],{"class":359},[353,2611,2612],{"class":366},"reduceExp",[353,2614,363],{"class":359},[353,2616,372],{"class":359},[353,2618,548],{"class":359},[353,2620,383],{"class":359},[353,2622,363],{"class":359},[353,2624,2625],{"class":366},"reduceInit",[353,2627,363],{"class":359},[353,2629,372],{"class":359},[353,2631,548],{"class":359},[353,2633,383],{"class":359},[353,2635,363],{"class":359},[353,2637,2638],{"class":366},"reduceInitType",[353,2640,363],{"class":359},[353,2642,372],{"class":359},[353,2644,548],{"class":359},[353,2646,383],{"class":359},[353,2648,363],{"class":359},[353,2650,2651],{"class":366},"reduceFixup",[353,2653,363],{"class":359},[353,2655,372],{"class":359},[353,2657,548],{"class":359},[353,2659,383],{"class":359},[353,2661,363],{"class":359},[353,2663,679],{"class":366},[353,2665,363],{"class":359},[353,2667,372],{"class":359},[353,2669,2670],{"class":483},"1080",[353,2672,383],{"class":359},[353,2674,363],{"class":359},[353,2676,693],{"class":366},[353,2678,363],{"class":359},[353,2680,372],{"class":359},[353,2682,944],{"class":483},[353,2684,383],{"class":359},[353,2686,363],{"class":359},[353,2688,707],{"class":366},[353,2690,363],{"class":359},[353,2692,712],{"class":359},[353,2694,363],{"class":359},[353,2696,735],{"class":377},[353,2698,363],{"class":359},[353,2700,1860],{"class":359},[353,2702,363],{"class":359},[353,2704,367],{"class":366},[353,2706,363],{"class":359},[353,2708,372],{"class":359},[353,2710,363],{"class":359},[353,2712,2713],{"class":377},"3339483f64116fce",[353,2715,363],{"class":359},[353,2717,383],{"class":359},[353,2719,363],{"class":359},[353,2721,388],{"class":366},[353,2723,363],{"class":359},[353,2725,372],{"class":359},[353,2727,363],{"class":359},[353,2729,2730],{"class":377},"mqtt in",[353,2732,363],{"class":359},[353,2734,383],{"class":359},[353,2736,363],{"class":359},[353,2738,405],{"class":366},[353,2740,363],{"class":359},[353,2742,372],{"class":359},[353,2744,363],{"class":359},[353,2746,414],{"class":377},[353,2748,363],{"class":359},[353,2750,383],{"class":359},[353,2752,363],{"class":359},[353,2754,666],{"class":366},[353,2756,363],{"class":359},[353,2758,372],{"class":359},[353,2760,548],{"class":359},[353,2762,383],{"class":359},[353,2764,363],{"class":359},[353,2766,788],{"class":366},[353,2768,363],{"class":359},[353,2770,372],{"class":359},[353,2772,363],{"class":359},[353,2774,797],{"class":377},[353,2776,363],{"class":359},[353,2778,383],{"class":359},[353,2780,363],{"class":359},[353,2782,806],{"class":366},[353,2784,363],{"class":359},[353,2786,372],{"class":359},[353,2788,363],{"class":359},[353,2790,815],{"class":377},[353,2792,363],{"class":359},[353,2794,383],{"class":359},[353,2796,363],{"class":359},[353,2798,2799],{"class":366},"datatype",[353,2801,363],{"class":359},[353,2803,372],{"class":359},[353,2805,363],{"class":359},[353,2807,2808],{"class":377},"auto-detect",[353,2810,363],{"class":359},[353,2812,383],{"class":359},[353,2814,363],{"class":359},[353,2816,907],{"class":366},[353,2818,363],{"class":359},[353,2820,372],{"class":359},[353,2822,363],{"class":359},[353,2824,916],{"class":377},[353,2826,363],{"class":359},[353,2828,383],{"class":359},[353,2830,363],{"class":359},[353,2832,2833],{"class":366},"nl",[353,2835,363],{"class":359},[353,2837,608],{"class":359},[353,2839,363],{"class":359},[353,2841,2842],{"class":366},"rap",[353,2844,363],{"class":359},[353,2846,2847],{"class":359},":true,",[353,2849,363],{"class":359},[353,2851,2852],{"class":366},"rh",[353,2854,363],{"class":359},[353,2856,372],{"class":359},[353,2858,2859],{"class":483},"0",[353,2861,383],{"class":359},[353,2863,363],{"class":359},[353,2865,2866],{"class":366},"inputs",[353,2868,363],{"class":359},[353,2870,372],{"class":359},[353,2872,2859],{"class":483},[353,2874,383],{"class":359},[353,2876,363],{"class":359},[353,2878,679],{"class":366},[353,2880,363],{"class":359},[353,2882,372],{"class":359},[353,2884,2885],{"class":483},"170",[353,2887,383],{"class":359},[353,2889,363],{"class":359},[353,2891,693],{"class":366},[353,2893,363],{"class":359},[353,2895,372],{"class":359},[353,2897,2898],{"class":483},"660",[353,2900,383],{"class":359},[353,2902,363],{"class":359},[353,2904,707],{"class":366},[353,2906,363],{"class":359},[353,2908,712],{"class":359},[353,2910,363],{"class":359},[353,2912,2913],{"class":377},"d881d251071bd317",[353,2915,363],{"class":359},[353,2917,1860],{"class":359},[353,2919,363],{"class":359},[353,2921,367],{"class":366},[353,2923,363],{"class":359},[353,2925,372],{"class":359},[353,2927,363],{"class":359},[353,2929,2913],{"class":377},[353,2931,363],{"class":359},[353,2933,383],{"class":359},[353,2935,363],{"class":359},[353,2937,388],{"class":366},[353,2939,363],{"class":359},[353,2941,372],{"class":359},[353,2943,363],{"class":359},[353,2945,183],{"class":377},[353,2947,363],{"class":359},[353,2949,383],{"class":359},[353,2951,363],{"class":359},[353,2953,405],{"class":366},[353,2955,363],{"class":359},[353,2957,372],{"class":359},[353,2959,363],{"class":359},[353,2961,414],{"class":377},[353,2963,363],{"class":359},[353,2965,383],{"class":359},[353,2967,363],{"class":359},[353,2969,666],{"class":366},[353,2971,363],{"class":359},[353,2973,372],{"class":359},[353,2975,363],{"class":359},[353,2977,2978],{"class":377},"debug 1",[353,2980,363],{"class":359},[353,2982,383],{"class":359},[353,2984,363],{"class":359},[353,2986,2987],{"class":366},"active",[353,2989,363],{"class":359},[353,2991,2847],{"class":359},[353,2993,363],{"class":359},[353,2995,2996],{"class":366},"tosidebar",[353,2998,363],{"class":359},[353,3000,2847],{"class":359},[353,3002,363],{"class":359},[353,3004,3005],{"class":366},"console",[353,3007,363],{"class":359},[353,3009,608],{"class":359},[353,3011,363],{"class":359},[353,3013,3014],{"class":366},"tostatus",[353,3016,363],{"class":359},[353,3018,608],{"class":359},[353,3020,363],{"class":359},[353,3022,3023],{"class":366},"complete",[353,3025,363],{"class":359},[353,3027,372],{"class":359},[353,3029,363],{"class":359},[353,3031,3032],{"class":377},"false",[353,3034,363],{"class":359},[353,3036,383],{"class":359},[353,3038,363],{"class":359},[353,3040,3041],{"class":366},"statusVal",[353,3043,363],{"class":359},[353,3045,372],{"class":359},[353,3047,548],{"class":359},[353,3049,383],{"class":359},[353,3051,363],{"class":359},[353,3053,3054],{"class":366},"statusType",[353,3056,363],{"class":359},[353,3058,372],{"class":359},[353,3060,363],{"class":359},[353,3062,3063],{"class":377},"auto",[353,3065,363],{"class":359},[353,3067,383],{"class":359},[353,3069,363],{"class":359},[353,3071,679],{"class":366},[353,3073,363],{"class":359},[353,3075,372],{"class":359},[353,3077,2341],{"class":483},[353,3079,383],{"class":359},[353,3081,363],{"class":359},[353,3083,693],{"class":366},[353,3085,363],{"class":359},[353,3087,372],{"class":359},[353,3089,2898],{"class":483},[353,3091,383],{"class":359},[353,3093,363],{"class":359},[353,3095,707],{"class":366},[353,3097,363],{"class":359},[353,3099,955],{"class":359},[353,3101,363],{"class":359},[353,3103,367],{"class":366},[353,3105,363],{"class":359},[353,3107,372],{"class":359},[353,3109,363],{"class":359},[353,3111,3112],{"class":377},"55f43460af9601ec",[353,3114,363],{"class":359},[353,3116,383],{"class":359},[353,3118,363],{"class":359},[353,3120,388],{"class":366},[353,3122,363],{"class":359},[353,3124,372],{"class":359},[353,3126,363],{"class":359},[353,3128,3129],{"class":377},"comment",[353,3131,363],{"class":359},[353,3133,383],{"class":359},[353,3135,363],{"class":359},[353,3137,405],{"class":366},[353,3139,363],{"class":359},[353,3141,372],{"class":359},[353,3143,363],{"class":359},[353,3145,414],{"class":377},[353,3147,363],{"class":359},[353,3149,383],{"class":359},[353,3151,363],{"class":359},[353,3153,666],{"class":366},[353,3155,363],{"class":359},[353,3157,372],{"class":359},[353,3159,363],{"class":359},[353,3161,3162],{"class":377},"Retrieving the data from mqtt",[353,3164,363],{"class":359},[353,3166,383],{"class":359},[353,3168,363],{"class":359},[353,3170,3171],{"class":366},"info",[353,3173,363],{"class":359},[353,3175,372],{"class":359},[353,3177,548],{"class":359},[353,3179,383],{"class":359},[353,3181,363],{"class":359},[353,3183,679],{"class":366},[353,3185,363],{"class":359},[353,3187,372],{"class":359},[353,3189,700],{"class":483},[353,3191,383],{"class":359},[353,3193,363],{"class":359},[353,3195,693],{"class":366},[353,3197,363],{"class":359},[353,3199,372],{"class":359},[353,3201,3202],{"class":483},"600",[353,3204,383],{"class":359},[353,3206,363],{"class":359},[353,3208,707],{"class":366},[353,3210,363],{"class":359},[353,3212,955],{"class":359},[353,3214,363],{"class":359},[353,3216,367],{"class":366},[353,3218,363],{"class":359},[353,3220,372],{"class":359},[353,3222,363],{"class":359},[353,3224,3225],{"class":377},"628ab54495901021",[353,3227,363],{"class":359},[353,3229,383],{"class":359},[353,3231,363],{"class":359},[353,3233,388],{"class":366},[353,3235,363],{"class":359},[353,3237,372],{"class":359},[353,3239,363],{"class":359},[353,3241,3129],{"class":377},[353,3243,363],{"class":359},[353,3245,383],{"class":359},[353,3247,363],{"class":359},[353,3249,405],{"class":366},[353,3251,363],{"class":359},[353,3253,372],{"class":359},[353,3255,363],{"class":359},[353,3257,414],{"class":377},[353,3259,363],{"class":359},[353,3261,383],{"class":359},[353,3263,363],{"class":359},[353,3265,666],{"class":366},[353,3267,363],{"class":359},[353,3269,372],{"class":359},[353,3271,363],{"class":359},[353,3273,3274],{"class":377},"Bridging OPC UA data to MQTT",[353,3276,363],{"class":359},[353,3278,383],{"class":359},[353,3280,363],{"class":359},[353,3282,3171],{"class":366},[353,3284,363],{"class":359},[353,3286,372],{"class":359},[353,3288,548],{"class":359},[353,3290,383],{"class":359},[353,3292,363],{"class":359},[353,3294,679],{"class":366},[353,3296,363],{"class":359},[353,3298,372],{"class":359},[353,3300,3301],{"class":483},"350",[353,3303,383],{"class":359},[353,3305,363],{"class":359},[353,3307,693],{"class":366},[353,3309,363],{"class":359},[353,3311,372],{"class":359},[353,3313,3314],{"class":483},"240",[353,3316,383],{"class":359},[353,3318,363],{"class":359},[353,3320,707],{"class":366},[353,3322,363],{"class":359},[353,3324,955],{"class":359},[353,3326,363],{"class":359},[353,3328,367],{"class":366},[353,3330,363],{"class":359},[353,3332,372],{"class":359},[353,3334,363],{"class":359},[353,3336,3337],{"class":377},"ce6b8a0e2c8a895d",[353,3339,363],{"class":359},[353,3341,383],{"class":359},[353,3343,363],{"class":359},[353,3345,388],{"class":366},[353,3347,363],{"class":359},[353,3349,372],{"class":359},[353,3351,363],{"class":359},[353,3353,123],{"class":377},[353,3355,363],{"class":359},[353,3357,383],{"class":359},[353,3359,363],{"class":359},[353,3361,405],{"class":366},[353,3363,363],{"class":359},[353,3365,372],{"class":359},[353,3367,363],{"class":359},[353,3369,414],{"class":377},[353,3371,363],{"class":359},[353,3373,383],{"class":359},[353,3375,363],{"class":359},[353,3377,666],{"class":366},[353,3379,363],{"class":359},[353,3381,372],{"class":359},[353,3383,548],{"class":359},[353,3385,383],{"class":359},[353,3387,363],{"class":359},[353,3389,1662],{"class":366},[353,3391,363],{"class":359},[353,3393,1667],{"class":359},[353,3395,363],{"class":359},[353,3397,1673],{"class":1672},[353,3399,363],{"class":359},[353,3401,372],{"class":359},[353,3403,363],{"class":359},[353,3405,1682],{"class":377},[353,3407,363],{"class":359},[353,3409,383],{"class":359},[353,3411,363],{"class":359},[353,3413,12],{"class":1672},[353,3415,363],{"class":359},[353,3417,372],{"class":359},[353,3419,363],{"class":359},[353,3421,788],{"class":377},[353,3423,363],{"class":359},[353,3425,383],{"class":359},[353,3427,363],{"class":359},[353,3429,1707],{"class":1672},[353,3431,363],{"class":359},[353,3433,372],{"class":359},[353,3435,363],{"class":359},[353,3437,1716],{"class":377},[353,3439,363],{"class":359},[353,3441,383],{"class":359},[353,3443,363],{"class":359},[353,3445,1725],{"class":1672},[353,3447,363],{"class":359},[353,3449,372],{"class":359},[353,3451,363],{"class":359},[353,3453,3454],{"class":377},"ns=3;i=1010,datatype=float",[353,3456,363],{"class":359},[353,3458,383],{"class":359},[353,3460,363],{"class":359},[353,3462,1743],{"class":1672},[353,3464,363],{"class":359},[353,3466,372],{"class":359},[353,3468,363],{"class":359},[353,3470,1752],{"class":377},[353,3472,363],{"class":359},[353,3474,1757],{"class":359},[353,3476,363],{"class":359},[353,3478,441],{"class":366},[353,3480,363],{"class":359},[353,3482,372],{"class":359},[353,3484,548],{"class":359},[353,3486,383],{"class":359},[353,3488,363],{"class":359},[353,3490,1774],{"class":366},[353,3492,363],{"class":359},[353,3494,372],{"class":359},[353,3496,548],{"class":359},[353,3498,383],{"class":359},[353,3500,363],{"class":359},[353,3502,1787],{"class":366},[353,3504,363],{"class":359},[353,3506,372],{"class":359},[353,3508,548],{"class":359},[353,3510,383],{"class":359},[353,3512,363],{"class":359},[353,3514,1725],{"class":366},[353,3516,363],{"class":359},[353,3518,372],{"class":359},[353,3520,548],{"class":359},[353,3522,383],{"class":359},[353,3524,363],{"class":359},[353,3526,1812],{"class":366},[353,3528,363],{"class":359},[353,3530,608],{"class":359},[353,3532,363],{"class":359},[353,3534,679],{"class":366},[353,3536,363],{"class":359},[353,3538,372],{"class":359},[353,3540,3541],{"class":483},"290",[353,3543,383],{"class":359},[353,3545,363],{"class":359},[353,3547,693],{"class":366},[353,3549,363],{"class":359},[353,3551,372],{"class":359},[353,3553,700],{"class":483},[353,3555,383],{"class":359},[353,3557,363],{"class":359},[353,3559,707],{"class":366},[353,3561,363],{"class":359},[353,3563,712],{"class":359},[353,3565,363],{"class":359},[353,3567,378],{"class":377},[353,3569,363],{"class":359},[353,3571,1860],{"class":359},[353,3573,363],{"class":359},[353,3575,367],{"class":366},[353,3577,363],{"class":359},[353,3579,372],{"class":359},[353,3581,363],{"class":359},[353,3583,3584],{"class":377},"50fe2b9310d3bb3f",[353,3586,363],{"class":359},[353,3588,383],{"class":359},[353,3590,363],{"class":359},[353,3592,388],{"class":366},[353,3594,363],{"class":359},[353,3596,372],{"class":359},[353,3598,363],{"class":359},[353,3600,123],{"class":377},[353,3602,363],{"class":359},[353,3604,383],{"class":359},[353,3606,363],{"class":359},[353,3608,405],{"class":366},[353,3610,363],{"class":359},[353,3612,372],{"class":359},[353,3614,363],{"class":359},[353,3616,414],{"class":377},[353,3618,363],{"class":359},[353,3620,383],{"class":359},[353,3622,363],{"class":359},[353,3624,666],{"class":366},[353,3626,363],{"class":359},[353,3628,372],{"class":359},[353,3630,548],{"class":359},[353,3632,383],{"class":359},[353,3634,363],{"class":359},[353,3636,1662],{"class":366},[353,3638,363],{"class":359},[353,3640,1667],{"class":359},[353,3642,363],{"class":359},[353,3644,1673],{"class":1672},[353,3646,363],{"class":359},[353,3648,372],{"class":359},[353,3650,363],{"class":359},[353,3652,1682],{"class":377},[353,3654,363],{"class":359},[353,3656,383],{"class":359},[353,3658,363],{"class":359},[353,3660,12],{"class":1672},[353,3662,363],{"class":359},[353,3664,372],{"class":359},[353,3666,363],{"class":359},[353,3668,788],{"class":377},[353,3670,363],{"class":359},[353,3672,383],{"class":359},[353,3674,363],{"class":359},[353,3676,1707],{"class":1672},[353,3678,363],{"class":359},[353,3680,372],{"class":359},[353,3682,363],{"class":359},[353,3684,1716],{"class":377},[353,3686,363],{"class":359},[353,3688,383],{"class":359},[353,3690,363],{"class":359},[353,3692,1725],{"class":1672},[353,3694,363],{"class":359},[353,3696,372],{"class":359},[353,3698,363],{"class":359},[353,3700,3701],{"class":377},"ns=3;i=1011,datatype=basedatatype",[353,3703,363],{"class":359},[353,3705,383],{"class":359},[353,3707,363],{"class":359},[353,3709,1743],{"class":1672},[353,3711,363],{"class":359},[353,3713,372],{"class":359},[353,3715,363],{"class":359},[353,3717,1752],{"class":377},[353,3719,363],{"class":359},[353,3721,1757],{"class":359},[353,3723,363],{"class":359},[353,3725,441],{"class":366},[353,3727,363],{"class":359},[353,3729,372],{"class":359},[353,3731,548],{"class":359},[353,3733,383],{"class":359},[353,3735,363],{"class":359},[353,3737,1774],{"class":366},[353,3739,363],{"class":359},[353,3741,372],{"class":359},[353,3743,548],{"class":359},[353,3745,383],{"class":359},[353,3747,363],{"class":359},[353,3749,1787],{"class":366},[353,3751,363],{"class":359},[353,3753,372],{"class":359},[353,3755,548],{"class":359},[353,3757,383],{"class":359},[353,3759,363],{"class":359},[353,3761,1725],{"class":366},[353,3763,363],{"class":359},[353,3765,372],{"class":359},[353,3767,548],{"class":359},[353,3769,383],{"class":359},[353,3771,363],{"class":359},[353,3773,1812],{"class":366},[353,3775,363],{"class":359},[353,3777,608],{"class":359},[353,3779,363],{"class":359},[353,3781,679],{"class":366},[353,3783,363],{"class":359},[353,3785,372],{"class":359},[353,3787,3541],{"class":483},[353,3789,383],{"class":359},[353,3791,363],{"class":359},[353,3793,693],{"class":366},[353,3795,363],{"class":359},[353,3797,372],{"class":359},[353,3799,1255],{"class":483},[353,3801,383],{"class":359},[353,3803,363],{"class":359},[353,3805,707],{"class":366},[353,3807,363],{"class":359},[353,3809,712],{"class":359},[353,3811,363],{"class":359},[353,3813,968],{"class":377},[353,3815,363],{"class":359},[353,3817,1860],{"class":359},[353,3819,363],{"class":359},[353,3821,367],{"class":366},[353,3823,363],{"class":359},[353,3825,372],{"class":359},[353,3827,363],{"class":359},[353,3829,3830],{"class":377},"9cf691f55748d013",[353,3832,363],{"class":359},[353,3834,383],{"class":359},[353,3836,363],{"class":359},[353,3838,388],{"class":366},[353,3840,363],{"class":359},[353,3842,372],{"class":359},[353,3844,363],{"class":359},[353,3846,123],{"class":377},[353,3848,363],{"class":359},[353,3850,383],{"class":359},[353,3852,363],{"class":359},[353,3854,405],{"class":366},[353,3856,363],{"class":359},[353,3858,372],{"class":359},[353,3860,363],{"class":359},[353,3862,414],{"class":377},[353,3864,363],{"class":359},[353,3866,383],{"class":359},[353,3868,363],{"class":359},[353,3870,666],{"class":366},[353,3872,363],{"class":359},[353,3874,372],{"class":359},[353,3876,548],{"class":359},[353,3878,383],{"class":359},[353,3880,363],{"class":359},[353,3882,1662],{"class":366},[353,3884,363],{"class":359},[353,3886,1667],{"class":359},[353,3888,363],{"class":359},[353,3890,1673],{"class":1672},[353,3892,363],{"class":359},[353,3894,372],{"class":359},[353,3896,363],{"class":359},[353,3898,1682],{"class":377},[353,3900,363],{"class":359},[353,3902,383],{"class":359},[353,3904,363],{"class":359},[353,3906,12],{"class":1672},[353,3908,363],{"class":359},[353,3910,372],{"class":359},[353,3912,363],{"class":359},[353,3914,788],{"class":377},[353,3916,363],{"class":359},[353,3918,383],{"class":359},[353,3920,363],{"class":359},[353,3922,1707],{"class":1672},[353,3924,363],{"class":359},[353,3926,372],{"class":359},[353,3928,363],{"class":359},[353,3930,1716],{"class":377},[353,3932,363],{"class":359},[353,3934,383],{"class":359},[353,3936,363],{"class":359},[353,3938,1725],{"class":1672},[353,3940,363],{"class":359},[353,3942,372],{"class":359},[353,3944,363],{"class":359},[353,3946,3947],{"class":377},"ns=3;i=1012,datatype=float",[353,3949,363],{"class":359},[353,3951,383],{"class":359},[353,3953,363],{"class":359},[353,3955,1743],{"class":1672},[353,3957,363],{"class":359},[353,3959,372],{"class":359},[353,3961,363],{"class":359},[353,3963,1752],{"class":377},[353,3965,363],{"class":359},[353,3967,1757],{"class":359},[353,3969,363],{"class":359},[353,3971,441],{"class":366},[353,3973,363],{"class":359},[353,3975,372],{"class":359},[353,3977,548],{"class":359},[353,3979,383],{"class":359},[353,3981,363],{"class":359},[353,3983,1774],{"class":366},[353,3985,363],{"class":359},[353,3987,372],{"class":359},[353,3989,548],{"class":359},[353,3991,383],{"class":359},[353,3993,363],{"class":359},[353,3995,1787],{"class":366},[353,3997,363],{"class":359},[353,3999,372],{"class":359},[353,4001,548],{"class":359},[353,4003,383],{"class":359},[353,4005,363],{"class":359},[353,4007,1725],{"class":366},[353,4009,363],{"class":359},[353,4011,372],{"class":359},[353,4013,548],{"class":359},[353,4015,383],{"class":359},[353,4017,363],{"class":359},[353,4019,1812],{"class":366},[353,4021,363],{"class":359},[353,4023,608],{"class":359},[353,4025,363],{"class":359},[353,4027,679],{"class":366},[353,4029,363],{"class":359},[353,4031,372],{"class":359},[353,4033,3541],{"class":483},[353,4035,383],{"class":359},[353,4037,363],{"class":359},[353,4039,693],{"class":366},[353,4041,363],{"class":359},[353,4043,372],{"class":359},[353,4045,686],{"class":483},[353,4047,383],{"class":359},[353,4049,363],{"class":359},[353,4051,707],{"class":366},[353,4053,363],{"class":359},[353,4055,712],{"class":359},[353,4057,363],{"class":359},[353,4059,1287],{"class":377},[353,4061,363],{"class":359},[353,4063,1860],{"class":359},[353,4065,363],{"class":359},[353,4067,367],{"class":366},[353,4069,363],{"class":359},[353,4071,372],{"class":359},[353,4073,363],{"class":359},[353,4075,4076],{"class":377},"de74dabc616c3094",[353,4078,363],{"class":359},[353,4080,383],{"class":359},[353,4082,363],{"class":359},[353,4084,388],{"class":366},[353,4086,363],{"class":359},[353,4088,372],{"class":359},[353,4090,363],{"class":359},[353,4092,117],{"class":377},[353,4094,363],{"class":359},[353,4096,383],{"class":359},[353,4098,363],{"class":359},[353,4100,405],{"class":366},[353,4102,363],{"class":359},[353,4104,372],{"class":359},[353,4106,363],{"class":359},[353,4108,414],{"class":377},[353,4110,363],{"class":359},[353,4112,383],{"class":359},[353,4114,363],{"class":359},[353,4116,666],{"class":366},[353,4118,363],{"class":359},[353,4120,372],{"class":359},[353,4122,548],{"class":359},[353,4124,383],{"class":359},[353,4126,363],{"class":359},[353,4128,4129],{"class":366},"props",[353,4131,363],{"class":359},[353,4133,1667],{"class":359},[353,4135,363],{"class":359},[353,4137,12],{"class":1672},[353,4139,363],{"class":359},[353,4141,372],{"class":359},[353,4143,363],{"class":359},[353,4145,2473],{"class":377},[353,4147,363],{"class":359},[353,4149,4150],{"class":359},"},{",[353,4152,363],{"class":359},[353,4154,12],{"class":1672},[353,4156,363],{"class":359},[353,4158,372],{"class":359},[353,4160,363],{"class":359},[353,4162,788],{"class":377},[353,4164,363],{"class":359},[353,4166,383],{"class":359},[353,4168,363],{"class":359},[353,4170,4171],{"class":1672},"vt",[353,4173,363],{"class":359},[353,4175,372],{"class":359},[353,4177,363],{"class":359},[353,4179,1752],{"class":377},[353,4181,363],{"class":359},[353,4183,1757],{"class":359},[353,4185,363],{"class":359},[353,4187,4188],{"class":366},"repeat",[353,4190,363],{"class":359},[353,4192,372],{"class":359},[353,4194,548],{"class":359},[353,4196,383],{"class":359},[353,4198,363],{"class":359},[353,4200,4201],{"class":366},"crontab",[353,4203,363],{"class":359},[353,4205,372],{"class":359},[353,4207,548],{"class":359},[353,4209,383],{"class":359},[353,4211,363],{"class":359},[353,4213,4214],{"class":366},"once",[353,4216,363],{"class":359},[353,4218,608],{"class":359},[353,4220,363],{"class":359},[353,4222,4223],{"class":366},"onceDelay",[353,4225,363],{"class":359},[353,4227,372],{"class":359},[353,4229,4230],{"class":483},"0.1",[353,4232,383],{"class":359},[353,4234,363],{"class":359},[353,4236,788],{"class":366},[353,4238,363],{"class":359},[353,4240,372],{"class":359},[353,4242,548],{"class":359},[353,4244,383],{"class":359},[353,4246,363],{"class":359},[353,4248,2473],{"class":366},[353,4250,363],{"class":359},[353,4252,372],{"class":359},[353,4254,548],{"class":359},[353,4256,383],{"class":359},[353,4258,363],{"class":359},[353,4260,4261],{"class":366},"payloadType",[353,4263,363],{"class":359},[353,4265,372],{"class":359},[353,4267,363],{"class":359},[353,4269,4270],{"class":377},"date",[353,4272,363],{"class":359},[353,4274,383],{"class":359},[353,4276,363],{"class":359},[353,4278,679],{"class":366},[353,4280,363],{"class":359},[353,4282,372],{"class":359},[353,4284,4285],{"class":483},"120",[353,4287,383],{"class":359},[353,4289,363],{"class":359},[353,4291,693],{"class":366},[353,4293,363],{"class":359},[353,4295,372],{"class":359},[353,4297,1255],{"class":483},[353,4299,383],{"class":359},[353,4301,363],{"class":359},[353,4303,707],{"class":366},[353,4305,363],{"class":359},[353,4307,712],{"class":359},[353,4309,363],{"class":359},[353,4311,3337],{"class":377},[353,4313,363],{"class":359},[353,4315,383],{"class":359},[353,4317,363],{"class":359},[353,4319,3584],{"class":377},[353,4321,363],{"class":359},[353,4323,383],{"class":359},[353,4325,363],{"class":359},[353,4327,3830],{"class":377},[353,4329,363],{"class":359},[353,4331,1860],{"class":359},[353,4333,363],{"class":359},[353,4335,367],{"class":366},[353,4337,363],{"class":359},[353,4339,372],{"class":359},[353,4341,363],{"class":359},[353,4343,432],{"class":377},[353,4345,363],{"class":359},[353,4347,383],{"class":359},[353,4349,363],{"class":359},[353,4351,388],{"class":366},[353,4353,363],{"class":359},[353,4355,372],{"class":359},[353,4357,363],{"class":359},[353,4359,4360],{"class":377},"OpcUa-Endpoint",[353,4362,363],{"class":359},[353,4364,383],{"class":359},[353,4366,363],{"class":359},[353,4368,423],{"class":366},[353,4370,363],{"class":359},[353,4372,372],{"class":359},[353,4374,363],{"class":359},[353,4376,4377],{"class":377},"opc.tcp:\u002F\u002FRoni:53530\u002FOPCUA\u002FSimulationServer",[353,4379,363],{"class":359},[353,4381,383],{"class":359},[353,4383,363],{"class":359},[353,4385,4386],{"class":366},"secpol",[353,4388,363],{"class":359},[353,4390,372],{"class":359},[353,4392,363],{"class":359},[353,4394,577],{"class":377},[353,4396,363],{"class":359},[353,4398,383],{"class":359},[353,4400,363],{"class":359},[353,4402,4403],{"class":366},"secmode",[353,4405,363],{"class":359},[353,4407,372],{"class":359},[353,4409,363],{"class":359},[353,4411,577],{"class":377},[353,4413,363],{"class":359},[353,4415,383],{"class":359},[353,4417,363],{"class":359},[353,4419,4420],{"class":366},"none",[353,4422,363],{"class":359},[353,4424,2847],{"class":359},[353,4426,363],{"class":359},[353,4428,4429],{"class":366},"login",[353,4431,363],{"class":359},[353,4433,608],{"class":359},[353,4435,363],{"class":359},[353,4437,4438],{"class":366},"usercert",[353,4440,363],{"class":359},[353,4442,608],{"class":359},[353,4444,363],{"class":359},[353,4446,4447],{"class":366},"usercertificate",[353,4449,363],{"class":359},[353,4451,372],{"class":359},[353,4453,548],{"class":359},[353,4455,383],{"class":359},[353,4457,363],{"class":359},[353,4459,4460],{"class":366},"userprivatekey",[353,4462,363],{"class":359},[353,4464,372],{"class":359},[353,4466,548],{"class":359},[353,4468,4150],{"class":359},[353,4470,363],{"class":359},[353,4472,367],{"class":366},[353,4474,363],{"class":359},[353,4476,372],{"class":359},[353,4478,363],{"class":359},[353,4480,916],{"class":377},[353,4482,363],{"class":359},[353,4484,383],{"class":359},[353,4486,363],{"class":359},[353,4488,388],{"class":366},[353,4490,363],{"class":359},[353,4492,372],{"class":359},[353,4494,363],{"class":359},[353,4496,4497],{"class":377},"mqtt-broker",[353,4499,363],{"class":359},[353,4501,383],{"class":359},[353,4503,363],{"class":359},[353,4505,666],{"class":366},[353,4507,363],{"class":359},[353,4509,372],{"class":359},[353,4511,548],{"class":359},[353,4513,383],{"class":359},[353,4515,363],{"class":359},[353,4517,907],{"class":366},[353,4519,363],{"class":359},[353,4521,372],{"class":359},[353,4523,363],{"class":359},[353,4525,4526],{"class":377},"http:\u002F\u002Fbroker.hivemq.com",[353,4528,363],{"class":359},[353,4530,383],{"class":359},[353,4532,363],{"class":359},[353,4534,4535],{"class":366},"port",[353,4537,363],{"class":359},[353,4539,372],{"class":359},[353,4541,363],{"class":359},[353,4543,4544],{"class":377},"1883",[353,4546,363],{"class":359},[353,4548,383],{"class":359},[353,4550,363],{"class":359},[353,4552,4553],{"class":366},"clientid",[353,4555,363],{"class":359},[353,4557,372],{"class":359},[353,4559,548],{"class":359},[353,4561,383],{"class":359},[353,4563,363],{"class":359},[353,4565,4566],{"class":366},"autoConnect",[353,4568,363],{"class":359},[353,4570,2847],{"class":359},[353,4572,363],{"class":359},[353,4574,4575],{"class":366},"usetls",[353,4577,363],{"class":359},[353,4579,608],{"class":359},[353,4581,363],{"class":359},[353,4583,4584],{"class":366},"protocolVersion",[353,4586,363],{"class":359},[353,4588,372],{"class":359},[353,4590,363],{"class":359},[353,4592,4593],{"class":377},"4",[353,4595,363],{"class":359},[353,4597,383],{"class":359},[353,4599,363],{"class":359},[353,4601,4602],{"class":366},"keepalive",[353,4604,363],{"class":359},[353,4606,372],{"class":359},[353,4608,363],{"class":359},[353,4610,4611],{"class":377},"60",[353,4613,363],{"class":359},[353,4615,383],{"class":359},[353,4617,363],{"class":359},[353,4619,4620],{"class":366},"cleansession",[353,4622,363],{"class":359},[353,4624,2847],{"class":359},[353,4626,363],{"class":359},[353,4628,4629],{"class":366},"autoUnsubscribe",[353,4631,363],{"class":359},[353,4633,2847],{"class":359},[353,4635,363],{"class":359},[353,4637,4638],{"class":366},"birthTopic",[353,4640,363],{"class":359},[353,4642,372],{"class":359},[353,4644,548],{"class":359},[353,4646,383],{"class":359},[353,4648,363],{"class":359},[353,4650,4651],{"class":366},"birthQos",[353,4653,363],{"class":359},[353,4655,372],{"class":359},[353,4657,363],{"class":359},[353,4659,2859],{"class":377},[353,4661,363],{"class":359},[353,4663,383],{"class":359},[353,4665,363],{"class":359},[353,4667,4668],{"class":366},"birthRetain",[353,4670,363],{"class":359},[353,4672,372],{"class":359},[353,4674,363],{"class":359},[353,4676,3032],{"class":377},[353,4678,363],{"class":359},[353,4680,383],{"class":359},[353,4682,363],{"class":359},[353,4684,4685],{"class":366},"birthPayload",[353,4687,363],{"class":359},[353,4689,372],{"class":359},[353,4691,548],{"class":359},[353,4693,383],{"class":359},[353,4695,363],{"class":359},[353,4697,4698],{"class":366},"birthMsg",[353,4700,363],{"class":359},[353,4702,4703],{"class":359},":{},",[353,4705,363],{"class":359},[353,4707,4708],{"class":366},"closeTopic",[353,4710,363],{"class":359},[353,4712,372],{"class":359},[353,4714,548],{"class":359},[353,4716,383],{"class":359},[353,4718,363],{"class":359},[353,4720,4721],{"class":366},"closeQos",[353,4723,363],{"class":359},[353,4725,372],{"class":359},[353,4727,363],{"class":359},[353,4729,2859],{"class":377},[353,4731,363],{"class":359},[353,4733,383],{"class":359},[353,4735,363],{"class":359},[353,4737,4738],{"class":366},"closeRetain",[353,4740,363],{"class":359},[353,4742,372],{"class":359},[353,4744,363],{"class":359},[353,4746,3032],{"class":377},[353,4748,363],{"class":359},[353,4750,383],{"class":359},[353,4752,363],{"class":359},[353,4754,4755],{"class":366},"closePayload",[353,4757,363],{"class":359},[353,4759,372],{"class":359},[353,4761,548],{"class":359},[353,4763,383],{"class":359},[353,4765,363],{"class":359},[353,4767,4768],{"class":366},"closeMsg",[353,4770,363],{"class":359},[353,4772,4703],{"class":359},[353,4774,363],{"class":359},[353,4776,4777],{"class":366},"willTopic",[353,4779,363],{"class":359},[353,4781,372],{"class":359},[353,4783,548],{"class":359},[353,4785,383],{"class":359},[353,4787,363],{"class":359},[353,4789,4790],{"class":366},"willQos",[353,4792,363],{"class":359},[353,4794,372],{"class":359},[353,4796,363],{"class":359},[353,4798,2859],{"class":377},[353,4800,363],{"class":359},[353,4802,383],{"class":359},[353,4804,363],{"class":359},[353,4806,4807],{"class":366},"willRetain",[353,4809,363],{"class":359},[353,4811,372],{"class":359},[353,4813,363],{"class":359},[353,4815,3032],{"class":377},[353,4817,363],{"class":359},[353,4819,383],{"class":359},[353,4821,363],{"class":359},[353,4823,4824],{"class":366},"willPayload",[353,4826,363],{"class":359},[353,4828,372],{"class":359},[353,4830,548],{"class":359},[353,4832,383],{"class":359},[353,4834,363],{"class":359},[353,4836,4837],{"class":366},"willMsg",[353,4839,363],{"class":359},[353,4841,4703],{"class":359},[353,4843,363],{"class":359},[353,4845,868],{"class":366},[353,4847,363],{"class":359},[353,4849,372],{"class":359},[353,4851,548],{"class":359},[353,4853,383],{"class":359},[353,4855,363],{"class":359},[353,4857,4858],{"class":366},"sessionExpiry",[353,4860,363],{"class":359},[353,4862,372],{"class":359},[353,4864,548],{"class":359},[353,4866,4867],{"class":359},"}]\n",[55,4869,4871],{"id":4870},"bridging-mqtt-data-to-opc-ua","Bridging MQTT Data to OPC UA",[12,4873,4874],{},"In addition to bridging data from OPC UA to MQTT, you might also need to send data from MQTT back to an OPC UA server. This is often required in scenarios where external systems, such as Manufacturing Execution Systems (MES), need to update or control machinery settings.",[12,4876,4877],{},"For example, an MES can send commands or configuration changes via MQTT, which then need to be applied to an OPC UA-controlled machine.",[110,4879,4880,4886,4894,4900],{},[70,4881,4882,4883,4885],{},"Drag an ",[44,4884,2730],{}," node onto the Node-RED canvas and configure it with your MQTT broker details and the appropriate topic where the MES publishes commands.",[70,4887,114,4888,4890,4891,4893],{},[44,4889,123],{}," node onto the canvas, Set the ",[126,4892,128],{}," to the node ID and datatype of the property you wish to update.",[70,4895,4896,4897,4899],{},"Add an ",[44,4898,145],{}," node to the canvas and configure it with your OPC UA server. Set the action type to \"WRITE\" to send the received data.",[70,4901,187,4902,190,4904,4906,4907,190,4909,288],{},[44,4903,2730],{},[44,4905,123],{}," node, and the output of the ",[44,4908,123],{},[44,4910,145],{},[12,4912,4913,4917],{},[26,4914],{"alt":4915,"dataZoomable":29,"src":4916},"Image showing the successful bridging of MQTT data to OPC UA","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-to-opcua.gif",[32,4918,337],{},[342,4920,4921],{},[345,4922,4924],{"className":347,"code":4923,"language":349,"meta":29,"style":29},"[{\"id\":\"a099aefb08837e70\",\"type\":\"OpcUa-Client\",\"z\":\"FFF0000000000001\",\"endpoint\":\"9dd56eda04f5c5b5\",\"action\":\"write\",\"deadbandtype\":\"a\",\"deadbandvalue\":1,\"time\":10,\"timeUnit\":\"s\",\"certificate\":\"n\",\"localfile\":\"\",\"localkeyfile\":\"\",\"securitymode\":\"None\",\"securitypolicy\":\"None\",\"useTransport\":false,\"maxChunkCount\":1,\"maxMessageSize\":8192,\"receiveBufferSize\":8192,\"sendBufferSize\":8192,\"name\":\"\",\"x\":760,\"y\":220,\"wires\":[[],[]]},{\"id\":\"628ab54495901021\",\"type\":\"comment\",\"z\":\"FFF0000000000001\",\"name\":\"Bridging MQTT to OPC UA\",\"info\":\"\",\"x\":510,\"y\":140,\"wires\":[]},{\"id\":\"ce6b8a0e2c8a895d\",\"type\":\"change\",\"z\":\"FFF0000000000001\",\"name\":\"\",\"rules\":[{\"t\":\"set\",\"p\":\"topic\",\"pt\":\"msg\",\"to\":\"ns=3;i=1010,datatype=Boolean\",\"tot\":\"str\"},{\"t\":\"set\",\"p\":\"payload\",\"pt\":\"msg\",\"to\":\"paylad\",\"tot\":\"msg\"}],\"action\":\"\",\"property\":\"\",\"from\":\"\",\"to\":\"\",\"reg\":false,\"x\":540,\"y\":220,\"wires\":[[\"a099aefb08837e70\"]]},{\"id\":\"0a89ebd0d9f6f577\",\"type\":\"mqtt in\",\"z\":\"FFF0000000000001\",\"name\":\"\",\"topic\":\"command\u002Fcnc\u002F\",\"qos\":\"2\",\"datatype\":\"auto-detect\",\"broker\":\"abd4e6202945fee3\",\"nl\":false,\"rap\":true,\"rh\":0,\"inputs\":0,\"x\":300,\"y\":220,\"wires\":[[\"ce6b8a0e2c8a895d\"]]},{\"id\":\"4cf4e425d075722a\",\"type\":\"mqtt out\",\"z\":\"FFF0000000000001\",\"name\":\"\",\"topic\":\"command\u002Fcnc\u002F\",\"qos\":\"1\",\"retain\":\"\",\"respTopic\":\"\",\"contentType\":\"\",\"userProps\":\"\",\"correl\":\"\",\"expiry\":\"\",\"broker\":\"abd4e6202945fee3\",\"x\":660,\"y\":400,\"wires\":[]},{\"id\":\"8e339e511c573905\",\"type\":\"inject\",\"z\":\"FFF0000000000001\",\"name\":\"\",\"props\":[{\"p\":\"payload\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"false\",\"payloadType\":\"bool\",\"x\":330,\"y\":400,\"wires\":[[\"4cf4e425d075722a\"]]},{\"id\":\"9c33cff54b0aca15\",\"type\":\"comment\",\"z\":\"FFF0000000000001\",\"name\":\"Sending Command\",\"info\":\"\",\"x\":490,\"y\":340,\"wires\":[]},{\"id\":\"9dd56eda04f5c5b5\",\"type\":\"OpcUa-Endpoint\",\"endpoint\":\"opc.tcp:\u002F\u002FRoni:53530\u002FOPCUA\u002FSimulationServer\",\"secpol\":\"None\",\"secmode\":\"None\",\"none\":true,\"login\":false,\"usercert\":false,\"usercertificate\":\"\",\"userprivatekey\":\"\"},{\"id\":\"abd4e6202945fee3\",\"type\":\"mqtt-broker\",\"name\":\"\",\"broker\":\"http:\u002F\u002Fbroker.hivemq.com\",\"port\":\"1883\",\"clientid\":\"\",\"autoConnect\":true,\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"autoUnsubscribe\":true,\"birthTopic\":\"\",\"birthQos\":\"0\",\"birthRetain\":\"false\",\"birthPayload\":\"\",\"birthMsg\":{},\"closeTopic\":\"\",\"closeQos\":\"0\",\"closeRetain\":\"false\",\"closePayload\":\"\",\"closeMsg\":{},\"willTopic\":\"\",\"willQos\":\"0\",\"willRetain\":\"false\",\"willPayload\":\"\",\"willMsg\":{},\"userProps\":\"\",\"sessionExpiry\":\"\"}]\n",[126,4925,4926],{"__ignoreMap":29},[353,4927,4928,4930,4932,4934,4936,4938,4940,4942,4944,4946,4948,4950,4952,4954,4956,4958,4960,4962,4964,4966,4968,4970,4972,4975,4977,4979,4981,4983,4985,4987,4989,4991,4993,4995,4997,4999,5001,5003,5005,5008,5010,5012,5014,5016,5018,5020,5022,5024,5026,5028,5030,5032,5034,5036,5038,5040,5042,5044,5046,5048,5050,5052,5054,5056,5058,5060,5062,5064,5066,5068,5070,5072,5074,5076,5078,5080,5082,5084,5086,5088,5090,5092,5094,5096,5098,5100,5102,5104,5106,5108,5110,5112,5114,5116,5118,5120,5122,5124,5126,5128,5130,5132,5134,5136,5138,5140,5142,5144,5146,5148,5150,5152,5154,5156,5158,5160,5162,5164,5166,5168,5170,5172,5174,5176,5178,5180,5182,5184,5186,5188,5190,5192,5194,5196,5198,5200,5202,5204,5206,5208,5210,5212,5214,5216,5219,5221,5223,5225,5227,5229,5232,5234,5236,5238,5240,5243,5245,5247,5249,5251,5253,5255,5257,5259,5261,5263,5265,5267,5269,5271,5273,5275,5277,5279,5281,5283,5285,5287,5289,5291,5293,5295,5297,5299,5301,5304,5306,5308,5310,5312,5314,5316,5318,5320,5322,5324,5326,5328,5331,5333,5335,5337,5339,5341,5344,5346,5348,5350,5352,5354,5356,5358,5360,5362,5364,5366,5368,5370,5372,5374,5376,5378,5380,5382,5384,5386,5388,5390,5392,5394,5396,5398,5400,5402,5404,5406,5408,5410,5412,5414,5416,5418,5420,5422,5424,5426,5428,5430,5432,5434,5436,5438,5440,5442,5444,5446,5448,5450,5452,5454,5456,5458,5460,5462,5464,5466,5468,5470,5472,5474,5476,5478,5480,5483,5485,5487,5489,5491,5493,5495,5497,5499,5501,5503,5505,5507,5509,5511,5513,5515,5517,5519,5521,5523,5525,5527,5529,5531,5533,5535,5537,5539,5541,5543,5545,5547,5549,5551,5553,5555,5557,5559,5561,5564,5566,5568,5570,5572,5574,5576,5578,5580,5582,5584,5586,5588,5590,5592,5594,5596,5598,5600,5602,5604,5606,5608,5610,5612,5614,5616,5618,5620,5622,5624,5626,5628,5630,5632,5634,5636,5638,5640,5642,5644,5646,5648,5651,5653,5655,5657,5659,5661,5663,5665,5667,5669,5671,5673,5675,5677,5679,5681,5683,5685,5687,5689,5691,5694,5696,5698,5700,5702,5704,5706,5708,5710,5712,5714,5716,5718,5720,5722,5724,5726,5728,5730,5732,5734,5736,5738,5740,5742,5744,5746,5748,5750,5752,5755,5757,5759,5761,5763,5765,5767,5769,5771,5773,5775,5777,5779,5781,5783,5785,5787,5789,5791,5793,5795,5797,5799,5801,5803,5805,5807,5809,5811,5813,5815,5817,5819,5821,5823,5825,5827,5829,5831,5833,5835,5837,5839,5841,5843,5845,5847,5849,5851,5853,5855,5857,5859,5861,5863,5865,5867,5869,5871,5873,5875,5877,5879,5881,5883,5885,5887,5889,5891,5893,5895,5897,5900,5902,5904,5906,5908,5910,5912,5914,5916,5918,5920,5922,5924,5926,5928,5930,5932,5934,5936,5938,5940,5942,5944,5946,5948,5950,5952,5954,5956,5958,5960,5962,5964,5966,5968,5970,5972,5974,5976,5978,5980,5982,5984,5986,5988,5990,5992,5994,5996,5998,6000,6002,6004,6006,6008,6010,6012,6014,6016,6018,6020,6022,6024,6026,6028,6030,6032,6034,6036,6038,6040,6042,6044,6046,6048,6050,6052,6054,6056,6058,6060,6062,6064,6066,6068,6070,6072,6074,6076,6078,6080,6082,6084,6086,6088,6090,6092,6094,6096,6098,6100,6102,6104,6106,6108,6110,6113,6115,6117,6119,6121,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6145,6147,6149,6151,6153,6155,6157,6159,6161,6163,6165,6167,6169,6171,6173,6175,6177,6179,6181,6183,6185,6187,6189,6191,6193,6195,6197,6199,6201,6203,6205,6207,6209,6211,6213,6215,6217,6219,6221,6223,6225,6227,6229,6231,6233,6235,6237,6239,6241,6243,6245,6247,6249,6251,6253,6255,6257,6259,6261,6263,6265,6267,6270,6272,6274,6276,6278,6280,6282,6285,6287,6289,6291,6293,6295,6297,6299,6301,6303,6305,6307,6309,6311,6313,6315,6317,6319,6321,6323,6325,6328,6330,6332,6334,6336,6338,6340,6342,6344,6346,6348,6350,6352,6354,6356,6358,6360,6362,6364,6366,6368,6370,6372,6374,6377,6379,6381,6383,6385,6387,6389,6391,6393,6395,6397,6399,6401,6404,6406,6408,6410,6412,6414,6417,6419,6421,6423,6425,6427,6429,6431,6433,6435,6437,6439,6441,6443,6445,6447,6449,6451,6453,6455,6457,6459,6461,6463,6465,6467,6469,6471,6473,6475,6477,6479,6481,6483,6485,6487,6489,6491,6493,6495,6497,6499,6501,6503,6505,6507,6509,6511,6513,6515,6517,6519,6521,6523,6525,6527,6529,6531,6533,6535,6537,6539,6541,6543,6545,6547,6549,6551,6553,6555,6557,6559,6561,6563,6565,6567,6569,6571,6573,6575,6577,6579,6581,6583,6585,6587,6589,6591,6593,6595,6597,6599,6601,6603,6605,6607,6609,6611,6613,6615,6617,6619,6621,6623,6625,6627,6629,6631,6633,6635,6637,6639,6641,6643,6645,6647,6649,6651,6653,6655,6657,6659,6661,6663,6665,6667,6669,6671,6673,6675,6677,6679,6681,6683,6685,6687,6689,6691,6693,6695,6697,6699,6701,6703,6705,6707,6709,6711,6713,6715,6717,6719,6721,6723,6725,6727,6729,6731,6733,6735,6737,6739,6741,6743,6745,6747,6749,6751,6753,6755,6757,6759,6761,6763,6765,6767,6769,6771,6773,6775,6777,6779,6781,6783,6785,6787,6789,6791,6793,6795,6797,6799,6801,6803,6805,6807,6809,6811,6813,6815,6817,6819,6821,6823,6825,6827,6829,6831,6833,6835,6837,6839,6841,6843,6845,6847,6849,6851,6853,6855,6857,6859,6861,6863,6865,6867,6869,6871,6873,6875,6877,6879,6881,6883,6885,6887,6889,6891,6893,6895,6897,6899,6901,6903,6905,6907,6909,6911,6913,6915,6917,6919,6921],{"class":355,"line":356},[353,4929,360],{"class":359},[353,4931,363],{"class":359},[353,4933,367],{"class":366},[353,4935,363],{"class":359},[353,4937,372],{"class":359},[353,4939,363],{"class":359},[353,4941,378],{"class":377},[353,4943,363],{"class":359},[353,4945,383],{"class":359},[353,4947,363],{"class":359},[353,4949,388],{"class":366},[353,4951,363],{"class":359},[353,4953,372],{"class":359},[353,4955,363],{"class":359},[353,4957,145],{"class":377},[353,4959,363],{"class":359},[353,4961,383],{"class":359},[353,4963,363],{"class":359},[353,4965,405],{"class":366},[353,4967,363],{"class":359},[353,4969,372],{"class":359},[353,4971,363],{"class":359},[353,4973,4974],{"class":377},"FFF0000000000001",[353,4976,363],{"class":359},[353,4978,383],{"class":359},[353,4980,363],{"class":359},[353,4982,423],{"class":366},[353,4984,363],{"class":359},[353,4986,372],{"class":359},[353,4988,363],{"class":359},[353,4990,432],{"class":377},[353,4992,363],{"class":359},[353,4994,383],{"class":359},[353,4996,363],{"class":359},[353,4998,441],{"class":366},[353,5000,363],{"class":359},[353,5002,372],{"class":359},[353,5004,363],{"class":359},[353,5006,5007],{"class":377},"write",[353,5009,363],{"class":359},[353,5011,383],{"class":359},[353,5013,363],{"class":359},[353,5015,459],{"class":366},[353,5017,363],{"class":359},[353,5019,372],{"class":359},[353,5021,363],{"class":359},[353,5023,49],{"class":377},[353,5025,363],{"class":359},[353,5027,383],{"class":359},[353,5029,363],{"class":359},[353,5031,476],{"class":366},[353,5033,363],{"class":359},[353,5035,372],{"class":359},[353,5037,484],{"class":483},[353,5039,383],{"class":359},[353,5041,363],{"class":359},[353,5043,491],{"class":366},[353,5045,363],{"class":359},[353,5047,372],{"class":359},[353,5049,498],{"class":483},[353,5051,383],{"class":359},[353,5053,363],{"class":359},[353,5055,505],{"class":366},[353,5057,363],{"class":359},[353,5059,372],{"class":359},[353,5061,363],{"class":359},[353,5063,514],{"class":377},[353,5065,363],{"class":359},[353,5067,383],{"class":359},[353,5069,363],{"class":359},[353,5071,523],{"class":366},[353,5073,363],{"class":359},[353,5075,372],{"class":359},[353,5077,363],{"class":359},[353,5079,532],{"class":377},[353,5081,363],{"class":359},[353,5083,383],{"class":359},[353,5085,363],{"class":359},[353,5087,541],{"class":366},[353,5089,363],{"class":359},[353,5091,372],{"class":359},[353,5093,548],{"class":359},[353,5095,383],{"class":359},[353,5097,363],{"class":359},[353,5099,555],{"class":366},[353,5101,363],{"class":359},[353,5103,372],{"class":359},[353,5105,548],{"class":359},[353,5107,383],{"class":359},[353,5109,363],{"class":359},[353,5111,568],{"class":366},[353,5113,363],{"class":359},[353,5115,372],{"class":359},[353,5117,363],{"class":359},[353,5119,577],{"class":377},[353,5121,363],{"class":359},[353,5123,383],{"class":359},[353,5125,363],{"class":359},[353,5127,586],{"class":366},[353,5129,363],{"class":359},[353,5131,372],{"class":359},[353,5133,363],{"class":359},[353,5135,577],{"class":377},[353,5137,363],{"class":359},[353,5139,383],{"class":359},[353,5141,363],{"class":359},[353,5143,603],{"class":366},[353,5145,363],{"class":359},[353,5147,608],{"class":359},[353,5149,363],{"class":359},[353,5151,613],{"class":366},[353,5153,363],{"class":359},[353,5155,372],{"class":359},[353,5157,484],{"class":483},[353,5159,383],{"class":359},[353,5161,363],{"class":359},[353,5163,626],{"class":366},[353,5165,363],{"class":359},[353,5167,372],{"class":359},[353,5169,633],{"class":483},[353,5171,383],{"class":359},[353,5173,363],{"class":359},[353,5175,640],{"class":366},[353,5177,363],{"class":359},[353,5179,372],{"class":359},[353,5181,633],{"class":483},[353,5183,383],{"class":359},[353,5185,363],{"class":359},[353,5187,653],{"class":366},[353,5189,363],{"class":359},[353,5191,372],{"class":359},[353,5193,633],{"class":483},[353,5195,383],{"class":359},[353,5197,363],{"class":359},[353,5199,666],{"class":366},[353,5201,363],{"class":359},[353,5203,372],{"class":359},[353,5205,548],{"class":359},[353,5207,383],{"class":359},[353,5209,363],{"class":359},[353,5211,679],{"class":366},[353,5213,363],{"class":359},[353,5215,372],{"class":359},[353,5217,5218],{"class":483},"760",[353,5220,383],{"class":359},[353,5222,363],{"class":359},[353,5224,693],{"class":366},[353,5226,363],{"class":359},[353,5228,372],{"class":359},[353,5230,5231],{"class":483},"220",[353,5233,383],{"class":359},[353,5235,363],{"class":359},[353,5237,707],{"class":366},[353,5239,363],{"class":359},[353,5241,5242],{"class":359},":[[],[]]},{",[353,5244,363],{"class":359},[353,5246,367],{"class":366},[353,5248,363],{"class":359},[353,5250,372],{"class":359},[353,5252,363],{"class":359},[353,5254,3225],{"class":377},[353,5256,363],{"class":359},[353,5258,383],{"class":359},[353,5260,363],{"class":359},[353,5262,388],{"class":366},[353,5264,363],{"class":359},[353,5266,372],{"class":359},[353,5268,363],{"class":359},[353,5270,3129],{"class":377},[353,5272,363],{"class":359},[353,5274,383],{"class":359},[353,5276,363],{"class":359},[353,5278,405],{"class":366},[353,5280,363],{"class":359},[353,5282,372],{"class":359},[353,5284,363],{"class":359},[353,5286,4974],{"class":377},[353,5288,363],{"class":359},[353,5290,383],{"class":359},[353,5292,363],{"class":359},[353,5294,666],{"class":366},[353,5296,363],{"class":359},[353,5298,372],{"class":359},[353,5300,363],{"class":359},[353,5302,5303],{"class":377},"Bridging MQTT to OPC UA",[353,5305,363],{"class":359},[353,5307,383],{"class":359},[353,5309,363],{"class":359},[353,5311,3171],{"class":366},[353,5313,363],{"class":359},[353,5315,372],{"class":359},[353,5317,548],{"class":359},[353,5319,383],{"class":359},[353,5321,363],{"class":359},[353,5323,679],{"class":366},[353,5325,363],{"class":359},[353,5327,372],{"class":359},[353,5329,5330],{"class":483},"510",[353,5332,383],{"class":359},[353,5334,363],{"class":359},[353,5336,693],{"class":366},[353,5338,363],{"class":359},[353,5340,372],{"class":359},[353,5342,5343],{"class":483},"140",[353,5345,383],{"class":359},[353,5347,363],{"class":359},[353,5349,707],{"class":366},[353,5351,363],{"class":359},[353,5353,955],{"class":359},[353,5355,363],{"class":359},[353,5357,367],{"class":366},[353,5359,363],{"class":359},[353,5361,372],{"class":359},[353,5363,363],{"class":359},[353,5365,3337],{"class":377},[353,5367,363],{"class":359},[353,5369,383],{"class":359},[353,5371,363],{"class":359},[353,5373,388],{"class":366},[353,5375,363],{"class":359},[353,5377,372],{"class":359},[353,5379,363],{"class":359},[353,5381,123],{"class":377},[353,5383,363],{"class":359},[353,5385,383],{"class":359},[353,5387,363],{"class":359},[353,5389,405],{"class":366},[353,5391,363],{"class":359},[353,5393,372],{"class":359},[353,5395,363],{"class":359},[353,5397,4974],{"class":377},[353,5399,363],{"class":359},[353,5401,383],{"class":359},[353,5403,363],{"class":359},[353,5405,666],{"class":366},[353,5407,363],{"class":359},[353,5409,372],{"class":359},[353,5411,548],{"class":359},[353,5413,383],{"class":359},[353,5415,363],{"class":359},[353,5417,1662],{"class":366},[353,5419,363],{"class":359},[353,5421,1667],{"class":359},[353,5423,363],{"class":359},[353,5425,1673],{"class":1672},[353,5427,363],{"class":359},[353,5429,372],{"class":359},[353,5431,363],{"class":359},[353,5433,1682],{"class":377},[353,5435,363],{"class":359},[353,5437,383],{"class":359},[353,5439,363],{"class":359},[353,5441,12],{"class":1672},[353,5443,363],{"class":359},[353,5445,372],{"class":359},[353,5447,363],{"class":359},[353,5449,788],{"class":377},[353,5451,363],{"class":359},[353,5453,383],{"class":359},[353,5455,363],{"class":359},[353,5457,1707],{"class":1672},[353,5459,363],{"class":359},[353,5461,372],{"class":359},[353,5463,363],{"class":359},[353,5465,1716],{"class":377},[353,5467,363],{"class":359},[353,5469,383],{"class":359},[353,5471,363],{"class":359},[353,5473,1725],{"class":1672},[353,5475,363],{"class":359},[353,5477,372],{"class":359},[353,5479,363],{"class":359},[353,5481,5482],{"class":377},"ns=3;i=1010,datatype=Boolean",[353,5484,363],{"class":359},[353,5486,383],{"class":359},[353,5488,363],{"class":359},[353,5490,1743],{"class":1672},[353,5492,363],{"class":359},[353,5494,372],{"class":359},[353,5496,363],{"class":359},[353,5498,1752],{"class":377},[353,5500,363],{"class":359},[353,5502,4150],{"class":359},[353,5504,363],{"class":359},[353,5506,1673],{"class":1672},[353,5508,363],{"class":359},[353,5510,372],{"class":359},[353,5512,363],{"class":359},[353,5514,1682],{"class":377},[353,5516,363],{"class":359},[353,5518,383],{"class":359},[353,5520,363],{"class":359},[353,5522,12],{"class":1672},[353,5524,363],{"class":359},[353,5526,372],{"class":359},[353,5528,363],{"class":359},[353,5530,2473],{"class":377},[353,5532,363],{"class":359},[353,5534,383],{"class":359},[353,5536,363],{"class":359},[353,5538,1707],{"class":1672},[353,5540,363],{"class":359},[353,5542,372],{"class":359},[353,5544,363],{"class":359},[353,5546,1716],{"class":377},[353,5548,363],{"class":359},[353,5550,383],{"class":359},[353,5552,363],{"class":359},[353,5554,1725],{"class":1672},[353,5556,363],{"class":359},[353,5558,372],{"class":359},[353,5560,363],{"class":359},[353,5562,5563],{"class":377},"paylad",[353,5565,363],{"class":359},[353,5567,383],{"class":359},[353,5569,363],{"class":359},[353,5571,1743],{"class":1672},[353,5573,363],{"class":359},[353,5575,372],{"class":359},[353,5577,363],{"class":359},[353,5579,1716],{"class":377},[353,5581,363],{"class":359},[353,5583,1757],{"class":359},[353,5585,363],{"class":359},[353,5587,441],{"class":366},[353,5589,363],{"class":359},[353,5591,372],{"class":359},[353,5593,548],{"class":359},[353,5595,383],{"class":359},[353,5597,363],{"class":359},[353,5599,1774],{"class":366},[353,5601,363],{"class":359},[353,5603,372],{"class":359},[353,5605,548],{"class":359},[353,5607,383],{"class":359},[353,5609,363],{"class":359},[353,5611,1787],{"class":366},[353,5613,363],{"class":359},[353,5615,372],{"class":359},[353,5617,548],{"class":359},[353,5619,383],{"class":359},[353,5621,363],{"class":359},[353,5623,1725],{"class":366},[353,5625,363],{"class":359},[353,5627,372],{"class":359},[353,5629,548],{"class":359},[353,5631,383],{"class":359},[353,5633,363],{"class":359},[353,5635,1812],{"class":366},[353,5637,363],{"class":359},[353,5639,608],{"class":359},[353,5641,363],{"class":359},[353,5643,679],{"class":366},[353,5645,363],{"class":359},[353,5647,372],{"class":359},[353,5649,5650],{"class":483},"540",[353,5652,383],{"class":359},[353,5654,363],{"class":359},[353,5656,693],{"class":366},[353,5658,363],{"class":359},[353,5660,372],{"class":359},[353,5662,5231],{"class":483},[353,5664,383],{"class":359},[353,5666,363],{"class":359},[353,5668,707],{"class":366},[353,5670,363],{"class":359},[353,5672,712],{"class":359},[353,5674,363],{"class":359},[353,5676,378],{"class":377},[353,5678,363],{"class":359},[353,5680,1860],{"class":359},[353,5682,363],{"class":359},[353,5684,367],{"class":366},[353,5686,363],{"class":359},[353,5688,372],{"class":359},[353,5690,363],{"class":359},[353,5692,5693],{"class":377},"0a89ebd0d9f6f577",[353,5695,363],{"class":359},[353,5697,383],{"class":359},[353,5699,363],{"class":359},[353,5701,388],{"class":366},[353,5703,363],{"class":359},[353,5705,372],{"class":359},[353,5707,363],{"class":359},[353,5709,2730],{"class":377},[353,5711,363],{"class":359},[353,5713,383],{"class":359},[353,5715,363],{"class":359},[353,5717,405],{"class":366},[353,5719,363],{"class":359},[353,5721,372],{"class":359},[353,5723,363],{"class":359},[353,5725,4974],{"class":377},[353,5727,363],{"class":359},[353,5729,383],{"class":359},[353,5731,363],{"class":359},[353,5733,666],{"class":366},[353,5735,363],{"class":359},[353,5737,372],{"class":359},[353,5739,548],{"class":359},[353,5741,383],{"class":359},[353,5743,363],{"class":359},[353,5745,788],{"class":366},[353,5747,363],{"class":359},[353,5749,372],{"class":359},[353,5751,363],{"class":359},[353,5753,5754],{"class":377},"command\u002Fcnc\u002F",[353,5756,363],{"class":359},[353,5758,383],{"class":359},[353,5760,363],{"class":359},[353,5762,806],{"class":366},[353,5764,363],{"class":359},[353,5766,372],{"class":359},[353,5768,363],{"class":359},[353,5770,815],{"class":377},[353,5772,363],{"class":359},[353,5774,383],{"class":359},[353,5776,363],{"class":359},[353,5778,2799],{"class":366},[353,5780,363],{"class":359},[353,5782,372],{"class":359},[353,5784,363],{"class":359},[353,5786,2808],{"class":377},[353,5788,363],{"class":359},[353,5790,383],{"class":359},[353,5792,363],{"class":359},[353,5794,907],{"class":366},[353,5796,363],{"class":359},[353,5798,372],{"class":359},[353,5800,363],{"class":359},[353,5802,916],{"class":377},[353,5804,363],{"class":359},[353,5806,383],{"class":359},[353,5808,363],{"class":359},[353,5810,2833],{"class":366},[353,5812,363],{"class":359},[353,5814,608],{"class":359},[353,5816,363],{"class":359},[353,5818,2842],{"class":366},[353,5820,363],{"class":359},[353,5822,2847],{"class":359},[353,5824,363],{"class":359},[353,5826,2852],{"class":366},[353,5828,363],{"class":359},[353,5830,372],{"class":359},[353,5832,2859],{"class":483},[353,5834,383],{"class":359},[353,5836,363],{"class":359},[353,5838,2866],{"class":366},[353,5840,363],{"class":359},[353,5842,372],{"class":359},[353,5844,2859],{"class":483},[353,5846,383],{"class":359},[353,5848,363],{"class":359},[353,5850,679],{"class":366},[353,5852,363],{"class":359},[353,5854,372],{"class":359},[353,5856,1840],{"class":483},[353,5858,383],{"class":359},[353,5860,363],{"class":359},[353,5862,693],{"class":366},[353,5864,363],{"class":359},[353,5866,372],{"class":359},[353,5868,5231],{"class":483},[353,5870,383],{"class":359},[353,5872,363],{"class":359},[353,5874,707],{"class":366},[353,5876,363],{"class":359},[353,5878,712],{"class":359},[353,5880,363],{"class":359},[353,5882,3337],{"class":377},[353,5884,363],{"class":359},[353,5886,1860],{"class":359},[353,5888,363],{"class":359},[353,5890,367],{"class":366},[353,5892,363],{"class":359},[353,5894,372],{"class":359},[353,5896,363],{"class":359},[353,5898,5899],{"class":377},"4cf4e425d075722a",[353,5901,363],{"class":359},[353,5903,383],{"class":359},[353,5905,363],{"class":359},[353,5907,388],{"class":366},[353,5909,363],{"class":359},[353,5911,372],{"class":359},[353,5913,363],{"class":359},[353,5915,305],{"class":377},[353,5917,363],{"class":359},[353,5919,383],{"class":359},[353,5921,363],{"class":359},[353,5923,405],{"class":366},[353,5925,363],{"class":359},[353,5927,372],{"class":359},[353,5929,363],{"class":359},[353,5931,4974],{"class":377},[353,5933,363],{"class":359},[353,5935,383],{"class":359},[353,5937,363],{"class":359},[353,5939,666],{"class":366},[353,5941,363],{"class":359},[353,5943,372],{"class":359},[353,5945,548],{"class":359},[353,5947,383],{"class":359},[353,5949,363],{"class":359},[353,5951,788],{"class":366},[353,5953,363],{"class":359},[353,5955,372],{"class":359},[353,5957,363],{"class":359},[353,5959,5754],{"class":377},[353,5961,363],{"class":359},[353,5963,383],{"class":359},[353,5965,363],{"class":359},[353,5967,806],{"class":366},[353,5969,363],{"class":359},[353,5971,372],{"class":359},[353,5973,363],{"class":359},[353,5975,484],{"class":377},[353,5977,363],{"class":359},[353,5979,383],{"class":359},[353,5981,363],{"class":359},[353,5983,824],{"class":366},[353,5985,363],{"class":359},[353,5987,372],{"class":359},[353,5989,548],{"class":359},[353,5991,383],{"class":359},[353,5993,363],{"class":359},[353,5995,842],{"class":366},[353,5997,363],{"class":359},[353,5999,372],{"class":359},[353,6001,548],{"class":359},[353,6003,383],{"class":359},[353,6005,363],{"class":359},[353,6007,855],{"class":366},[353,6009,363],{"class":359},[353,6011,372],{"class":359},[353,6013,548],{"class":359},[353,6015,383],{"class":359},[353,6017,363],{"class":359},[353,6019,868],{"class":366},[353,6021,363],{"class":359},[353,6023,372],{"class":359},[353,6025,548],{"class":359},[353,6027,383],{"class":359},[353,6029,363],{"class":359},[353,6031,881],{"class":366},[353,6033,363],{"class":359},[353,6035,372],{"class":359},[353,6037,548],{"class":359},[353,6039,383],{"class":359},[353,6041,363],{"class":359},[353,6043,894],{"class":366},[353,6045,363],{"class":359},[353,6047,372],{"class":359},[353,6049,548],{"class":359},[353,6051,383],{"class":359},[353,6053,363],{"class":359},[353,6055,907],{"class":366},[353,6057,363],{"class":359},[353,6059,372],{"class":359},[353,6061,363],{"class":359},[353,6063,916],{"class":377},[353,6065,363],{"class":359},[353,6067,383],{"class":359},[353,6069,363],{"class":359},[353,6071,679],{"class":366},[353,6073,363],{"class":359},[353,6075,372],{"class":359},[353,6077,2898],{"class":483},[353,6079,383],{"class":359},[353,6081,363],{"class":359},[353,6083,693],{"class":366},[353,6085,363],{"class":359},[353,6087,372],{"class":359},[353,6089,1255],{"class":483},[353,6091,383],{"class":359},[353,6093,363],{"class":359},[353,6095,707],{"class":366},[353,6097,363],{"class":359},[353,6099,955],{"class":359},[353,6101,363],{"class":359},[353,6103,367],{"class":366},[353,6105,363],{"class":359},[353,6107,372],{"class":359},[353,6109,363],{"class":359},[353,6111,6112],{"class":377},"8e339e511c573905",[353,6114,363],{"class":359},[353,6116,383],{"class":359},[353,6118,363],{"class":359},[353,6120,388],{"class":366},[353,6122,363],{"class":359},[353,6124,372],{"class":359},[353,6126,363],{"class":359},[353,6128,117],{"class":377},[353,6130,363],{"class":359},[353,6132,383],{"class":359},[353,6134,363],{"class":359},[353,6136,405],{"class":366},[353,6138,363],{"class":359},[353,6140,372],{"class":359},[353,6142,363],{"class":359},[353,6144,4974],{"class":377},[353,6146,363],{"class":359},[353,6148,383],{"class":359},[353,6150,363],{"class":359},[353,6152,666],{"class":366},[353,6154,363],{"class":359},[353,6156,372],{"class":359},[353,6158,548],{"class":359},[353,6160,383],{"class":359},[353,6162,363],{"class":359},[353,6164,4129],{"class":366},[353,6166,363],{"class":359},[353,6168,1667],{"class":359},[353,6170,363],{"class":359},[353,6172,12],{"class":1672},[353,6174,363],{"class":359},[353,6176,372],{"class":359},[353,6178,363],{"class":359},[353,6180,2473],{"class":377},[353,6182,363],{"class":359},[353,6184,1757],{"class":359},[353,6186,363],{"class":359},[353,6188,4188],{"class":366},[353,6190,363],{"class":359},[353,6192,372],{"class":359},[353,6194,548],{"class":359},[353,6196,383],{"class":359},[353,6198,363],{"class":359},[353,6200,4201],{"class":366},[353,6202,363],{"class":359},[353,6204,372],{"class":359},[353,6206,548],{"class":359},[353,6208,383],{"class":359},[353,6210,363],{"class":359},[353,6212,4214],{"class":366},[353,6214,363],{"class":359},[353,6216,608],{"class":359},[353,6218,363],{"class":359},[353,6220,4223],{"class":366},[353,6222,363],{"class":359},[353,6224,372],{"class":359},[353,6226,4230],{"class":483},[353,6228,383],{"class":359},[353,6230,363],{"class":359},[353,6232,788],{"class":366},[353,6234,363],{"class":359},[353,6236,372],{"class":359},[353,6238,548],{"class":359},[353,6240,383],{"class":359},[353,6242,363],{"class":359},[353,6244,2473],{"class":366},[353,6246,363],{"class":359},[353,6248,372],{"class":359},[353,6250,363],{"class":359},[353,6252,3032],{"class":377},[353,6254,363],{"class":359},[353,6256,383],{"class":359},[353,6258,363],{"class":359},[353,6260,4261],{"class":366},[353,6262,363],{"class":359},[353,6264,372],{"class":359},[353,6266,363],{"class":359},[353,6268,6269],{"class":377},"bool",[353,6271,363],{"class":359},[353,6273,383],{"class":359},[353,6275,363],{"class":359},[353,6277,679],{"class":366},[353,6279,363],{"class":359},[353,6281,372],{"class":359},[353,6283,6284],{"class":483},"330",[353,6286,383],{"class":359},[353,6288,363],{"class":359},[353,6290,693],{"class":366},[353,6292,363],{"class":359},[353,6294,372],{"class":359},[353,6296,1255],{"class":483},[353,6298,383],{"class":359},[353,6300,363],{"class":359},[353,6302,707],{"class":366},[353,6304,363],{"class":359},[353,6306,712],{"class":359},[353,6308,363],{"class":359},[353,6310,5899],{"class":377},[353,6312,363],{"class":359},[353,6314,1860],{"class":359},[353,6316,363],{"class":359},[353,6318,367],{"class":366},[353,6320,363],{"class":359},[353,6322,372],{"class":359},[353,6324,363],{"class":359},[353,6326,6327],{"class":377},"9c33cff54b0aca15",[353,6329,363],{"class":359},[353,6331,383],{"class":359},[353,6333,363],{"class":359},[353,6335,388],{"class":366},[353,6337,363],{"class":359},[353,6339,372],{"class":359},[353,6341,363],{"class":359},[353,6343,3129],{"class":377},[353,6345,363],{"class":359},[353,6347,383],{"class":359},[353,6349,363],{"class":359},[353,6351,405],{"class":366},[353,6353,363],{"class":359},[353,6355,372],{"class":359},[353,6357,363],{"class":359},[353,6359,4974],{"class":377},[353,6361,363],{"class":359},[353,6363,383],{"class":359},[353,6365,363],{"class":359},[353,6367,666],{"class":366},[353,6369,363],{"class":359},[353,6371,372],{"class":359},[353,6373,363],{"class":359},[353,6375,6376],{"class":377},"Sending Command",[353,6378,363],{"class":359},[353,6380,383],{"class":359},[353,6382,363],{"class":359},[353,6384,3171],{"class":366},[353,6386,363],{"class":359},[353,6388,372],{"class":359},[353,6390,548],{"class":359},[353,6392,383],{"class":359},[353,6394,363],{"class":359},[353,6396,679],{"class":366},[353,6398,363],{"class":359},[353,6400,372],{"class":359},[353,6402,6403],{"class":483},"490",[353,6405,383],{"class":359},[353,6407,363],{"class":359},[353,6409,693],{"class":366},[353,6411,363],{"class":359},[353,6413,372],{"class":359},[353,6415,6416],{"class":483},"340",[353,6418,383],{"class":359},[353,6420,363],{"class":359},[353,6422,707],{"class":366},[353,6424,363],{"class":359},[353,6426,955],{"class":359},[353,6428,363],{"class":359},[353,6430,367],{"class":366},[353,6432,363],{"class":359},[353,6434,372],{"class":359},[353,6436,363],{"class":359},[353,6438,432],{"class":377},[353,6440,363],{"class":359},[353,6442,383],{"class":359},[353,6444,363],{"class":359},[353,6446,388],{"class":366},[353,6448,363],{"class":359},[353,6450,372],{"class":359},[353,6452,363],{"class":359},[353,6454,4360],{"class":377},[353,6456,363],{"class":359},[353,6458,383],{"class":359},[353,6460,363],{"class":359},[353,6462,423],{"class":366},[353,6464,363],{"class":359},[353,6466,372],{"class":359},[353,6468,363],{"class":359},[353,6470,4377],{"class":377},[353,6472,363],{"class":359},[353,6474,383],{"class":359},[353,6476,363],{"class":359},[353,6478,4386],{"class":366},[353,6480,363],{"class":359},[353,6482,372],{"class":359},[353,6484,363],{"class":359},[353,6486,577],{"class":377},[353,6488,363],{"class":359},[353,6490,383],{"class":359},[353,6492,363],{"class":359},[353,6494,4403],{"class":366},[353,6496,363],{"class":359},[353,6498,372],{"class":359},[353,6500,363],{"class":359},[353,6502,577],{"class":377},[353,6504,363],{"class":359},[353,6506,383],{"class":359},[353,6508,363],{"class":359},[353,6510,4420],{"class":366},[353,6512,363],{"class":359},[353,6514,2847],{"class":359},[353,6516,363],{"class":359},[353,6518,4429],{"class":366},[353,6520,363],{"class":359},[353,6522,608],{"class":359},[353,6524,363],{"class":359},[353,6526,4438],{"class":366},[353,6528,363],{"class":359},[353,6530,608],{"class":359},[353,6532,363],{"class":359},[353,6534,4447],{"class":366},[353,6536,363],{"class":359},[353,6538,372],{"class":359},[353,6540,548],{"class":359},[353,6542,383],{"class":359},[353,6544,363],{"class":359},[353,6546,4460],{"class":366},[353,6548,363],{"class":359},[353,6550,372],{"class":359},[353,6552,548],{"class":359},[353,6554,4150],{"class":359},[353,6556,363],{"class":359},[353,6558,367],{"class":366},[353,6560,363],{"class":359},[353,6562,372],{"class":359},[353,6564,363],{"class":359},[353,6566,916],{"class":377},[353,6568,363],{"class":359},[353,6570,383],{"class":359},[353,6572,363],{"class":359},[353,6574,388],{"class":366},[353,6576,363],{"class":359},[353,6578,372],{"class":359},[353,6580,363],{"class":359},[353,6582,4497],{"class":377},[353,6584,363],{"class":359},[353,6586,383],{"class":359},[353,6588,363],{"class":359},[353,6590,666],{"class":366},[353,6592,363],{"class":359},[353,6594,372],{"class":359},[353,6596,548],{"class":359},[353,6598,383],{"class":359},[353,6600,363],{"class":359},[353,6602,907],{"class":366},[353,6604,363],{"class":359},[353,6606,372],{"class":359},[353,6608,363],{"class":359},[353,6610,4526],{"class":377},[353,6612,363],{"class":359},[353,6614,383],{"class":359},[353,6616,363],{"class":359},[353,6618,4535],{"class":366},[353,6620,363],{"class":359},[353,6622,372],{"class":359},[353,6624,363],{"class":359},[353,6626,4544],{"class":377},[353,6628,363],{"class":359},[353,6630,383],{"class":359},[353,6632,363],{"class":359},[353,6634,4553],{"class":366},[353,6636,363],{"class":359},[353,6638,372],{"class":359},[353,6640,548],{"class":359},[353,6642,383],{"class":359},[353,6644,363],{"class":359},[353,6646,4566],{"class":366},[353,6648,363],{"class":359},[353,6650,2847],{"class":359},[353,6652,363],{"class":359},[353,6654,4575],{"class":366},[353,6656,363],{"class":359},[353,6658,608],{"class":359},[353,6660,363],{"class":359},[353,6662,4584],{"class":366},[353,6664,363],{"class":359},[353,6666,372],{"class":359},[353,6668,363],{"class":359},[353,6670,4593],{"class":377},[353,6672,363],{"class":359},[353,6674,383],{"class":359},[353,6676,363],{"class":359},[353,6678,4602],{"class":366},[353,6680,363],{"class":359},[353,6682,372],{"class":359},[353,6684,363],{"class":359},[353,6686,4611],{"class":377},[353,6688,363],{"class":359},[353,6690,383],{"class":359},[353,6692,363],{"class":359},[353,6694,4620],{"class":366},[353,6696,363],{"class":359},[353,6698,2847],{"class":359},[353,6700,363],{"class":359},[353,6702,4629],{"class":366},[353,6704,363],{"class":359},[353,6706,2847],{"class":359},[353,6708,363],{"class":359},[353,6710,4638],{"class":366},[353,6712,363],{"class":359},[353,6714,372],{"class":359},[353,6716,548],{"class":359},[353,6718,383],{"class":359},[353,6720,363],{"class":359},[353,6722,4651],{"class":366},[353,6724,363],{"class":359},[353,6726,372],{"class":359},[353,6728,363],{"class":359},[353,6730,2859],{"class":377},[353,6732,363],{"class":359},[353,6734,383],{"class":359},[353,6736,363],{"class":359},[353,6738,4668],{"class":366},[353,6740,363],{"class":359},[353,6742,372],{"class":359},[353,6744,363],{"class":359},[353,6746,3032],{"class":377},[353,6748,363],{"class":359},[353,6750,383],{"class":359},[353,6752,363],{"class":359},[353,6754,4685],{"class":366},[353,6756,363],{"class":359},[353,6758,372],{"class":359},[353,6760,548],{"class":359},[353,6762,383],{"class":359},[353,6764,363],{"class":359},[353,6766,4698],{"class":366},[353,6768,363],{"class":359},[353,6770,4703],{"class":359},[353,6772,363],{"class":359},[353,6774,4708],{"class":366},[353,6776,363],{"class":359},[353,6778,372],{"class":359},[353,6780,548],{"class":359},[353,6782,383],{"class":359},[353,6784,363],{"class":359},[353,6786,4721],{"class":366},[353,6788,363],{"class":359},[353,6790,372],{"class":359},[353,6792,363],{"class":359},[353,6794,2859],{"class":377},[353,6796,363],{"class":359},[353,6798,383],{"class":359},[353,6800,363],{"class":359},[353,6802,4738],{"class":366},[353,6804,363],{"class":359},[353,6806,372],{"class":359},[353,6808,363],{"class":359},[353,6810,3032],{"class":377},[353,6812,363],{"class":359},[353,6814,383],{"class":359},[353,6816,363],{"class":359},[353,6818,4755],{"class":366},[353,6820,363],{"class":359},[353,6822,372],{"class":359},[353,6824,548],{"class":359},[353,6826,383],{"class":359},[353,6828,363],{"class":359},[353,6830,4768],{"class":366},[353,6832,363],{"class":359},[353,6834,4703],{"class":359},[353,6836,363],{"class":359},[353,6838,4777],{"class":366},[353,6840,363],{"class":359},[353,6842,372],{"class":359},[353,6844,548],{"class":359},[353,6846,383],{"class":359},[353,6848,363],{"class":359},[353,6850,4790],{"class":366},[353,6852,363],{"class":359},[353,6854,372],{"class":359},[353,6856,363],{"class":359},[353,6858,2859],{"class":377},[353,6860,363],{"class":359},[353,6862,383],{"class":359},[353,6864,363],{"class":359},[353,6866,4807],{"class":366},[353,6868,363],{"class":359},[353,6870,372],{"class":359},[353,6872,363],{"class":359},[353,6874,3032],{"class":377},[353,6876,363],{"class":359},[353,6878,383],{"class":359},[353,6880,363],{"class":359},[353,6882,4824],{"class":366},[353,6884,363],{"class":359},[353,6886,372],{"class":359},[353,6888,548],{"class":359},[353,6890,383],{"class":359},[353,6892,363],{"class":359},[353,6894,4837],{"class":366},[353,6896,363],{"class":359},[353,6898,4703],{"class":359},[353,6900,363],{"class":359},[353,6902,868],{"class":366},[353,6904,363],{"class":359},[353,6906,372],{"class":359},[353,6908,548],{"class":359},[353,6910,383],{"class":359},[353,6912,363],{"class":359},[353,6914,4858],{"class":366},[353,6916,363],{"class":359},[353,6918,372],{"class":359},[353,6920,548],{"class":359},[353,6922,4867],{"class":359},[19,6924,6926],{"id":6925},"up-next","Up Next",[67,6928,6929,6936,6943,6950,6957],{},[70,6930,6931,6935],{},[49,6932,6934],{"href":6933},"\u002Fnode-red\u002Fprotocol\u002Fmqtt\u002F","Using MQTT with Node-RED","\nLearn how to integrate MQTT with Node-RED to enhance your IoT solutions with real-time data messaging.",[70,6937,6938,6942],{},[49,6939,6941],{"href":6940},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-build-a-opc-client-dashboard-in-node-red\u002F","How to Build an OPC UA Client Dashboard in Node-RED","\nFollow a step-by-step guide to create a comprehensive OPC UA client dashboard in Node-RED for effective monitoring and control.",[70,6944,6945,6949],{},[49,6946,6948],{"href":6947},"\u002Fnode-red\u002Fprotocol\u002Fopc-ua\u002F","Building a Secure OPC UA Server in Node-RED","\nExplore best practices for configuring a secure OPC UA server in Node-RED to ensure safe and reliable data exchange.",[70,6951,6952,6956],{},[49,6953,6955],{"href":6954},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-deploy-a-basic-opc-ua-server-in-node-red\u002F","How to Deploy a Basic OPC UA Server in Node-RED","\nLearn how to quickly deploy a basic OPC UA server in Node-RED for testing and development purposes.",[70,6958,6959,6963],{},[49,6960,6962],{"href":6961},"\u002Fblog\u002F2023\u002F06\u002Fnode-red-as-a-no-code-ethernet_ip-to-s7-protocol-converter\u002F","Node-RED as a No-Code EtherNet\u002FIP to S7 Protocol Converter","\nDiscover how to use Node-RED to seamlessly convert EtherNet\u002FIP to S7 protocols with Node-RED.",[6965,6966,6967],"style",{},"html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .sbssI, html code.shiki .sbssI{--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":29,"searchDepth":175,"depth":175,"links":6969},[6970,6971,6977],{"id":21,"depth":158,"text":22},{"id":57,"depth":140,"text":58,"children":6972},[6973,6974,6975,6976],{"id":64,"depth":158,"text":65},{"id":104,"depth":158,"text":105},{"id":218,"depth":158,"text":219},{"id":294,"depth":158,"text":295},{"id":4870,"depth":140,"text":4871,"children":6978},[6979],{"id":6925,"depth":158,"text":6926},{"type":6981,"title":6982,"description":6983},"sign-up","Connect OPC UA and MQTT with Node-RED on FlowFuse","FlowFuse makes it easy to deploy Node-RED in the cloud or at the edge and bridge industrial protocols like OPC UA and MQTT, with built-in MQTT broker support, team collaboration, and production-ready infrastructure.","2024-08-13","Learn how to bridge OPC UA data to MQTT using Node-RED for seamless industrial IoT integration and real-time data flow.","md",null,"\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fbrdging-opcua-to-mqtt.png","2026-06-03",{"keywords":6991,"excerpt":6992},"opc ua gateway, opc ua example, node-red-contrib-opcua, nodered opcua, opc ua mqtt, opc ua over mqtt, opc ua to mqtt gateway, mqtt to opc ua, mqtt and opc ua, opc ua and mqtt, opc ua via mqtt, opcua to mqtt",{"type":9,"value":6993},[6994],[12,6995,14],{},true,"\u002Fblog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red",{"title":5,"description":6985},{"loc":6997},"blog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red","Connecting OPC UA Data Streams to MQTT Brokers for Enhanced IoT Communication and Monitoring",[7003,7004,7005,7006,7007],"posts","node-red","mqtt","opcua","how-to","This guide demonstrates how to connect an OPC UA server to an MQTT broker using Node-RED, allowing industrial machine data to flow into modern IoT systems. It covers installing node-red-contrib-opcua, reading multiple OPC UA node values, aggregating them with a join node, and publishing the result to MQTT. A reverse bridging pattern for sending MQTT commands back to OPC UA is also covered.","GqQddFuOqbYhlJsryMaziSagDE7lT9_GC6cHZWDAWxk",{"id":7011,"extension":7012,"meta":7013,"sections":7014,"stem":7401,"__hash__":7402},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[7015,7066,7166,7227,7304,7383],{"id":7016,"title":7017,"features":7018},"ai-automation","AI & Automation",[7019,7029,7039,7049,7055,7061],{"id":7020,"title":7021,"description":7022,"docsLink":7023,"changelog":7024,"tiers":7028},"flowfuse-expert-ai","FlowFuse Expert AI","Build industrial apps with agents, and query the state of the factory with an agent. Adapt your current hardware and machines so agentic work can be done against them, without ripping and replacing what's already on the plant floor.","\u002Fdocs\u002Fuser\u002Fexpert\u002F",[7025],{"url":7026,"release":7027},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":6996,"hub":6996,"fleet":6996},{"id":7030,"title":7031,"description":7032,"docsLink":7033,"changelog":7034,"subfeature":6996,"showOnPricing":7037,"tiers":7038},"flowfuse-expert-support-mode","Support Mode","Chat-based assistance for FlowFuse and Node-RED, including Node-RED instance management through natural language.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#support-mode",[7035],{"url":7036,"release":7027},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":6996,"hub":6996,"fleet":6996},{"id":7040,"title":7041,"description":7042,"docsLink":7043,"changelog":7044,"subfeature":6996,"showOnPricing":7037,"tiers":7048},"flowfuse-expert-application-building","Application Building","Describe what you want to build and FlowFuse Expert assembles it on your workspace, adding tabs, wiring nodes, and configuring properties.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F",[7045],{"url":7046,"release":7047},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":6996,"hub":6996,"fleet":6996},{"id":7050,"title":7051,"description":7052,"docsLink":7053,"subfeature":6996,"beta":6996,"showOnPricing":7037,"tiers":7054},"flowfuse-expert-insights-mode","Insights Mode","Connects FlowFuse Expert to MCP servers in your Node-RED instances, enabling real-time data queries and actions through a single chat interface.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#insights-mode",{"edge":6996,"hub":6996,"fleet":6996},{"id":7056,"title":7057,"description":7058,"docsLink":7059,"tiers":7060},"mcp-servers","Agentic Operations","Expose your Node-RED flows as tools an AI agent can call directly, so agents can query the state of the factory or trigger actions without custom integration work.","\u002Fnode-red\u002Fflowfuse\u002Fmcp\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7062,"title":7063,"description":7064,"tiers":7065},"onnx-integration","ONNX Integration","Run trained machine learning models directly in your flows, including on edge hardware, without sending data out to an external inference service.",{"edge":6996,"hub":6996,"fleet":6996},{"id":2447,"title":7067,"features":7068},"Build",[7069,7075,7081,7091,7097,7103,7107,7113,7119,7127,7133,7137,7141,7150,7158],{"id":7070,"title":7071,"description":7072,"docsLink":7073,"tiers":7074},"edge-development","Edge Development","Develop and test Node-RED flows directly on edge devices with a remote editor proxy.","\u002Fdocs\u002Fdevice-agent\u002Fquickstart\u002F",{"edge":6996,"hub":7037,"fleet":6996},{"id":7076,"title":7077,"description":7078,"docsLink":7079,"tiers":7080},"private-npm-registry","Custom Node-RED Nodes","Create and manage your own private npm registry for Node-RED nodes, so you can share custom nodes across your team and devices without publishing them publicly.","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7082,"title":7083,"description":7084,"docsLink":7085,"changelog":7086,"tiers":7090},"flowfuse-tables","FlowFuse Tables","A managed PostgreSQL database for every application, so you can store and query structured data without standing up and maintaining your own database.","\u002Fdocs\u002Fuser\u002Fff-tables\u002F",[7087],{"url":7088,"release":7089},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":6996,"hub":6996,"fleet":6996},{"id":7092,"title":7093,"description":7094,"docsLink":7095,"tiers":7096},"persistent-files","File Storage","Store and retrieve files from your Node-RED flows, with automatic replication and backup across your devices and hosted instances.","\u002Fdocs\u002Finstall\u002Ffile-storage\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7098,"title":7099,"description":7100,"docsLink":7101,"showOnPricing":7037,"tiers":7102},"persistent-context","Persistent Context","In-memory values defined in a Node-RED flow persist across project restarts and upgrades.","\u002Fdocs\u002Fuser\u002Fpersistent-context\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7104,"title":7105,"showOnPricing":7037,"tiers":7106},"static-assets","Static Assets",{"edge":6996,"hub":6996,"fleet":6996},{"id":7108,"title":7109,"description":7110,"docsLink":7111,"tiers":7112},"team-library","Team Library","Set up standard nodes and flows that can be shared with all team members across your organisation.","\u002Fdocs\u002Fuser\u002Fshared-library\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7114,"title":7115,"description":7116,"docsLink":7117,"tiers":7118},"personalised-multi-user-dashboards","Personalised Multi-User Dashboards","Build applications that provide unique data to each logged-in user using personalised multi-user dashboards.","https:\u002F\u002Fdashboard.flowfuse.com\u002Fuser\u002Fmulti-tenancy.html",{"edge":6996,"hub":6996,"fleet":6996},{"id":7120,"title":7121,"description":7122,"changelog":7123,"subfeature":6996,"showOnPricing":7037,"tiers":7126},"dashboards-view","Dashboards View","Browse and open every dashboard across your team from a dedicated Dashboards view, at both team and application level, without leaving FlowFuse.",[7124],{"url":7125,"release":7089},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7128,"title":7129,"description":7130,"docsLink":7131,"tiers":7132},"blueprints-converge","Blueprints","Ready-made starting points for your apps, from cross-team Converge templates to OT and IT specific blueprints.","\u002Fdocs\u002Fuser\u002Fconcepts\u002F#blueprint",{"edge":6996,"hub":6996,"fleet":6996},{"id":7134,"title":7135,"subfeature":6996,"showOnPricing":7037,"tiers":7136},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":6996,"hub":7037,"fleet":6996},{"id":7138,"title":7139,"subfeature":6996,"showOnPricing":7037,"tiers":7140},"blueprints-it-apps","Blueprints - IT APPS",{"edge":7037,"hub":6996,"fleet":7037},{"id":7142,"title":7143,"description":7144,"changelog":7145,"showOnPricing":7037,"tiers":7149},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[7146],{"url":7147,"release":7148},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":6996,"hub":6996,"fleet":6996},{"id":7151,"title":7152,"description":7153,"changelog":7154,"showOnPricing":7037,"tiers":7157},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[7155],{"url":7156,"release":7047},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7159,"title":7160,"description":7161,"changelog":7162,"showOnPricing":7037,"tiers":7165},"embedded-editor-tab-title","Embedded Editor Browser Tab Title","The browser tab title updates to reflect the active Node-RED canvas tab when working in the embedded editor.",[7163],{"url":7164,"release":7148},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7167,"title":7168,"features":7169},"deploy","Deploy",[7170,7176,7185,7191,7196,7202,7208,7214,7219],{"id":7171,"title":7172,"description":7173,"docsLink":7174,"tiers":7175},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":6996,"hub":6996,"fleet":6996},{"id":7177,"title":7178,"description":7179,"docsLink":7180,"changelog":7181,"tiers":7184},"edge-devices","Edge Instances","Deploy and mange your Node-RED instances on edge PLCs and gateways, with full visibility and control from the cloud.","\u002Fdocs\u002Fdevice-agent\u002Fintroduction\u002F",[7182],{"url":7183,"release":7027},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":6996,"hub":7037,"fleet":6996},{"id":7186,"title":7187,"description":7188,"docsLink":7189,"tiers":7190},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":7037,"hub":6996,"fleet":7037},{"id":4497,"title":7192,"description":7193,"docsLink":7194,"tiers":7195},"MQTT Broker","Manage and create MQTT clients to transport data for efficient messaging and communication within your applications.","\u002Fdocs\u002Fuser\u002Fteambroker\u002F",{"edge":6996,"hub":7037,"fleet":6996},{"id":7197,"title":7198,"description":7199,"docsLink":7200,"showOnPricing":7037,"tiers":7201},"project-nodes","Project Nodes aka seamless project comms","FlowFuse Project Nodes enable the passing of data and messages between your Node-RED projects.","\u002Fdocs\u002Fuser\u002Fprojectnodes\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7203,"title":7204,"description":7205,"docsLink":7206,"tiers":7207},"devops-pipelines","DevOps Pipelines","Set up different environments for development, testing, and production Node-RED instances to support a full software delivery lifecycle.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7209,"title":7210,"description":7211,"docsLink":7212,"tiers":7213},"git-integration","Git Integration","Back up your flows to a remote Git repository through a DevOps Pipeline. Supports GitHub and Azure DevOps repositories.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F#git-repository-stage",{"edge":7037,"hub":6996,"fleet":7037},{"id":7215,"title":7216,"description":7217,"docsLink":7212,"subfeature":6996,"showOnPricing":7037,"tiers":7218},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":7037,"hub":6996,"fleet":7037},{"id":7220,"title":7221,"description":7222,"docsLink":7212,"changelog":7223,"subfeature":6996,"showOnPricing":7037,"tiers":7226},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[7224],{"url":7225,"release":7148},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":7037,"hub":6996,"fleet":7037},{"id":7228,"title":7229,"features":7230},"operate-maintain","Operate & Maintain",[7231,7237,7243,7248,7256,7260,7264,7269,7275,7281,7286,7292,7296,7300],{"id":7232,"title":7233,"description":7234,"docsLink":7235,"tiers":7236},"snapshots","Snapshots & Version History","Automatic snapshots on remote devices and hosted instances, plus a full version history timeline so you can roll back to any prior state.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7238,"title":7239,"description":7240,"docsLink":7241,"subfeature":6996,"showOnPricing":7037,"tiers":7242},"auto-snapshot-remote","Auto Snapshot (Remote)","Automatically capture a snapshot every time a remote instance is deployed, so you always have a recoverable history of what was running on each device.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F#auto-snapshots",{"edge":6996,"hub":6996,"fleet":6996},{"id":7244,"title":7245,"description":7246,"docsLink":7241,"subfeature":6996,"showOnPricing":7037,"tiers":7247},"auto-snapshot-hosted","Auto Snapshot (Hosted)","Automatically capture a snapshot every time a hosted instance is deployed, so you always have a recoverable history of what was running.",{"edge":6996,"hub":6996,"fleet":6996},{"id":7249,"title":7250,"description":7251,"changelog":7252,"subfeature":6996,"showOnPricing":7037,"tiers":7255},"snapshot-comparison","Snapshot Comparison","Compare two snapshots side-by-side with a navigable diff view. Step through every changed, added, or deleted node and see property and code diffs.",[7253],{"url":7254,"release":7148},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7257,"title":7258,"subfeature":6996,"showOnPricing":7037,"tiers":7259},"version-history-timeline","Version History Timeline",{"edge":6996,"hub":6996,"fleet":6996},{"id":7261,"title":7262,"tiers":7263},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":6996,"hub":6996,"fleet":6996},{"id":7265,"title":7266,"description":7267,"tiers":7268},"device-fleet-updates","Device Fleet Updates","Connect to edge devices to quickly assess and update logic. Debug one device and roll out improvements to your fleet in minutes, securely without requiring full device access for your whole organisation.",{"edge":6996,"hub":7037,"fleet":6996},{"id":7270,"title":7271,"description":7272,"docsLink":7273,"tiers":7274},"device-group-management","Device Group Management","Logically group devices assigned to an application and integrate device groups into your DevOps Pipeline for coordinated fleet updates.","\u002Fdocs\u002Fuser\u002Fdevice-groups\u002F",{"edge":6996,"hub":7037,"fleet":6996},{"id":7276,"title":7277,"description":7278,"docsLink":7279,"tiers":7280},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":7037,"hub":6996,"fleet":7037},{"id":7282,"title":7283,"description":7284,"tiers":7285},"performance-monitoring","Performance Monitoring & Alerts","Track CPU, memory, and event loop performance across your instances and devices, with email alerts when something needs your attention.",{"edge":6996,"hub":6996,"fleet":6996},{"id":7287,"title":7288,"description":7289,"docsLink":7290,"subfeature":6996,"showOnPricing":7037,"tiers":7291},"instance-monitoring","Instance Monitoring","Enable alerts to be sent via email when your Node-RED instances encounter issues.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#alerts",{"edge":6996,"hub":6996,"fleet":6996},{"id":7293,"title":7294,"subfeature":6996,"showOnPricing":7037,"tiers":7295},"email-alerts","Email Alerts",{"edge":6996,"hub":6996,"fleet":6996},{"id":7297,"title":7298,"showOnPricing":7037,"tiers":7299},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":6996,"hub":6996,"fleet":6996},{"id":7301,"title":7302,"tiers":7303},"protected-instances","Protected Instances",{"edge":7037,"hub":6996,"fleet":7037},{"id":7305,"title":7306,"features":7307},"govern-secure","Govern and Secure",[7308,7317,7323,7329,7334,7340,7346,7352,7360,7366,7372,7378],{"id":7309,"title":7310,"description":7311,"docsLink":7312,"changelog":7313,"tiers":7316},"single-sign-on","Single Sign-On (SSO)","Configure FlowFuse to work with your own SSO provider, allowing users to access FlowFuse with a single set of login credentials.","\u002Fdocs\u002Fadmin\u002Fsso\u002F",[7314],{"url":7315,"release":7089},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7318,"title":7319,"description":7320,"docsLink":7321,"tiers":7322},"two-factor-authentication","Two-Factor Authentication","Two-factor authentication adds an extra layer of security to your FlowFuse account.","\u002Fdocs\u002Fuser\u002Fuser-settings\u002F#two-factor-authentication",{"edge":6996,"hub":6996,"fleet":6996},{"id":7324,"title":7325,"description":7326,"docsLink":7327,"tiers":7328},"certified-nodes-it","Certified Nodes - IT","IT certified node bundle includes: Redis, MQTT, HTTP Request, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server","\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2\u002F",{"edge":7037,"hub":6996,"fleet":6996},{"id":7330,"title":7331,"description":7332,"tiers":7333},"certified-nodes-ot","Certified OT Connections - OPC-UA, Modbus, etc.","OT certified node bundle includes: OPC-UA, Modbus TCP & RTU, RTSP, EtherNet\u002FIP, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server",{"edge":6996,"hub":7037,"fleet":7037},{"id":7335,"title":7336,"description":7337,"docsLink":7338,"tiers":7339},"audit-log","Audit Log","Keep track of everything going on in your Node-RED instances and FlowFuse. Audit Logs provide details on what actions have taken place, when they happened, and who did them.","\u002Fdocs\u002Fuser\u002Flogs\u002F#audit-log",{"edge":6996,"hub":6996,"fleet":6996},{"id":7341,"title":7342,"description":7343,"docsLink":7344,"tiers":7345},"role-based-access-control","Role-Based Access Control","Control who can do what at both the team and application level, from viewers to admins.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7347,"title":7348,"description":7349,"docsLink":7350,"subfeature":6996,"showOnPricing":7037,"tiers":7351},"application-level-rbac","Application-Level RBAC","Fine-grained access control per application, allowing team members to have different permission levels across different applications without requiring separate teams.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F#application-level-rbac",{"edge":6996,"hub":6996,"fleet":6996},{"id":7353,"title":7354,"description":7355,"changelog":7356,"subfeature":6996,"showOnPricing":7037,"tiers":7359},"scoped-personal-access-tokens","Scoped Personal Access Tokens","Restrict a Personal Access Token to specific teams, limit it to read-only operations, or control whether it carries admin privileges.",[7357],{"url":7358,"release":7089},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":6996,"hub":6996,"fleet":6996},{"id":7361,"title":7362,"description":7363,"docsLink":7364,"showOnPricing":7037,"tiers":7365},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":6996,"hub":6996,"fleet":6996},{"id":7367,"title":7368,"description":7369,"docsLink":7370,"showOnPricing":7037,"tiers":7371},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":6996,"hub":6996,"fleet":6996},{"id":7373,"title":7374,"description":7375,"docsLink":7376,"tiers":7377},"baa-for-hipaa","BAA for HIPAA","FlowFuse can sign a Business Associate Agreement to ensure proper safeguarding of protected health information handled on your behalf.","\u002Fhandbook\u002Fsales\u002Fsubscription-agreement-1.5\u002F",{"edge":7037,"hub":6996,"fleet":7037},{"id":7379,"title":7380,"description":7381,"tiers":7382},"sbom","Software Bill of Materials","A complete list of all software components used in your Node-RED instances and hosted applications, including version numbers and license information.",{"edge":7037,"hub":6996,"fleet":7037},{"id":7384,"title":7385,"features":7386},"support","Support",[7387,7392,7396],{"id":7388,"title":7389,"docsLink":7390,"tiers":7391},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":6996,"hub":6996,"fleet":6996},{"id":7393,"title":7394,"showOnPricing":7037,"tiers":7395},"live-chat-support","Live Chat Support",{"edge":6996,"hub":6996,"fleet":6996},{"id":7397,"title":7398,"docsLink":7399,"tiers":7400},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":6996,"hub":6996,"fleet":6996},"feature-catalog","0AnkhTIPCECCwP9NmbTWP5HvRYx4FTSao4lG93-HaWM",[7404,7407,7410,7413,7416,7419,7421,7424,7427,7430,7433,7435,7438,7441,7444,7447,7450,7453,7456,7459,7462,7465,7468,7471,7474,7477,7480,7483,7486,7489,7492,7495,7498,7501,7504,7507,7510,7513,7516,7519,7522,7525,7528,7531,7534,7537,7540,7543,7546,7548,7551,7554,7557,7560,7563,7566,7569,7571,7574,7577,7580,7583,7586,7588,7591,7594,7597,7600,7603,7606,7609,7612,7615,7618,7620,7623,7626,7629,7632,7635,7638,7641,7644,7647,7650,7653,7656,7659,7662,7664,7667,7670,7673,7676,7679,7682,7685,7688,7691,7694,7697,7700,7703,7706,7709,7712,7715,7718,7720,7723,7726,7729,7732,7735,7738,7741,7743,7746,7749,7752,7755,7758,7761,7764,7767,7770,7773,7776,7779,7782,7785,7788,7791,7794,7797,7800,7803,7806,7809,7812,7815,7818,7821,7824,7827,7830,7833,7836,7839,7842,7845,7848,7851,7854,7857,7860,7863,7866,7869,7872,7875,7878,7881,7884,7887,7890,7893,7895,7898,7901,7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934],{"path":7405,"title":7406},"\u002Fchangelog\u002F2023\u002F09\u002Fcustom-node-support","Custom Node Support",{"path":7408,"title":7409},"\u002Fchangelog\u002F2023\u002F09\u002Fdevops-actions","DevOps Pipeline with action selection",{"path":7411,"title":7412},"\u002Fchangelog\u002F2023\u002F09\u002Fintroduction-enterprise-tier","Introducing the Enterprise Tier",{"path":7414,"title":7415},"\u002Fchangelog\u002F2023\u002F09\u002Fpipeline-api","API Endpoint for DevOps Pipeline",{"path":7417,"title":7418},"\u002Fchangelog\u002F2023\u002F09\u002Fsnapshots-devices","Usability improvements to Device Management",{"path":7420,"title":7129},"\u002Fchangelog\u002F2023\u002F10\u002Fblueprints",{"path":7422,"title":7423},"\u002Fchangelog\u002F2023\u002F10\u002Fcertified-nodes","Certified Nodes",{"path":7425,"title":7426},"\u002Fchangelog\u002F2023\u002F10\u002Fdevice-snapshot-selection","Enhanced Snapshot Selection",{"path":7428,"title":7429},"\u002Fchangelog\u002F2023\u002F10\u002Fpath-bug-fix","Device Agent path bug fix",{"path":7431,"title":7432},"\u002Fchangelog\u002F2023\u002F10\u002Fresource-alerts","Resource Monitoring in Audit Log",{"path":7434,"title":7319},"\u002Fchangelog\u002F2023\u002F11\u002F2fa",{"path":7436,"title":7437},"\u002Fchangelog\u002F2023\u002F11\u002Fdefault-editor","Device Editor enabled by default",{"path":7439,"title":7440},"\u002Fchangelog\u002F2023\u002F11\u002Fdevices-in-pipelines","Devices in DevOps Pipelines",{"path":7442,"title":7443},"\u002Fchangelog\u002F2023\u002F11\u002Fproject-nodes-devices","Project Nodes for Devices",{"path":7445,"title":7446},"\u002Fchangelog\u002F2023\u002F12\u002Fbilling","No Credit Card required for billing",{"path":7448,"title":7449},"\u002Fchangelog\u002F2023\u002F12\u002Fblueprint-selection","Blueprint Selection Update",{"path":7451,"title":7452},"\u002Fchangelog\u002F2023\u002F12\u002Fdevice-groups","Device Groups",{"path":7454,"title":7455},"\u002Fchangelog\u002F2023\u002F12\u002Femail-alerting-node-red-crash","Email Alerts for Audit Log Events",{"path":7457,"title":7458},"\u002Fchangelog\u002F2023\u002F12\u002Fnode-red-updated","Node-RED 3.1.3 now available",{"path":7460,"title":7461},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-audit-log","Introducing the Device Auditlog Feature",{"path":7463,"title":7464},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-groups-snapshot","Device Groups - Automatic snapshot assignment",{"path":7466,"title":7467},"\u002Fchangelog\u002F2024\u002F01\u002Ffleet-mode","Renaming \"Default Device Mode\" to \"Fleet Mode\"",{"path":7469,"title":7470},"\u002Fchangelog\u002F2024\u002F01\u002Fhelm-v2","Helm Chart v2.0",{"path":7472,"title":7473},"\u002Fchangelog\u002F2024\u002F01\u002Fnew-blueprints","New Blueprints added",{"path":7475,"title":7476},"\u002Fchangelog\u002F2024\u002F01\u002Fsecurity-updates","Security Updates",{"path":7478,"title":7479},"\u002Fchangelog\u002F2024\u002F01\u002Fsso-team-membership","Managing Team Membership via SSO",{"path":7481,"title":7482},"\u002Fchangelog\u002F2024\u002F01\u002Fstreamlined-device-assignment","Streamlined Device assignment",{"path":7484,"title":7485},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-auto-snapshot","Device Auto Snapshots",{"path":7487,"title":7488},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-instance-audit-logs","Device Instance Audit Logging",{"path":7490,"title":7491},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-onboarding-improvements","Device Onboarding Improvements",{"path":7493,"title":7494},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-pricing-change","Pricing change for Devices",{"path":7496,"title":7497},"\u002Fchangelog\u002F2024\u002F02\u002Finstance-auto-snapshots","Instance Auto Snapshots",{"path":7499,"title":7500},"\u002Fchangelog\u002F2024\u002F02\u002Fpostgresql-upgrade","PostgreSQL Version update",{"path":7502,"title":7503},"\u002Fchangelog\u002F2024\u002F03\u002Fbearer-token-authentication","Bearer Token Authentication for Node-RED Instances",{"path":7505,"title":7506},"\u002Fchangelog\u002F2024\u002F03\u002Finstance-protection-mode","Instance Protection Mode",{"path":7508,"title":7509},"\u002Fchangelog\u002F2024\u002F03\u002Flimits-debug-payload","Configure HTTP Payload and Debug Message size",{"path":7511,"title":7512},"\u002Fchangelog\u002F2024\u002F03\u002Frestart-devices-remotly","Remote Device Restart",{"path":7514,"title":7515},"\u002Fchangelog\u002F2024\u002F04\u002Fcustom-nodes-on-devices","Custom Nodes Support on Devices",{"path":7517,"title":7518},"\u002Fchangelog\u002F2024\u002F04\u002Fdevice-auto-snapshot","Direct Dashboard Access",{"path":7520,"title":7521},"\u002Fchangelog\u002F2024\u002F04\u002Fimproving-device-groups","Improving Device Groups",{"path":7523,"title":7524},"\u002Fchangelog\u002F2024\u002F04\u002Fpricing-change","Pricing change Enterprise & Teams Tier",{"path":7526,"title":7527},"\u002Fchangelog\u002F2024\u002F04\u002Ftougher-rate-limiting","Tougher Rate Limiting on Public Routes",{"path":7529,"title":7530},"\u002Fchangelog\u002F2024\u002F05\u002Finstance-healthcheck","Customizing instance health-check settings",{"path":7532,"title":7533},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-blueprints","Blueprints added to Library",{"path":7535,"title":7536},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-flowviewer","Team Library - Flow Viewer",{"path":7538,"title":7539},"\u002Fchangelog\u002F2024\u002F05\u002Fmanaging-node-red-version-on-devices","Managing Node-RED versions on Devices",{"path":7541,"title":7542},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements","Snapshot Improvements",{"path":7544,"title":7545},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements-pt3","Snapshot Upload",{"path":7547,"title":7545},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-upload",{"path":7549,"title":7550},"\u002Fchangelog\u002F2024\u002F06\u002Fdevice-agent-proxy-support","Running the Device Agent behind an HTTP proxy",{"path":7552,"title":7553},"\u002Fchangelog\u002F2024\u002F06\u002Flibrary-blueprints","Custom hostnames for your instances",{"path":7555,"title":7556},"\u002Fchangelog\u002F2024\u002F06\u002Fmultiline-env-vars","Multi-line Environment Variables",{"path":7558,"title":7559},"\u002Fchangelog\u002F2024\u002F06\u002Fsnapshot-flow-compare","Compare Snapshots flows",{"path":7561,"title":7562},"\u002Fchangelog\u002F2024\u002F07\u002Fapplications-search","Applications Search",{"path":7564,"title":7565},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-group-clear-snapshot","Device Groups Snapshots",{"path":7567,"title":7568},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-delete","Managing devices",{"path":7570,"title":7568},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-move",{"path":7572,"title":7573},"\u002Fchangelog\u002F2024\u002F07\u002Fedit-snapshots","Edit Snapshots",{"path":7575,"title":7576},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant","The FlowFuse Expert",{"path":7578,"title":7579},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant-json","FlowFuse Expert Writes JSON",{"path":7581,"title":7582},"\u002Fchangelog\u002F2024\u002F07\u002Fimmersive-editor","Immersive Editor Experience",{"path":7584,"title":7585},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-inbox","Notifications Inbox",{"path":7587,"title":7585},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-update",{"path":7589,"title":7590},"\u002Fchangelog\u002F2024\u002F07\u002Fpersistent-storage","Persistent Storage on FlowFuse Cloud",{"path":7592,"title":7593},"\u002Fchangelog\u002F2024\u002F07\u002Fsso","Single Sign On Updates",{"path":7595,"title":7596},"\u002Fchangelog\u002F2024\u002F08\u002Fbill-of-materials","Bill of Materials",{"path":7598,"title":7599},"\u002Fchangelog\u002F2024\u002F08\u002Fenterprise-license-update","Enforcing Enterprise Restrictions",{"path":7601,"title":7602},"\u002Fchangelog\u002F2024\u002F08\u002Fldap-sso-groups","LDAP Single Sign On Updates",{"path":7604,"title":7605},"\u002Fchangelog\u002F2024\u002F08\u002Fstatic-file-service-navigation-visibility","Static File Service Navigation and Visibility",{"path":7607,"title":7608},"\u002Fchangelog\u002F2024\u002F10\u002Fdevice-group-env-vars","Environment Variables for your Device Groups",{"path":7610,"title":7611},"\u002Fchangelog\u002F2024\u002F10\u002Fmqtt-service","MQTT Broker Service",{"path":7613,"title":7614},"\u002Fchangelog\u002F2024\u002F10\u002Fnotifications-bulk-actions","Managing Notifications",{"path":7616,"title":7617},"\u002Fchangelog\u002F2024\u002F10\u002Fsnapshot-download-upload-options","Snapshot Upload and Download Improvements",{"path":7619,"title":7258},"\u002Fchangelog\u002F2024\u002F10\u002Fversion-history-timeline",{"path":7621,"title":7622},"\u002Fchangelog\u002F2024\u002F11\u002Faudit-log-hierarchy","Audit logs show hierarchical events",{"path":7624,"title":7625},"\u002Fchangelog\u002F2024\u002F11\u002Fdevice-agent-release","Device Agent 3.0 released",{"path":7627,"title":7628},"\u002Fchangelog\u002F2024\u002F11\u002Fmqtt-topic-hierarchy","MQTT Topic Hierarchy view",{"path":7630,"title":7631},"\u002Fchangelog\u002F2024\u002F11\u002Fteam-search","Team-wide search",{"path":7633,"title":7634},"\u002Fchangelog\u002F2024\u002F12\u002Fdashboad-iframe","Allow Dashboards to be embedded in iFrames",{"path":7636,"title":7637},"\u002Fchangelog\u002F2024\u002F12\u002Fdevice-editor-cache","Device Editor Access Speed Up",{"path":7639,"title":7640},"\u002Fchangelog\u002F2024\u002F12\u002Fteam-bom-timeline","Team BOM and Pipeline Views",{"path":7642,"title":7643},"\u002Fchangelog\u002F2025\u002F01\u002Ffree-tier-onboarding","New Onboarding Tour for Free Tier Users",{"path":7645,"title":7646},"\u002Fchangelog\u002F2025\u002F01\u002Fhidden-env-vars","Hidden Environment Variables",{"path":7648,"title":7649},"\u002Fchangelog\u002F2025\u002F01\u002Fimproved-diagnostics","Improved Diagnostics",{"path":7651,"title":7652},"\u002Fchangelog\u002F2025\u002F01\u002Fteam-level-groups","Team level view of Groups",{"path":7654,"title":7655},"\u002Fchangelog\u002F2025\u002F02\u002Fadditional-device-version-history-events","New Remote Instances Version History Events",{"path":7657,"title":7658},"\u002Fchangelog\u002F2025\u002F02\u002Fbroker-error-feedback","Improved Broker Connection Feedback",{"path":7660,"title":7661},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-agent-updates","FlowFuse User Authentication on Remote Instances",{"path":7663,"title":7258},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-version-history-timeline",{"path":7665,"title":7666},"\u002Fchangelog\u002F2025\u002F02\u002Fexternal-brokers","External MQTT Brokers",{"path":7668,"title":7669},"\u002Fchangelog\u002F2025\u002F02\u002Fmqtt-schema-suggestions","MQTT Smart Schema Suggestions",{"path":7671,"title":7672},"\u002Fchangelog\u002F2025\u002F02\u002Fresend-and-extend-team-invitation-expiration","Re-send Team Invitations",{"path":7674,"title":7675},"\u002Fchangelog\u002F2025\u002F02\u002Fschema-docs","Personalized Schema Documentation",{"path":7677,"title":7678},"\u002Fchangelog\u002F2025\u002F02\u002Ftopic-hierarchy-search","Search & Filter for Topic Hierarchy List",{"path":7680,"title":7681},"\u002Fchangelog\u002F2025\u002F03\u002Fcontainer-tags","Changes to tags for flowfuse\u002Fnode-red",{"path":7683,"title":7684},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-groups","Multiple Device Groups in a pipeline",{"path":7686,"title":7687},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-local-login","Local Login for Remote Instances",{"path":7689,"title":7690},"\u002Fchangelog\u002F2025\u002F03\u002Ffree-tier","Free Tier now more accessible to all",{"path":7692,"title":7693},"\u002Fchangelog\u002F2025\u002F03\u002Fresource-notifications","Resource Alerts",{"path":7695,"title":7696},"\u002Fchangelog\u002F2025\u002F03\u002Fsnapshot-filter","Filtering Snapshots",{"path":7698,"title":7699},"\u002Fchangelog\u002F2025\u002F03\u002Fteam-npm-registry","NPM Package Hosting",{"path":7701,"title":7702},"\u002Fchangelog\u002F2025\u002F03\u002Ftopic-deletion","MQTT Topic Management",{"path":7704,"title":7705},"\u002Fchangelog\u002F2025\u002F04\u002Fdevice-provisioning","Remote Instance Provisioning",{"path":7707,"title":7708},"\u002Fchangelog\u002F2025\u002F04\u002Fgit-integration","Git Integration with Pipelines",{"path":7710,"title":7711},"\u002Fchangelog\u002F2025\u002F04\u002Finstance-log-browsing","Better Node-RED log handling",{"path":7713,"title":7714},"\u002Fchangelog\u002F2025\u002F05\u002Fimport-node-red-flows","Import Node-RED Flows During Remote Instance Setup",{"path":7716,"title":7717},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant","FlowFuse Expert just got smarter",{"path":7719,"title":7717},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant-2",{"path":7721,"title":7722},"\u002Fchangelog\u002F2025\u002F06\u002Fgit-integration","Pulling snapshots from Git with Pipelines",{"path":7724,"title":7725},"\u002Fchangelog\u002F2025\u002F06\u002Finstance-performance-memory","Memory Metrics in Instance Performance View",{"path":7727,"title":7728},"\u002Fchangelog\u002F2025\u002F06\u002Fnew-home-page","Introducing the New Home Page Experience",{"path":7730,"title":7731},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance","Team Performance Feature",{"path":7733,"title":7734},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance-view","Instance Performance View",{"path":7736,"title":7737},"\u002Fchangelog\u002F2025\u002F06\u002Fui-refresh","Navigation UI Refresh",{"path":7739,"title":7740},"\u002Fchangelog\u002F2025\u002F07\u002Fbrowse-node-red-flows","Browse for Node-RED Flows During Remote Instance Setup",{"path":7742,"title":7083},"\u002Fchangelog\u002F2025\u002F07\u002Fflowfuse-tables",{"path":7744,"title":7745},"\u002Fchangelog\u002F2025\u002F07\u002Fimport-blueprints","Import blueprints directly into your existing instances",{"path":7747,"title":7748},"\u002Fchangelog\u002F2025\u002F07\u002Fsimplified-applications-overview","Simplified Applications Page with Summary Tiles",{"path":7750,"title":7751},"\u002Fchangelog\u002F2025\u002F07\u002Fsmart-suggestions","Smart Suggestions",{"path":7753,"title":7754},"\u002Fchangelog\u002F2025\u002F07\u002Fteam-to-pro-plan-rename","Team Plan Renamed to Pro Plan",{"path":7756,"title":7757},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-hosted","Generate snapshot descriptions with AI",{"path":7759,"title":7760},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-remote","AI Snapshot Descriptions Now Work with Remote Instances",{"path":7762,"title":7763},"\u002Fchangelog\u002F2025\u002F08\u002Fdevice-performance","FlowFuse Remote Instance Performance Data",{"path":7765,"title":7766},"\u002Fchangelog\u002F2025\u002F08\u002Fdirect-sso","Direct SSO Login",{"path":7768,"title":7769},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-assistant","FlowFuse Expert documents your flows",{"path":7771,"title":7772},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-mqtt","FlowFuse MQTT",{"path":7774,"title":7775},"\u002Fchangelog\u002F2025\u002F08\u002Fhttp-cors","Configure HTTP CORS",{"path":7777,"title":7778},"\u002Fchangelog\u002F2025\u002F08\u002Fsubflow-export","Export SubFlow as Node-RED module",{"path":7780,"title":7781},"\u002Fchangelog\u002F2025\u002F08\u002Ftables-assistant","FlowFuse Tables with a little help from the Assistant",{"path":7783,"title":7784},"\u002Fchangelog\u002F2025\u002F09\u002Fexpose-saml-groups-to-dashboard","Allow SSO groups to be shared with the Node-RED Dashboard",{"path":7786,"title":7787},"\u002Fchangelog\u002F2025\u002F09\u002Finline-assist","FlowFuse Expert can help you write code",{"path":7789,"title":7790},"\u002Fchangelog\u002F2025\u002F09\u002Fretiring-flowforge-device-agent","No more @flowforge\u002Fflowforge-device-agent releases",{"path":7792,"title":7793},"\u002Fchangelog\u002F2025\u002F09\u002Frevised-instance-snapshot-ui","Streamlined Snapshot Management",{"path":7795,"title":7796},"\u002Fchangelog\u002F2025\u002F09\u002Fteam-broker-async-api","Capture Async API data from FlowFuse Team Broker",{"path":7798,"title":7799},"\u002Fchangelog\u002F2025\u002F10\u002Fapplication-level-rbac","Application-level access control for Enterprise teams",{"path":7801,"title":7802},"\u002Fchangelog\u002F2025\u002F10\u002Fbulk-device-group-assignment","Easier Access to Bulk Device Group Management",{"path":7804,"title":7805},"\u002Fchangelog\u002F2025\u002F10\u002Fduplicate-instances-across-applications","Duplicate Instances Across Different Applications",{"path":7807,"title":7808},"\u002Fchangelog\u002F2025\u002F10\u002Fimport-flows-on-instance-creation","Import flows during instance creation",{"path":7810,"title":7811},"\u002Fchangelog\u002F2025\u002F10\u002Fmcp-nodes","FlowFuse MCP Server Nodes",{"path":7813,"title":7814},"\u002Fchangelog\u002F2025\u002F10\u002Fonnx-nodes","FlowFuse AI Nodes",{"path":7816,"title":7817},"\u002Fchangelog\u002F2025\u002F10\u002Fsettings-page-device-group-management","Device Group Management from Settings Page",{"path":7819,"title":7820},"\u002Fchangelog\u002F2025\u002F11\u002Fff-expert-update","FlowFuse Expert Update",{"path":7822,"title":7823},"\u002Fchangelog\u002F2025\u002F11\u002Fminimum-nodejs-version","Node.js v20 Minimum Version Requirement",{"path":7825,"title":7826},"\u002Fchangelog\u002F2025\u002F11\u002Fsso-session","SSO control over Session life",{"path":7828,"title":7829},"\u002Fchangelog\u002F2025\u002F12\u002Fff-expert-mcp-insights","FlowFuse Expert: Now with MCP-Powered Insights",{"path":7831,"title":7832},"\u002Fchangelog\u002F2025\u002F12\u002Fscheduled-maintenance","Scheduled Maintenance Mode",{"path":7834,"title":7835},"\u002Fchangelog\u002F2026\u002F01\u002Fdevice-agent-containers","Device Agent Docker Containers updated",{"path":7837,"title":7838},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-manage-palette","FlowFuse Expert: Enhanced Palette Integration",{"path":7840,"title":7841},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-nr-actions","FlowFuse Expert: Integration with Node-RED",{"path":7843,"title":7844},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-palette-queries","FlowFuse Expert: Palette Queries",{"path":7846,"title":7847},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-select-flows","FlowFuse Expert: Ask about your flows",{"path":7849,"title":7850},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-rbacs","FlowFuse Expert: MCP-Powered Insights with RBACs",{"path":7852,"title":7853},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-security","FlowFuse Expert: MCP-Powered Insights",{"path":7855,"title":7856},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options","Set Node.js Options for Remote Instances",{"path":7858,"title":7859},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context","FlowFuse Expert: Helping you make sense of your debug log",{"path":7861,"title":7862},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner","FlowFuse Expert: Never Miss an Update",{"path":7864,"title":7865},"\u002Fchangelog\u002F2026\u002F02\u002Fha-instance-rolling-restart","HA Hosted Instance Rolling Restart",{"path":7867,"title":7868},"\u002Fchangelog\u002F2026\u002F02\u002Fremote-instances-immersive-editor","Immersive Mode for Remote Instances",{"path":7870,"title":7871},"\u002Fchangelog\u002F2026\u002F02\u002Frestoring-snapshots-to-remote-instances","Restoring snapshots to developer-mode Remote Instances",{"path":7873,"title":7874},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops","Azure DevOps Pipeline support",{"path":7876,"title":7877},"\u002Fchangelog\u002F2026\u002F03\u002Fdeveloper-mode-in-immersive-editor","Developer Mode Now Accessible from the Immersive Editor",{"path":7879,"title":7880},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title","Embedded Editor Now Shows Active Tab",{"path":7882,"title":7883},"\u002Fchangelog\u002F2026\u002F03\u002Fmarch-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on March 28th, 2026",{"path":7885,"title":7886},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor","View Snapshot Details in the Immersive Editor",{"path":7888,"title":7889},"\u002Fchangelog\u002F2026\u002F04\u002Fexpert-action-links","FlowFuse expert action links",{"path":7891,"title":7892},"\u002Fchangelog\u002F2026\u002F04\u002Fhosted-instance-url-env-var","Hosted Instances know their own URL",{"path":7894,"title":7152},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer",{"path":7896,"title":7897},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer","Richer snapshot comparison view",{"path":7899,"title":7900},"\u002Fchangelog\u002F2026\u002F05\u002Fai-opt-out","AI Feature Opt-Out for Teams",{"path":7902,"title":7903},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building","FlowFuse Expert Builds Your Application",{"path":7905,"title":7906},"\u002Fchangelog\u002F2026\u002F05\u002Fsingle-sso-provider","Single SSO provider for all users",{"path":7908,"title":7909},"\u002Fchangelog\u002F2026\u002F06\u002Fdark-mode","Dark Mode",{"path":7911,"title":7912},"\u002Fchangelog\u002F2026\u002F06\u002Fdevice-agent-v4-released","Device Agent v4 released",{"path":7914,"title":7915},"\u002Fchangelog\u002F2026\u002F06\u002Fgeneric-git-server-support","Connect Pipelines to Any Git Server",{"path":7917,"title":7918},"\u002Fchangelog\u002F2026\u002F06\u002Fjuly-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on July 11th, 2026",{"path":7920,"title":7921},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups","Application Roles from SSO Groups",{"path":7923,"title":7924},"\u002Fchangelog\u002F2026\u002F07\u002Fdevice-agent-onboarding","Getting started with FlowFuse straight from the terminal",{"path":7926,"title":7927},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-enhancements","FlowFuse Expert Enhancements",{"path":7929,"title":7930},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation","FlowFuse Expert Can Now Work With Your Tables",{"path":7932,"title":7933},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats","Team Scoped Personal Access Tokens",{"path":7935,"title":7936},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards","A Dedicated Home for Your Dashboards",[],1786105887739]