perf: 构建工具调整

This commit is contained in:
TsMask
2025-03-18 19:30:19 +08:00
parent f767e14bf1
commit ec956f3c93
139 changed files with 7341 additions and 5799 deletions

View File

@@ -1,65 +1,36 @@
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: 192.168.2.219 Database: omc_db
-- ------------------------------------------------------
-- Server version 10.3.38-MariaDB
-- ----------------------------
-- Table structure for alarm_define
-- ----------------------------
DROP TABLE IF EXISTS "alarm_define";
CREATE TABLE "alarm_define" (
"alarm_id" text(32) NOT NULL,
"alarm_code" integer(11),
"alarm_title_cn" text(255),
"alarm_title" text(255),
"ne_type" text(32),
"alarm_type" text(64),
"orig_severity" text(255),
"object_uid" text(28),
"object_name" text(64),
"object_type" text(20),
"location_info" text(255),
"specific_problem" text(255),
"specific_problem_id" text(32),
"add_info" text(255),
"threshold" integer(20),
"status" text(255),
PRIMARY KEY ("alarm_id")
);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- ----------------------------
-- Records of alarm_define
-- ----------------------------
INSERT INTO "alarm_define" VALUES ('HXEMSCM10100', 10100, 'License即将过期', 'The license is about to expire', 'OMC', 'EnvironmentalAlarm', 'Warning', NULL, 'EMS;CM;License', 'CM', '', 'Alarm cause: the license expiration time is less than %d days', 'AC10100', '', 30, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSPM10200', 10200, '性能越限', 'Performance exceeds the threshold', 'OMC', 'QualityOfServiceAlarm', 'Warning', NULL, 'EMS;PM', 'PM', '', 'Alarm cause: performance exceed threshold, alarm generate from omc', 'AC10200', '', NULL, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSPM10201', 10201, '性能数据采集超时', 'Performance data report timed out', 'OMC', 'EquipmentAlarm', 'Minor', NULL, 'EMS;PM', 'PM', '', 'Alarm cause: performance data report timed out, period=%d(minutes), time delay=%d(minutes), alarm generate from omc', 'AC10201', '', NULL, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10000', 10000, '系统状态异常', 'The system state is abnormal', 'OMC', 'EquipmentAlarm', 'Major', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the system state of target NE has not been received for %d seconds', 'AC10000', '', 30, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10001', 10001, 'CPU占用率越限', 'CPU usage exceeds the threshold', 'OMC', 'EnvironmentalAlarm', 'Minor', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the CPU occupancy rate of the target NE exceeds %d', 'AC10001', '', 70, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10002', 10002, 'NTP时间同步失败', 'NTP Sync failure', 'OMC', 'EnvironmentalAlarm', 'Minor', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the CPU occupancy rate of the target NE exceeds %d', 'AC10001', '', 70, 'Active');
--
-- Table structure for table `alarm_define`
--
DROP TABLE IF EXISTS `alarm_define`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `alarm_define` (
`alarm_id` varchar(32) NOT NULL,
`alarm_code` int(11) DEFAULT NULL,
`alarm_title_cn` varchar(255) DEFAULT NULL,
`alarm_title` varchar(255) DEFAULT NULL,
`ne_type` varchar(32) DEFAULT NULL,
`alarm_type` varchar(64) DEFAULT '',
`orig_severity` enum('Critical','Major','Minor','Warning','Event') DEFAULT 'Warning' COMMENT 'Critical, Major, Minor, Warning, Event(Only VNF)',
`object_uid` varchar(28) DEFAULT NULL,
`object_name` varchar(64) DEFAULT '0',
`object_type` varchar(20) DEFAULT NULL,
`location_info` varchar(255) DEFAULT NULL,
`specific_problem` varchar(255) DEFAULT NULL,
`specific_problem_id` varchar(32) DEFAULT NULL,
`add_info` varchar(255) DEFAULT NULL,
`threshold` bigint(20) DEFAULT NULL,
`status` enum('Inactive','Active') DEFAULT 'Active',
PRIMARY KEY (`alarm_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `alarm_define`
--
LOCK TABLES `alarm_define` WRITE;
/*!40000 ALTER TABLE `alarm_define` DISABLE KEYS */;
INSERT INTO `alarm_define` VALUES ('HXEMSCM10100',10100,'License即将过期','The license is about to expire','OMC','EnvironmentalAlarm','Warning',NULL,'EMS;CM;License','CM','','Alarm cause: the license expiration time is less than %d days','AC10100','',30,'Active'),('HXEMSPM10200',10200,'性能越限','Performance exceeds the threshold','OMC','QualityOfServiceAlarm','Warning',NULL,'EMS;PM','PM','','Alarm cause: performance exceed threshold, alarm generate from omc','AC10200','',NULL,'Active'),('HXEMSPM10201',10201,'性能数据采集超时','Performance data report timed out','OMC','EquipmentAlarm','Minor',NULL,'EMS;PM','PM','','Alarm cause: performance data report timed out, period=%d(minutes), time delay=%d(minutes), alarm generate from omc','AC10201','',NULL,'Active'),('HXEMSSM10000',10000,'系统状态异常','The system state is abnormal','OMC','EquipmentAlarm','Major',NULL,'EMS;SystemManagement;Heartbeat','SystemState','','Alarm cause: the system state of target NE has not been received for %d seconds','AC10000','',30,'Active'),('HXEMSSM10001',10001,'CPU占用率越限','CPU usage exceeds the threshold','OMC','EnvironmentalAlarm','Minor',NULL,'EMS;SystemManagement;Heartbeat','SystemState','','Alarm cause: the CPU occupancy rate of the target NE exceeds %d','AC10001','',70,'Active'),('HXEMSSM10002',10002,'NTP时间同步失败','NTP Sync failure','OMC','EnvironmentalAlarm','Minor',NULL,'EMS;SystemManagement;Heartbeat','SystemState','','Alarm cause: the CPU occupancy rate of the target NE exceeds %d','AC10001','',70,'Active');
/*!40000 ALTER TABLE `alarm_define` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-03-06 17:27:01

View File

@@ -1,182 +1,183 @@
--
-- Table structure for table `chart_graph`
--
-- ----------------------------
-- Table structure for chart_graph
-- ----------------------------
DROP TABLE IF EXISTS "chart_graph";
CREATE TABLE "chart_graph" (
"row_id" integer NOT NULL,
"row_type" text(255) NOT NULL,
"row_group" text(32) NOT NULL,
"id" text(64) NOT NULL,
"type" text(64),
"depth" integer(11),
"x" integer,
"y" integer,
"size" text(64),
"icon" text(1024),
"img" text(255),
"clip_cfg" text(1024),
"direction" text(64),
"source" text(64),
"target" text(64),
"combo_id" text(64),
"padding" text(64),
"parent_id" text(64),
"children" text(1024),
"style" text(2048),
"label" text(64),
"label_cfg" text(1024),
PRIMARY KEY ("row_id")
);
DROP TABLE IF EXISTS `chart_graph`;
CREATE TABLE `chart_graph` (
`row_id` bigint NOT NULL AUTO_INCREMENT COMMENT '记录ID',
`row_type` enum('node','edge','combo') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '记录类型',
`row_group` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '记录组名',
`id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '元素ID',
`type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'node/combo 类型',
`depth` int DEFAULT '0' COMMENT 'node/combo 深度',
`x` float DEFAULT '0' COMMENT 'node/combo 横向坐标',
`y` float DEFAULT '0' COMMENT 'node/combo 纵向坐标',
`size` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '30' COMMENT 'node/combo 大小-JSON数组',
`icon` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'node-部分类型支持图标JSON配置',
`img` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'node-img 图片',
`clip_cfg` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'node-img 图片裁剪JSON配置',
`direction` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'node-triangle 三角形的方向',
`source` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'edge-边起始',
`target` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'edge-边目标',
`combo_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'combo-分组',
`padding` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '30' COMMENT 'combo-JSON分组内边距',
`parent_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'combo-父级分组',
`children` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'combo-JSON分组内含元素',
`style` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '元素样式-JONS配置',
`label` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '标签文本',
`label_cfg` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '标签文本-JSON配置',
PRIMARY KEY (`row_id`) USING BTREE,
KEY `idx_group` (`row_group`) USING BTREE COMMENT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='图表_G6关系图数据';
-- ----------------------------
-- Indexes structure for table chart_graph
-- ----------------------------
CREATE INDEX "idx_group"
ON "chart_graph" (
"row_group" ASC
);
--
-- Dumping data for table `chart_graph`
--
LOCK TABLES `chart_graph` WRITE;
INSERT INTO `chart_graph` VALUES (1, 'node', 'hello', 'node-1', 'rect', 0, -218, -20, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#ff0000\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ff0000\"}', 'Node-1', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2, 'node', 'hello', 'node-2', 'star', 0, 82, -15, '60', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#2bff00\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#05ff16\"}', 'Node-2', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (3, 'edge', 'hello', 'node-1~1704427926706~node-2', 'polyline', 0, 0, 0, '', '', '', '', '', 'node-1', 'node-2', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"endArrow\":true,\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":5,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#0062ff\"}', '1 to 2', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1177, 'node', 'demo', 'one', 'circle-animate-shape-r', 0, -123.911, 5, '60', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#00ff91\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ff4d4d\"}', 'One', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1178, 'node', 'demo', 'two', 'circle-animate-shape-stroke', 0, 228.652, 10.3481, '60', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#fe5a01\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#9497ff\"}', 'Two', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1179, 'node', 'demo', 'three', 'rect-animate-state', 0, 65, 127, '[80,40]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#ffffff\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'Three', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#000000\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1180, 'edge', 'demo', 'one~1704764271132~two', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'one', 'two', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"endArrow\":true,\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#fbfe39\"}', 'one-two', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1181, 'edge', 'demo', 'two~1704764297866~three', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'two', 'three', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#80f0ff\"}', 'two-three', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1182, 'edge', 'demo', 'three~1704764353721~one', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'three', 'one', '', '', '', '', '{\"cursor\":\"pointer\",\"lineWidth\":1,\"offset\":20,\"radius\":2,\"stroke\":\"#ffffff\"}', 'three-one', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1725, 'node', '5GC System Architecture1', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/base.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', '(R)AN', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1726, 'node', '5GC System Architecture1', 'DN', 'image-animate-state', 0, -529.46, 62.62, '[64,64]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/cloud.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'DN', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1727, 'node', '5GC System Architecture1', 'OMC', 'image-animate-state', 0, -527.746, -346.76, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/service_db.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#783636\"}', 'OMC', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1728, 'node', '5GC System Architecture1', 'IMS', 'rect-animate-state', 23, 22.4671, -231.155, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f1212c\"}', 'IMS', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1729, 'node', '5GC System Architecture1', 'NSSF', 'rect-animate-state', 22, -116.316, -335.56, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NSSF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1730, 'node', '5GC System Architecture1', 'UPF', 'rect-animate-state', 21, -268.005, -52.6272, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UPF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1731, 'node', '5GC System Architecture1', 'UE', 'image', 14, -532.589, -231.622, '[64,64]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mobile.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'UE', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1732, 'node', '5GC System Architecture1', 'PCF', 'rect-animate-state', 20, -267.905, -152.894, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'PCF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1733, 'node', '5GC System Architecture1', 'SMF', 'rect-animate-state', 19, -117.66, -53.1161, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f0212c\"}', 'SMF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1734, 'node', '5GC System Architecture1', 'AMF', 'rect-animate-state', 18, -268.316, -235.06, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AMF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1735, 'node', '5GC System Architecture1', 'UDM', 'rect-animate-state', 17, 19.8172, -333.371, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UDM', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1736, 'node', '5GC System Architecture1', 'AUSF', 'rect-animate-state', 16, -269.316, -335.56, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AUSF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1737, 'node', '5GC System Architecture1', 'NRF', 'rect', 15, 26.4865, -150.732, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"#f5222d\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#f5222d\"}', 'NRF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1738, 'node', '5GC System Architecture1', 'LMF', 'rect', 14, -266.158, 48.8341, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"#f5222d\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#f5222d\"}', 'LMF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1739, 'node', '5GC System Architecture1', 'NEF', 'rect', 13, -120.613, -149.621, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#f5222d\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NEF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1740, 'node', '5GC System Architecture1', 'MME', 'rect', 12, -118.002, -233.655, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"#f5222d\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#f5222d\"}', 'MME', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1741, 'node', '5GC System Architecture1', 'N3IWF', 'rect', 11, 20.4198, -58.2659, '[80,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '5GC', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"#f5222d\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#f5222d\"}', 'N3IWF', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1742, 'edge', '5GC System Architecture1', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N2', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1743, 'edge', '5GC System Architecture1', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1744, 'edge', '5GC System Architecture1', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N3', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1745, 'edge', '5GC System Architecture1', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N6', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1746, 'edge', '5GC System Architecture1', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1747, 'edge', '5GC System Architecture1', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N4', '{\"autoRotate\":true,\"position\":\"end\",\"refX\":-12,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1748, 'combo', '5GC System Architecture1', '5GC', 'rect', 10, -121.415, -143.363, '[40,40]', '', '', '', '', '', '', '', '[40,45,40,45]', '', '[{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"IMS\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NSSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UPF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"PCF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"SMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UDM\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AUSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NRF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"LMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NEF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"MME\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"N3IWF\",\"itemType\":\"node\"}]', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"grab\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"fill\":\"#ffffff\",\"fillOpacity\":0.1,\"height\":425.39430000000004,\"highlight\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"lineWidth\":1,\"r\":212.69715000000002,\"radius\":2,\"selected\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\",\"width\":376.8029}', 'Core Network', '{\"position\":\"top\",\"refX\":10,\"refY\":10,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1869, 'node', '5GC System Architecture2', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/base.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', '(R)AN', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1870, 'node', '5GC System Architecture2', 'DN', 'image-animate-state', 0, -544.46, 45.62, '[60,60]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/cloud6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'DN', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1871, 'node', '5GC System Architecture2', 'OMC', 'image-animate-state', 0, -531.746, -291.76, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/omc6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#783636\"}', 'OMC', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1872, 'node', '5GC System Architecture2', 'IMS', 'image-animate-state', 23, 32.8038, -208.015, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ims6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f1212c\"}', 'IMS', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1873, 'node', '5GC System Architecture2', 'NSSF', 'image-animate-state', 22, -103.637, -294.34, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nssf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NSSF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1874, 'node', '5GC System Architecture2', 'UPF', 'image-animate-state', 21, -251.745, -30.487, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/upf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UPF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1875, 'node', '5GC System Architecture2', 'UE', 'image', 14, -535.589, -178.622, '[64,64]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mobile.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'UE', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1876, 'node', '5GC System Architecture2', 'PCF', 'image-animate-state', 20, -251.569, -121.754, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/pcf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'PCF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1877, 'node', '5GC System Architecture2', 'SMF', 'image-animate-state', 19, -102.324, -30.9759, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/smf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f0212c\"}', 'SMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1878, 'node', '5GC System Architecture2', 'AMF', 'image-animate-state', 18, -252.824, -212.92, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/amf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1879, 'node', '5GC System Architecture2', 'UDM', 'image-animate-state', 17, 30.371, -283.065, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/udm6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UDM', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1880, 'node', '5GC System Architecture2', 'AUSF', 'image-animate-state', 16, -248.56, -291.872, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ausf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AUSF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1881, 'node', '5GC System Architecture2', 'NRF', 'image-animate-state', 15, 31.0121, -130.814, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nrf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NRF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1882, 'node', '5GC System Architecture2', 'LMF', 'image-animate-state', 14, -247.573, 58.3507, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lmf.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'LMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1883, 'node', '5GC System Architecture2', 'NEF', 'image-animate-state', 13, -102.277, -127.481, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nef6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NEF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1884, 'node', '5GC System Architecture2', 'MME', 'image-animate-state', 12, -102.666, -211.515, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mme6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'MME', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1885, 'node', '5GC System Architecture2', 'N3IWF', 'image-animate-state', 11, 32.0232, -36.1257, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/n3iwf61.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'N3IWF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1886, 'edge', '5GC System Architecture2', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N3', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1887, 'edge', '5GC System Architecture2', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N6', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1888, 'edge', '5GC System Architecture2', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1889, 'edge', '5GC System Architecture2', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N4', '{\"autoRotate\":true,\"position\":\"end\",\"refX\":-12,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1890, 'edge', '5GC System Architecture2', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N2', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1891, 'edge', '5GC System Architecture2', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":1,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (1892, 'combo', '5GC System Architecture2', '5GC', 'rect', 10, -110.01, -117.995, '[40,40]', '', '', '', '', '', '', '', '[40,45,45,40]', '', '[{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"IMS\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NSSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UPF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"PCF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"SMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UDM\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AUSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NRF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"LMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NEF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"MME\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"N3IWF\",\"itemType\":\"node\"}]', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"grab\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"fill\":\"#318c7d\",\"fillOpacity\":0.1,\"height\":402.691157,\"highlight\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"lineWidth\":1,\"r\":201.3455785,\"radius\":2,\"selected\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\",\"width\":345.628003}', 'Core Network', '{\"position\":\"top\",\"refX\":10,\"refY\":10,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2304, 'node', '5GC System Architecture3', 'Base', 'image-animate-state', 0, -371.671, -129.664, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/base.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', '(R)AN', '{\"offset\":-4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2305, 'node', '5GC System Architecture3', 'DN', 'image-animate-state', 0, 325.54, -71.38, '[80,80]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/earth3d-1.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'DN', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2306, 'node', '5GC System Architecture3', 'OMC', 'image-animate-state', 0, 327.254, -266.76, '[64,64]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/omc6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#783636\"}', 'OMC', '{\"offset\":4,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2307, 'node', '5GC System Architecture3', 'IMS', 'image-animate-state', 24, 40.3237, -119.48, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ims6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f1212c\"}', 'IMS', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2308, 'node', '5GC System Architecture3', 'NSSF', 'image-animate-state', 23, 49.2396, -291.854, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nssf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NSSF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2309, 'node', '5GC System Architecture3', 'UPF', 'image-animate-state', 22, -31.0923, -18.3086, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/upf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UPF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2310, 'node', '5GC System Architecture3', 'UE', 'image', 14, -366.589, 0.378, '[64,64]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mobile.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'UE', '{\"offset\":-10,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2311, 'node', '5GC System Architecture3', 'PCF', 'image-animate-state', 21, 114.148, -293.478, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/pcf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'PCF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2312, 'node', '5GC System Architecture3', 'SMF', 'image-animate-state', 20, -28.5624, -116.024, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/smf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f0212c\"}', 'SMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2313, 'node', '5GC System Architecture3', 'AMF', 'image-animate-state', 19, -166.037, -115.898, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/amf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2314, 'node', '5GC System Architecture3', 'UDM', 'image-animate-state', 18, -21.8787, -293.295, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/udm6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UDM', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2315, 'node', '5GC System Architecture3', 'AUSF', 'image-animate-state', 17, -89.9143, -291.872, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ausf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AUSF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2316, 'node', '5GC System Architecture3', 'NRF', 'image-animate-state', 16, 107.349, -117.955, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nrf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NRF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2317, 'node', '5GC System Architecture3', 'LMF', 'image-animate-state', 15, 178.417, -292.559, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lmf.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'LMF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2318, 'node', '5GC System Architecture3', 'NEF', 'image-animate-state', 14, -89.82, -113.764, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nef6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NEF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2319, 'node', '5GC System Architecture3', 'MME', 'image-animate-state', 13, -169.465, -291.82, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mme6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'MME', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2320, 'node', '5GC System Architecture3', 'N3IWF', 'image-animate-state', 12, 178.037, -121.058, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/n3iwf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'N3IWF', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2321, 'node', '5GC System Architecture3', 'lan', 'image-animate-state', 11, 10, -193, '[300,30]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/router3d-3.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '5GC', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#fafafa\"}', 'Router', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#2e0b7f\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2322, 'edge', '5GC System Architecture3', 'RAN~1704534829539~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":4,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N3', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":-15,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2323, 'edge', '5GC System Architecture3', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":4,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N6', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":-8,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2324, 'edge', '5GC System Architecture3', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2325, 'edge', '5GC System Architecture3', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N4', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":5,\"refY\":-4,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2326, 'edge', '5GC System Architecture3', '5GC~1704764825481~Base', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N2', '{\"autoRotate\":false,\"position\":\"end\",\"refX\":-10,\"refY\":6,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2327, 'edge', '5GC System Architecture3', 'UE~1704534736553~AMF', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2328, 'edge', '5GC System Architecture3', 'IMS~1706170983368~lan', 'line', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2329, 'edge', '5GC System Architecture3', 'NSSF~1706171150530~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2330, 'edge', '5GC System Architecture3', 'PCF~1706171215279~lan', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2331, 'edge', '5GC System Architecture3', 'AMF~1706171248818~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2332, 'edge', '5GC System Architecture3', 'AUSF~1706171282723~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2333, 'edge', '5GC System Architecture3', 'MME~1706173575994~lan', 'line', 0, 0, 0, '', '', '', '', '', 'MME', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2334, 'edge', '5GC System Architecture3', 'NEF~1706173617894~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2335, 'edge', '5GC System Architecture3', 'SMF~1706173671962~lan', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2336, 'edge', '5GC System Architecture3', 'UDM~1706173695080~lan', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2337, 'edge', '5GC System Architecture3', 'NRF~1706173798165~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2338, 'edge', '5GC System Architecture3', 'N3IWF~1706173823374~lan', 'line', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2339, 'edge', '5GC System Architecture3', 'LMF~1706173845506~lan', 'line', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2340, 'edge', '5GC System Architecture3', 'Base~1706176128676~MME', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'MME', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'S1-MME', '{\"autoRotate\":false,\"position\":\"end\",\"refX\":-15,\"refY\":-35,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (2341, 'combo', '5GC System Architecture3', '5GC', 'rect', 10, 4.47597, -155.893, '[40,40]', '', '', '', '', '', '', '', '[40,40,40,40]', '', '[{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"IMS\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NSSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UPF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"PCF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"SMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"UDM\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"AUSF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NRF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"LMF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"NEF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"MME\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"N3IWF\",\"itemType\":\"node\"},{\"comboId\":\"5GC\",\"depth\":12,\"id\":\"lan\",\"itemType\":\"node\"}]', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"grab\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"fill\":\"#318c7d\",\"fillOpacity\":0.1,\"height\":325.169599,\"highlight\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"lineWidth\":1,\"r\":203.94142,\"radius\":2,\"selected\":{\"fill\":\"rgb(253, 253, 253)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\",\"width\":407.88284}', 'Core Network', '{\"position\":\"top\",\"refX\":10,\"refY\":10,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4366, 'node', '5GC System Architecture', 'Base', 'image-animate-state', 0, -110, -30, '[60,50]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/base.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', '(R)AN', '{\"offset\":-5,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4367, 'node', '5GC System Architecture', 'DN', 'image-animate-state', 0, 240, -30, '[60,60]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/earth3d-1.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'DN', '{\"offset\":-5,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4368, 'node', '5GC System Architecture', 'OMC', 'image-animate-state', 0, 238.846, -329.519, '[60,60]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/omc62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#783636\"}', 'OMC', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4369, 'node', '5GC System Architecture', 'NR', 'image', 0, -153, -27, '[30,30]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lightning1.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', '', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#000000\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4370, 'node', '5GC System Architecture', 'IMS', 'image-animate-state', 11, 170, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ims62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f1212c\"}', 'IMS', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4371, 'node', '5GC System Architecture', 'SMSC', 'image-animate-state', 11, 238.918, -139.149, '[50,40]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/smsc.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'SMSC', '{\"offset\":0,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4372, 'node', '5GC System Architecture', 'NSSF', 'image-animate-state', 12, -110, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nssf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NSSF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4373, 'node', '5GC System Architecture', 'UPF', 'image-animate-state', 13, 30, -30, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/upf6.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UPF', '{\"offset\":-5,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4374, 'node', '5GC System Architecture', 'PCF', 'image-animate-state', 14, 100, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/pcf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'PCF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4375, 'node', '5GC System Architecture', 'UE', 'image', 14, -201.589, -29.622, '[64,64]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mobile.svg', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'UE', '{\"offset\":-10,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4376, 'node', '5GC System Architecture', 'SMF', 'image-animate-state', 15, 30, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/smf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f0212c\"}', 'SMF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4377, 'node', '5GC System Architecture', 'AMF', 'image-animate-state', 16, -110, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/amf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'AMF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4378, 'node', '5GC System Architecture', 'AUSF', 'image-animate-state', 16, -180, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/ausf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'AUSF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4379, 'node', '5GC System Architecture', 'UDM', 'image-animate-state', 17, -40, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/udm62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'UDM', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4380, 'node', '5GC System Architecture', 'NRF', 'image-animate-state', 19, 100, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nrf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NRF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4381, 'node', '5GC System Architecture', 'LMF', 'image-animate-state', 20, 170, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lmf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'LMF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4382, 'node', '5GC System Architecture', 'NEF', 'image-animate-state', 21, 30, -260, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/nef62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'NEF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4383, 'node', '5GC System Architecture', 'MME', 'image-animate-state', 22, -180, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/mme62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'MME', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4384, 'node', '5GC System Architecture', 'N3IWF', 'image-animate-state', 23, -40, -130, '[60,50]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/n3iwf62.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#f5222d\"}', 'N3IWF', '{\"offset\":-15,\"position\":\"bottom\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":14,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4385, 'node', '5GC System Architecture', 'lan7', 'image', 24, 238.892, -195.039, '[70,10]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN7', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4386, 'node', '5GC System Architecture', 'lan1', 'image', 24, -180, -195, '[70,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN1', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#f6f4f4\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4387, 'node', '5GC System Architecture', 'lan2', 'image', 24, -110, -195, '[70,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"transparent\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'LAN2', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#f8f7f7\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4388, 'node', '5GC System Architecture', 'lan3', 'image', 24, -40, -195, '[70,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN3', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4389, 'node', '5GC System Architecture', 'lan4', 'image', 24, 30, -195, '[70,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN4', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4390, 'node', '5GC System Architecture', 'lan5', 'image', 24, 100, -195, '[70,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN5', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4391, 'node', '5GC System Architecture', 'lan6', 'image', 24, 170, -195, '[70,10]', '{\"height\":25,\"img\":\"\",\"offset\":20,\"show\":false,\"width\":25}', '/svg/lan2.png', '{\"height\":0,\"show\":false,\"type\":\"circle\",\"width\":0}', '', '', '', '', '', '', '', '{\"cursor\":\"pointer\",\"fill\":\"transparent\",\"lineWidth\":1,\"radius\":4,\"stroke\":\"#ffffff\"}', 'LAN6', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#ffffff\",\"fontSize\":10,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4392, 'node', '5GC System Architecture', 'LAN', 'rect', 30, 30.0301, -195.517, '[500,10]', '{\"height\":25,\"img\":\"/svg/service.svg\",\"offset\":20,\"show\":false,\"width\":25}', '', '', '', '', '', '', '', '', '', '{\"active\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"fill\":\"rgb(250, 250, 250)\",\"lineWidth\":1,\"stroke\":\"rgb(224, 224, 224)\"},\"fill\":\"#87cefa\",\"highlight\":{\"fill\":\"rgb(223, 234, 255)\",\"lineWidth\":2,\"stroke\":\"#4572d9\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"fill\":\"rgb(247, 250, 255)\",\"lineWidth\":1,\"stroke\":\"rgb(191, 213, 255)\"},\"lineWidth\":1,\"radius\":4,\"selected\":{\"fill\":\"rgb(255, 255, 255)\",\"lineWidth\":4,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#87cefa\"}', '', '{\"offset\":0,\"position\":\"center\",\"style\":{\"fill\":\"#000000\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4393, 'edge', '5GC System Architecture', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":5,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#7b68ee\"}', 'N3', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":-10,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4394, 'edge', '5GC System Architecture', 'N3IWF~1706496082968~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan3', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4395, 'edge', '5GC System Architecture', 'NEF~1706494552592~lan5', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan4', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4396, 'edge', '5GC System Architecture', 'LMF~1706495015507~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan6', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4397, 'edge', '5GC System Architecture', 'OMC~1706495150020~lan7', 'polyline', 0, 0, 0, '', '', '', '', '', 'OMC', 'lan7', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4398, 'edge', '5GC System Architecture', 'AUSF~1706495243932~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan1', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4399, 'edge', '5GC System Architecture', 'AMF~1706495271064~lan2', 'polyline', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan2', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4400, 'edge', '5GC System Architecture', 'NRF~1706495715971~lan3', 'polyline', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan5', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4401, 'edge', '5GC System Architecture', 'SMF~1706495739277~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan4', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4402, 'edge', '5GC System Architecture', 'IMS~1706496047466~lan5', 'polyline', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan6', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4403, 'edge', '5GC System Architecture', 'DN~1704534869360~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":5,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#7b68ee\"}', 'N6', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":-10,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4404, 'edge', '5GC System Architecture', 'SMF~1704765447548~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N4', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":3,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4405, 'edge', '5GC System Architecture', '5GC~1704764825481~Base', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', 'N2', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":-5,\"refY\":-2,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4406, 'edge', '5GC System Architecture', 'MME~1706492758830~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'MME', 'lan1', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4407, 'edge', '5GC System Architecture', 'UDM~1706493787944~lan2', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan3', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4408, 'edge', '5GC System Architecture', 'PCF~1706494120334~lan3', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan5', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4409, 'edge', '5GC System Architecture', 'NSSF~1706494145341~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan2', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
INSERT INTO `chart_graph` VALUES (4410, 'edge', '5GC System Architecture', 'SMSC~1728441658350~LAN', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMSC', 'lan7', '', '', '', '', '{\"active\":{\"lineWidth\":1,\"stroke\":\"rgb(95, 149, 255)\"},\"cursor\":\"pointer\",\"disable\":{\"lineWidth\":1,\"stroke\":\"rgb(245, 245, 245)\"},\"highlight\":{\"lineWidth\":2,\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"inactive\":{\"lineWidth\":1,\"stroke\":\"rgb(234, 234, 234)\"},\"lineWidth\":2,\"offset\":20,\"radius\":2,\"selected\":{\"lineWidth\":2,\"shadowBlur\":10,\"shadowColor\":\"rgb(95, 149, 255)\",\"stroke\":\"rgb(95, 149, 255)\",\"text-shape\":{\"fontWeight\":500}},\"stroke\":\"#ffffff\"}', '', '{\"autoRotate\":false,\"position\":\"middle\",\"refX\":0,\"refY\":0,\"style\":{\"fill\":\"#ffffff\",\"fontSize\":12,\"fontWeight\":500}}');
UNLOCK TABLES;
-- ----------------------------
-- Records of chart_graph
-- ----------------------------
INSERT INTO "chart_graph" VALUES (1, 'node', 'hello', 'node-1', 'rect', 0, -218, -20, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#ff0000","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ff0000"}', 'Node-1', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2, 'node', 'hello', 'node-2', 'star', 0, 82, -15, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#2bff00","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#05ff16"}', 'Node-2', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (3, 'edge', 'hello', 'node-1~1704427926706~node-2', 'polyline', 0, 0, 0, '', '', '', '', '', 'node-1', 'node-2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"endArrow":true,"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#0062ff"}', '1 to 2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1177, 'node', 'demo', 'one', 'circle-animate-shape-r', 0, -123.911, 5, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#00ff91","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ff4d4d"}', 'One', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1178, 'node', 'demo', 'two', 'circle-animate-shape-stroke', 0, 228.652, 10.3481, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#fe5a01","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#9497ff"}', 'Two', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1179, 'node', 'demo', 'three', 'rect-animate-state', 0, 65, 127, '[80,40]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#ffffff","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'Three', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1180, 'edge', 'demo', 'one~1704764271132~two', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'one', 'two', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"endArrow":true,"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#fbfe39"}', 'one-two', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1181, 'edge', 'demo', 'two~1704764297866~three', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'two', 'three', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#80f0ff"}', 'two-three', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1182, 'edge', 'demo', 'three~1704764353721~one', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'three', 'one', '', '', '', '', '{"cursor":"pointer","lineWidth":1,"offset":20,"radius":2,"stroke":"#ffffff"}', 'three-one', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1725, 'node', '5GC System Architecture1', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1726, 'node', '5GC System Architecture1', 'DN', 'image-animate-state', 0, -529.46, 62.62, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/cloud.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1727, 'node', '5GC System Architecture1', 'OMC', 'image-animate-state', 0, -527.746, -346.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/service_db.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1728, 'node', '5GC System Architecture1', 'IMS', 'rect-animate-state', 23, 22.4671, -231.155, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1729, 'node', '5GC System Architecture1', 'NSSF', 'rect-animate-state', 22, -116.316, -335.56, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1730, 'node', '5GC System Architecture1', 'UPF', 'rect-animate-state', 21, -268.005, -52.6272, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1731, 'node', '5GC System Architecture1', 'UE', 'image', 14, -532.589, -231.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1732, 'node', '5GC System Architecture1', 'PCF', 'rect-animate-state', 20, -267.905, -152.894, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1733, 'node', '5GC System Architecture1', 'SMF', 'rect-animate-state', 19, -117.66, -53.1161, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1734, 'node', '5GC System Architecture1', 'AMF', 'rect-animate-state', 18, -268.316, -235.06, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1735, 'node', '5GC System Architecture1', 'UDM', 'rect-animate-state', 17, 19.8172, -333.371, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1736, 'node', '5GC System Architecture1', 'AUSF', 'rect-animate-state', 16, -269.316, -335.56, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1737, 'node', '5GC System Architecture1', 'NRF', 'rect', 15, 26.4865, -150.732, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1738, 'node', '5GC System Architecture1', 'LMF', 'rect', 14, -266.158, 48.8341, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1739, 'node', '5GC System Architecture1', 'NEF', 'rect', 13, -120.613, -149.621, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1740, 'node', '5GC System Architecture1', 'MME', 'rect', 12, -118.002, -233.655, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1741, 'node', '5GC System Architecture1', 'N3IWF', 'rect', 11, 20.4198, -58.2659, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1742, 'edge', '5GC System Architecture1', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1743, 'edge', '5GC System Architecture1', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1744, 'edge', '5GC System Architecture1', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1745, 'edge', '5GC System Architecture1', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1746, 'edge', '5GC System Architecture1', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1747, 'edge', '5GC System Architecture1', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":true,"position":"end","refX":-12,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1748, 'combo', '5GC System Architecture1', '5GC', 'rect', 10, -121.415, -143.363, '[40,40]', '', '', '', '', '', '', '', '[40,45,40,45]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#ffffff","fillOpacity":0.1,"height":425.39430000000004,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":212.69715000000002,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":376.8029}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1869, 'node', '5GC System Architecture2', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1870, 'node', '5GC System Architecture2', 'DN', 'image-animate-state', 0, -544.46, 45.62, '[60,60]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/cloud6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1871, 'node', '5GC System Architecture2', 'OMC', 'image-animate-state', 0, -531.746, -291.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1872, 'node', '5GC System Architecture2', 'IMS', 'image-animate-state', 23, 32.8038, -208.015, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1873, 'node', '5GC System Architecture2', 'NSSF', 'image-animate-state', 22, -103.637, -294.34, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1874, 'node', '5GC System Architecture2', 'UPF', 'image-animate-state', 21, -251.745, -30.487, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1875, 'node', '5GC System Architecture2', 'UE', 'image', 14, -535.589, -178.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1876, 'node', '5GC System Architecture2', 'PCF', 'image-animate-state', 20, -251.569, -121.754, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1877, 'node', '5GC System Architecture2', 'SMF', 'image-animate-state', 19, -102.324, -30.9759, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1878, 'node', '5GC System Architecture2', 'AMF', 'image-animate-state', 18, -252.824, -212.92, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1879, 'node', '5GC System Architecture2', 'UDM', 'image-animate-state', 17, 30.371, -283.065, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1880, 'node', '5GC System Architecture2', 'AUSF', 'image-animate-state', 16, -248.56, -291.872, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1881, 'node', '5GC System Architecture2', 'NRF', 'image-animate-state', 15, 31.0121, -130.814, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1882, 'node', '5GC System Architecture2', 'LMF', 'image-animate-state', 14, -247.573, 58.3507, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1883, 'node', '5GC System Architecture2', 'NEF', 'image-animate-state', 13, -102.277, -127.481, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1884, 'node', '5GC System Architecture2', 'MME', 'image-animate-state', 12, -102.666, -211.515, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1885, 'node', '5GC System Architecture2', 'N3IWF', 'image-animate-state', 11, 32.0232, -36.1257, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf61.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1886, 'edge', '5GC System Architecture2', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1887, 'edge', '5GC System Architecture2', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1888, 'edge', '5GC System Architecture2', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1889, 'edge', '5GC System Architecture2', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":true,"position":"end","refX":-12,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1890, 'edge', '5GC System Architecture2', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1891, 'edge', '5GC System Architecture2', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1892, 'combo', '5GC System Architecture2', '5GC', 'rect', 10, -110.01, -117.995, '[40,40]', '', '', '', '', '', '', '', '[40,45,45,40]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#318c7d","fillOpacity":0.1,"height":402.691157,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":201.3455785,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":345.628003}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2304, 'node', '5GC System Architecture3', 'Base', 'image-animate-state', 0, -371.671, -129.664, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":-4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2305, 'node', '5GC System Architecture3', 'DN', 'image-animate-state', 0, 325.54, -71.38, '[80,80]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/earth3d-1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2306, 'node', '5GC System Architecture3', 'OMC', 'image-animate-state', 0, 327.254, -266.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2307, 'node', '5GC System Architecture3', 'IMS', 'image-animate-state', 24, 40.3237, -119.48, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2308, 'node', '5GC System Architecture3', 'NSSF', 'image-animate-state', 23, 49.2396, -291.854, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2309, 'node', '5GC System Architecture3', 'UPF', 'image-animate-state', 22, -31.0923, -18.3086, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2310, 'node', '5GC System Architecture3', 'UE', 'image', 14, -366.589, 0.378, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":-10,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2311, 'node', '5GC System Architecture3', 'PCF', 'image-animate-state', 21, 114.148, -293.478, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2312, 'node', '5GC System Architecture3', 'SMF', 'image-animate-state', 20, -28.5624, -116.024, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2313, 'node', '5GC System Architecture3', 'AMF', 'image-animate-state', 19, -166.037, -115.898, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2314, 'node', '5GC System Architecture3', 'UDM', 'image-animate-state', 18, -21.8787, -293.295, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2315, 'node', '5GC System Architecture3', 'AUSF', 'image-animate-state', 17, -89.9143, -291.872, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2316, 'node', '5GC System Architecture3', 'NRF', 'image-animate-state', 16, 107.349, -117.955, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2317, 'node', '5GC System Architecture3', 'LMF', 'image-animate-state', 15, 178.417, -292.559, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2318, 'node', '5GC System Architecture3', 'NEF', 'image-animate-state', 14, -89.82, -113.764, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2319, 'node', '5GC System Architecture3', 'MME', 'image-animate-state', 13, -169.465, -291.82, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2320, 'node', '5GC System Architecture3', 'N3IWF', 'image-animate-state', 12, 178.037, -121.058, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2321, 'node', '5GC System Architecture3', 'lan', 'image-animate-state', 11, 10, -193, '[300,30]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/router3d-3.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#fafafa"}', 'Router', '{"offset":0,"position":"center","style":{"fill":"#2e0b7f","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2322, 'edge', '5GC System Architecture3', 'RAN~1704534829539~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":4,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":-15,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2323, 'edge', '5GC System Architecture3', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":4,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":-8,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2324, 'edge', '5GC System Architecture3', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2325, 'edge', '5GC System Architecture3', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":false,"position":"middle","refX":5,"refY":-4,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2326, 'edge', '5GC System Architecture3', '5GC~1704764825481~Base', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"end","refX":-10,"refY":6,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2327, 'edge', '5GC System Architecture3', 'UE~1704534736553~AMF', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2328, 'edge', '5GC System Architecture3', 'IMS~1706170983368~lan', 'line', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2329, 'edge', '5GC System Architecture3', 'NSSF~1706171150530~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2330, 'edge', '5GC System Architecture3', 'PCF~1706171215279~lan', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2331, 'edge', '5GC System Architecture3', 'AMF~1706171248818~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2332, 'edge', '5GC System Architecture3', 'AUSF~1706171282723~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2333, 'edge', '5GC System Architecture3', 'MME~1706173575994~lan', 'line', 0, 0, 0, '', '', '', '', '', 'MME', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2334, 'edge', '5GC System Architecture3', 'NEF~1706173617894~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2335, 'edge', '5GC System Architecture3', 'SMF~1706173671962~lan', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2336, 'edge', '5GC System Architecture3', 'UDM~1706173695080~lan', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2337, 'edge', '5GC System Architecture3', 'NRF~1706173798165~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2338, 'edge', '5GC System Architecture3', 'N3IWF~1706173823374~lan', 'line', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2339, 'edge', '5GC System Architecture3', 'LMF~1706173845506~lan', 'line', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2340, 'edge', '5GC System Architecture3', 'Base~1706176128676~MME', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'MME', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'S1-MME', '{"autoRotate":false,"position":"end","refX":-15,"refY":-35,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2341, 'combo', '5GC System Architecture3', '5GC', 'rect', 10, 4.47597, -155.893, '[40,40]', '', '', '', '', '', '', '', '[40,40,40,40]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"lan","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#318c7d","fillOpacity":0.1,"height":325.169599,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":203.94142,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":407.88284}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4366, 'node', '5GC System Architecture', 'Base', 'image-animate-state', 0, -110, -30, '[60,50]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4367, 'node', '5GC System Architecture', 'DN', 'image-animate-state', 0, 240, -30, '[60,60]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/earth3d-1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4368, 'node', '5GC System Architecture', 'OMC', 'image-animate-state', 0, 238.846, -329.519, '[60,60]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4369, 'node', '5GC System Architecture', 'NR', 'image', 0, -153, -27, '[30,30]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lightning1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4370, 'node', '5GC System Architecture', 'IMS', 'image-animate-state', 11, 170, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4371, 'node', '5GC System Architecture', 'SMSC', 'image-animate-state', 11, 238.918, -139.149, '[50,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smsc.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'SMSC', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4372, 'node', '5GC System Architecture', 'NSSF', 'image-animate-state', 12, -110, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4373, 'node', '5GC System Architecture', 'UPF', 'image-animate-state', 13, 30, -30, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4374, 'node', '5GC System Architecture', 'PCF', 'image-animate-state', 14, 100, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4375, 'node', '5GC System Architecture', 'UE', 'image', 14, -201.589, -29.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":-10,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4376, 'node', '5GC System Architecture', 'SMF', 'image-animate-state', 15, 30, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4377, 'node', '5GC System Architecture', 'AMF', 'image-animate-state', 16, -110, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4378, 'node', '5GC System Architecture', 'AUSF', 'image-animate-state', 16, -180, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'AUSF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4379, 'node', '5GC System Architecture', 'UDM', 'image-animate-state', 17, -40, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4380, 'node', '5GC System Architecture', 'NRF', 'image-animate-state', 19, 100, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4381, 'node', '5GC System Architecture', 'LMF', 'image-animate-state', 20, 170, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4382, 'node', '5GC System Architecture', 'NEF', 'image-animate-state', 21, 30, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4383, 'node', '5GC System Architecture', 'MME', 'image-animate-state', 22, -180, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4384, 'node', '5GC System Architecture', 'N3IWF', 'image-animate-state', 23, -40, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4385, 'node', '5GC System Architecture', 'lan7', 'image', 24, 238.892, -195.039, '[70,10]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN7', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4386, 'node', '5GC System Architecture', 'lan1', 'image', 24, -180, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN1', '{"offset":0,"position":"center","style":{"fill":"#f6f4f4","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4387, 'node', '5GC System Architecture', 'lan2', 'image', 24, -110, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'LAN2', '{"offset":0,"position":"center","style":{"fill":"#f8f7f7","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4388, 'node', '5GC System Architecture', 'lan3', 'image', 24, -40, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN3', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4389, 'node', '5GC System Architecture', 'lan4', 'image', 24, 30, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN4', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4390, 'node', '5GC System Architecture', 'lan5', 'image', 24, 100, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN5', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4391, 'node', '5GC System Architecture', 'lan6', 'image', 24, 170, -195, '[70,10]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN6', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4392, 'node', '5GC System Architecture', 'LAN', 'rect', 30, 30.0301, -195.517, '[500,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#87cefa","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#87cefa"}', '', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4393, 'edge', '5GC System Architecture', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#7b68ee"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":-10,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4394, 'edge', '5GC System Architecture', 'N3IWF~1706496082968~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan3', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4395, 'edge', '5GC System Architecture', 'NEF~1706494552592~lan5', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan4', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4396, 'edge', '5GC System Architecture', 'LMF~1706495015507~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan6', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4397, 'edge', '5GC System Architecture', 'OMC~1706495150020~lan7', 'polyline', 0, 0, 0, '', '', '', '', '', 'OMC', 'lan7', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4398, 'edge', '5GC System Architecture', 'AUSF~1706495243932~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan1', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4399, 'edge', '5GC System Architecture', 'AMF~1706495271064~lan2', 'polyline', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4400, 'edge', '5GC System Architecture', 'NRF~1706495715971~lan3', 'polyline', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan5', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4401, 'edge', '5GC System Architecture', 'SMF~1706495739277~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan4', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4402, 'edge', '5GC System Architecture', 'IMS~1706496047466~lan5', 'polyline', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan6', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4403, 'edge', '5GC System Architecture', 'DN~1704534869360~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#7b68ee"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":-10,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4404, 'edge', '5GC System Architecture', 'SMF~1704765447548~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":false,"position":"middle","refX":0,"refY":3,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4405, 'edge', '5GC System Architecture', '5GC~1704764825481~Base', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":-5,"refY":-2,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4406, 'edge', '5GC System Architecture', 'MME~1706492758830~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'MME', 'lan1', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4407, 'edge', '5GC System Architecture', 'UDM~1706493787944~lan2', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan3', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4408, 'edge', '5GC System Architecture', 'PCF~1706494120334~lan3', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan5', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4409, 'edge', '5GC System Architecture', 'NSSF~1706494145341~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4410, 'edge', '5GC System Architecture', 'SMSC~1728441658350~LAN', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMSC', 'lan7', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
-- Dump completed on 2024-03-06 17:27:01

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,55 +1,39 @@
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: 192.168.2.219 Database: omc_db
-- ------------------------------------------------------
-- Server version 10.3.38-MariaDB
-- ----------------------------
-- Table structure for group
-- ----------------------------
DROP TABLE IF EXISTS "group";
CREATE TABLE "group" (
"id" integer NOT NULL,
"name" text(255) NOT NULL,
"description" text(255),
"create_time" text,
PRIMARY KEY ("name")
);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- ----------------------------
-- Indexes structure for table group
-- ----------------------------
CREATE INDEX "fk_account_id"
ON "group" (
"id" ASC
);
CREATE INDEX "name"
ON "group" (
"name" ASC
);
--
-- Table structure for table `group`
--
DROP TABLE IF EXISTS `group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT current_timestamp(),
PRIMARY KEY (`name`) USING BTREE,
KEY `fk_account_id` (`id`) USING BTREE,
KEY `name` (`name`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `group`
--
LOCK TABLES `group` WRITE;
/*!40000 ALTER TABLE `group` DISABLE KEYS */;
INSERT INTO `group` VALUES (1,'admin','administrator','2023-05-13 11:04:54'),(3,'audit','audit group','2023-05-16 22:48:54'),(7,'manager','manager','2023-08-08 13:02:47'),(6,'monitor','monitor','2023-08-24 22:34:44'),(9,'ne','all ne','2023-08-21 11:24:33'),(10,'omc','omc','2023-08-24 09:55:54'),(2,'operator','operator','2023-05-16 22:49:42'),(4,'oss','oss ','2023-05-16 22:54:50'),(8,'test','test group','2023-08-09 15:57:34'),(5,'user','user group','2023-05-16 22:48:46');
/*!40000 ALTER TABLE `group` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- ----------------------------
-- Records of group
-- ----------------------------
INSERT INTO "group" VALUES (1, 'admin', 'administrator', '2023-05-13 11:04:54');
INSERT INTO "group" VALUES (3, 'audit', 'audit group', '2023-05-16 22:48:54');
INSERT INTO "group" VALUES (7, 'manager', 'manager', '2023-08-08 13:02:47');
INSERT INTO "group" VALUES (6, 'monitor', 'monitor', '2023-08-24 22:34:44');
INSERT INTO "group" VALUES (9, 'ne', 'all ne', '2023-08-21 11:24:33');
INSERT INTO "group" VALUES (10, 'omc', 'omc', '2023-08-24 09:55:54');
INSERT INTO "group" VALUES (2, 'operator', 'operator', '2023-05-16 22:49:42');
INSERT INTO "group" VALUES (4, 'oss', 'oss ', '2023-05-16 22:54:50');
INSERT INTO "group" VALUES (8, 'test', 'test group', '2023-08-09 15:57:34');
INSERT INTO "group" VALUES (5, 'user', 'user group', '2023-05-16 22:48:46');
-- Dump completed on 2024-03-06 17:27:02

View File

@@ -1,462 +1,461 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for kpi_title
-- ----------------------------
DROP TABLE IF EXISTS `kpi_title`;
CREATE TABLE `kpi_title` (
`id` int NOT NULL AUTO_INCREMENT,
`ne_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '网元类型',
`kpi_id` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT 'KPI标识',
`title_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
`cn_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '中文名',
`en_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '英文名',
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_type` (`ne_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='KPI_指标标题';
DROP TABLE IF EXISTS "kpi_title";
CREATE TABLE "kpi_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_id" text(16),
"title_json" text,
"cn_title" text(255),
"en_title" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_title
-- ----------------------------
CREATE INDEX "idx_type"
ON "kpi_title" (
"ne_type" ASC
);
-- ----------------------------
-- Records of kpi_title
-- ----------------------------
INSERT INTO `kpi_title` VALUES (1, 'AMF', 'AMF.01', '{\"cn\": \"AMF注册态用户数\", \"en\": \"AMF.RegSub\"}', 'AMF注册态用户数', 'AMF.RegSub');
INSERT INTO `kpi_title` VALUES (2, 'AMF', 'AMF.02', '{\"cn\": \"AMF初始注册请求次数\", \"en\": \"AMF.AttInitReg\"}', 'AMF初始注册请求次数', 'AMF.AttInitReg');
INSERT INTO `kpi_title` VALUES (3, 'AMF', 'AMF.03', '{\"cn\": \"AMF初始注册成功次数\", \"en\": \"AMF.SuccInitReg\"}', 'AMF初始注册成功次数', 'AMF.SuccInitReg');
INSERT INTO `kpi_title` VALUES (4, 'AMF', 'AMF.04', '{\"cn\": \"AMF初始注册失败次数_非法用户\", \"en\": \"AMF.FailedInitReg.3\"}', 'AMF初始注册失败次数_非法用户', 'AMF.FailedInitReg.3');
INSERT INTO `kpi_title` VALUES (5, 'AMF', 'AMF.05', '{\"cn\": \"AMF初始注册失败次数_PEI不允许\", \"en\": \"AMF.FailedInitReg.5\"}', 'AMF初始注册失败次数_PEI不允许', 'AMF.FailedInitReg.5');
INSERT INTO `kpi_title` VALUES (6, 'AMF', 'AMF.06', '{\"cn\": \"AMF初始注册失败次数_非法设备\", \"en\": \"AMF.FailedInitReg.6\"}', 'AMF初始注册失败次数_非法设备', 'AMF.FailedInitReg.6');
INSERT INTO `kpi_title` VALUES (7, 'AMF', 'AMF.07', '{\"cn\": \"AMF初始注册失败次数_5GS服务不允许_用户原因\", \"en\": \"AMF.FailedInitReg.7.User\"}', 'AMF初始注册失败次数_5GS服务不允许_用户原因', 'AMF.FailedInitReg.7.User');
INSERT INTO `kpi_title` VALUES (8, 'AMF', 'AMF.08', '{\"cn\": \"AMF初始注册失败次数_跟踪区内无合适小区_用户原因\", \"en\": \"AMF.FailedInitReg.15.User\"}', 'AMF初始注册失败次数_跟踪区内无合适小区_用户原因', 'AMF.FailedInitReg.15.User');
INSERT INTO `kpi_title` VALUES (9, 'AMF', 'AMF.09', '{\"cn\": \"AMF初始注册失败次数_N1模式不允许\", \"en\": \"AMF.FailedInitReg.27\"}', 'AMF初始注册失败次数_N1模式不允许', 'AMF.FailedInitReg.27');
INSERT INTO `kpi_title` VALUES (10, 'AMF', 'AMF.10', '{\"cn\": \"AMF初始注册失败次数_PLMN不允许\", \"en\": \"AMF.FailedInitReg.11\"}', 'AMF初始注册失败次数_PLMN不允许', 'AMF.FailedInitReg.11');
INSERT INTO `kpi_title` VALUES (11, 'AMF', 'AMF.11', '{\"cn\": \"AMF初始注册失败次数_跟踪区不允许\", \"en\": \"AMF.FailedInitReg.12\"}', 'AMF初始注册失败次数_跟踪区不允许', 'AMF.FailedInitReg.12');
INSERT INTO `kpi_title` VALUES (12, 'AMF', 'AMF.12', '{\"cn\": \"AMF初始注册失败次数_漫游跟踪区禁止接入\", \"en\": \"AMF.FailedInitReg.13\"}', 'AMF初始注册失败次数_漫游跟踪区禁止接入', 'AMF.FailedInitReg.13');
INSERT INTO `kpi_title` VALUES (13, 'AMF', 'AMF.13', '{\"cn\": \"AMF初始注册失败次数_无可用网络切片\", \"en\": \"AMF.FailedInitReg.62\"}', 'AMF初始注册失败次数_无可用网络切片', 'AMF.FailedInitReg.62');
INSERT INTO `kpi_title` VALUES (14, 'AMF', 'AMF.14', '{\"cn\": \"AMF初始注册失败次数_协议错误_用户原因\", \"en\": \"AMF.FailedInitReg.111.User\"}', 'AMF初始注册失败次数_协议错误_用户原因', 'AMF.FailedInitReg.111.User');
INSERT INTO `kpi_title` VALUES (15, 'AMF', 'AMF.15', '{\"cn\": \"AMF一次寻呼响应次数\", \"en\": \"AMF.FirstPagingSucc\"}', 'AMF一次寻呼响应次数', 'AMF.FirstPagingSucc');
INSERT INTO `kpi_title` VALUES (16, 'AMF', 'AMF.16', '{\"cn\": \"AMF二次寻呼响应次数\", \"en\": \"AMF.SecondPagingSucc\"}', 'AMF二次寻呼响应次数', 'AMF.SecondPagingSucc');
INSERT INTO `kpi_title` VALUES (17, 'AMF', 'AMF.17', '{\"cn\": \"AMF寻呼请求次数\", \"en\": \"AMF.PagAtt\"}', 'AMF寻呼请求次数', 'AMF.PagAtt');
INSERT INTO `kpi_title` VALUES (18, 'AMF', 'AMF.18', '{\"cn\": \"AMF业务请求被拒次数\", \"en\": \"AMF.FailServiceReq\"}', 'AMF业务请求被拒次数', 'AMF.FailServiceReq');
INSERT INTO `kpi_title` VALUES (19, 'AMF', 'AMF.19', '{\"cn\": \"AMF业务请求尝试次数\", \"en\": \"AMF.AttServiceReq\"}', 'AMF业务请求尝试次数', 'AMF.AttServiceReq');
INSERT INTO `kpi_title` VALUES (20, 'SMF', 'SMF.01', '{\"cn\": \"5G实时PDU会话数\", \"en\": \"SMF.MeanPduSession\"}', '5G实时PDU会话数', 'SMF.MeanPduSession');
INSERT INTO `kpi_title` VALUES (21, 'SMF', 'SMF.02', '{\"cn\": \"PDU会话建立成功次数\", \"en\": \"SMF.SuccCreatePduSession\"}', 'PDU会话建立成功次数', 'SMF.SuccCreatePduSession');
INSERT INTO `kpi_title` VALUES (22, 'SMF', 'SMF.03', '{\"cn\": \"PDU会话建立请求次数\", \"en\": \"SMF.AttCreatePduSession\"}', 'PDU会话建立请求次数', 'SMF.AttCreatePduSession');
INSERT INTO `kpi_title` VALUES (23, 'SMF', 'SMF.04', '{\"cn\": \"IMS PDU会话建立成功次数\", \"en\": \"SMF.SuccCreatePduSession._Ims\"}', 'IMS PDU会话建立成功次数', 'SMF.SuccCreatePduSession._Ims');
INSERT INTO `kpi_title` VALUES (24, 'SMF', 'SMF.05', '{\"cn\": \"IMS PDU会话建立请求次数\", \"en\": \"SMF.AttCreatePduSession._Ims\"}', 'IMS PDU会话建立请求次数', 'SMF.AttCreatePduSession._Ims');
INSERT INTO `kpi_title` VALUES (25, 'SMF', 'SMF.06', '{\"cn\": \"EPS-Fallback成功数\", \"en\": \"SMF.SuccSmfModifyBearerResponse.Epsfb\"}', 'EPS-Fallback成功数', 'SMF.SuccSmfModifyBearerResponse.Epsfb');
INSERT INTO `kpi_title` VALUES (26, 'SMF', 'SMF.07', '{\"cn\": \"EPS-Fallback请求数\", \"en\": \"SMF.AttSmfModifyPduSession.Epsfb\"}', 'EPS-Fallback请求数', 'SMF.AttSmfModifyPduSession.Epsfb');
INSERT INTO `kpi_title` VALUES (27, 'UDM', 'UDM.01', '{\"cn\": \"5G注册用户数\", \"en\": \"UDR.5gActSub\"}', '5G注册用户数', 'UDR.5gActSub');
INSERT INTO `kpi_title` VALUES (28, 'UDM', 'UDM.02', '{\"cn\": \"AMF发起的UECM注册请求次数\", \"en\": \"UDM.AmfUecmRegReq\"}', 'AMF发起的UECM注册请求次数', 'UDM.AmfUecmRegReq');
INSERT INTO `kpi_title` VALUES (29, 'UDM', 'UDM.03', '{\"cn\": \"AMF发起的UECM注册成功次数\", \"en\": \"UDM.AmfUecmRegSucc\"}', 'AMF发起的UECM注册成功次数', 'UDM.AmfUecmRegSucc');
INSERT INTO `kpi_title` VALUES (30, 'UDM', 'UDM.04', '{\"cn\": \"SMF发起的UECM注册成功次数\", \"en\": \"UDM.SmfUecmRegSucc\"}', 'SMF发起的UECM注册成功次数', 'UDM.SmfUecmRegSucc');
INSERT INTO `kpi_title` VALUES (31, 'UDM', 'UDM.05', '{\"cn\": \"SMF发起的UECM注册请求次数\", \"en\": \"UDM.SmfUecmRegReq\"}', 'SMF发起的UECM注册请求次数', 'UDM.SmfUecmRegReq');
INSERT INTO `kpi_title` VALUES (32, 'UDM', 'UDM.06', '{\"cn\": \"4G注册用户数\", \"en\": \"SUB.EpsActSubsInHss\"}', '4G注册用户数', 'SUB.EpsActSubsInHss');
INSERT INTO `kpi_title` VALUES (33, 'UDM', 'UDM.07', '{\"cn\": \"4G鉴权信息查询成功次数\", \"en\": \"DIAM.AucInfoAnsSucc\"}', '4G鉴权信息查询成功次数', 'DIAM.AucInfoAnsSucc');
INSERT INTO `kpi_title` VALUES (34, 'UDM', 'UDM.08', '{\"cn\": \"4G鉴权信息查询请求次数\", \"en\": \"DIAM.AucInfoReq\"}', '4G鉴权信息查询请求次数', 'DIAM.AucInfoReq');
INSERT INTO `kpi_title` VALUES (35, 'UDM', 'UDM.09', '{\"cn\": \"4G更新位置成功次数\", \"en\": \"DIAM.UpdateLocationAnsSucc\"}', '4G更新位置成功次数', 'DIAM.UpdateLocationAnsSucc');
INSERT INTO `kpi_title` VALUES (36, 'UDM', 'UDM.10', '{\"cn\": \"4G更新位置请求次数\", \"en\": \"DIAM.UpdateLocationReq\"}', '4G更新位置请求次数', 'DIAM.UpdateLocationReq');
INSERT INTO `kpi_title` VALUES (37, 'UDM', 'UDM.11', '{\"cn\": \"SAR成功响应总次数\", \"en\": \"UR.SuccSAA\"}', 'SAR成功响应总次数', 'UR.SuccSAA');
INSERT INTO `kpi_title` VALUES (38, 'UDM', 'UDM.12', '{\"cn\": \"SAR请求总次数\", \"en\": \"UR.AttSAR\"}', 'SAR请求总次数', 'UR.AttSAR');
INSERT INTO `kpi_title` VALUES (39, 'UDM', 'UDM.13', '{\"cn\": \"LIR成功响应总次数\", \"en\": \"LIQ.SuccLIA\"}', 'LIR成功响应总次数', 'LIQ.SuccLIA');
INSERT INTO `kpi_title` VALUES (40, 'UDM', 'UDM.14', '{\"cn\": \"LIR请求总次数\", \"en\": \"LIQ.AttLIR\"}', 'LIR请求总次数', 'LIQ.AttLIR');
INSERT INTO `kpi_title` VALUES (41, 'AUSF', 'AUSF.01', '{\"cn\": \"鉴权成功次数\", \"en\": \"Ausf.UeAuthAnsSucc\"}', '鉴权成功次数', 'Ausf.UeAuthAnsSucc');
INSERT INTO `kpi_title` VALUES (42, 'AUSF', 'AUSF.02', '{\"cn\": \"鉴权请求次数\", \"en\": \"Ausf.UeAuthReq\"}', '鉴权请求次数', 'Ausf.UeAuthReq');
INSERT INTO `kpi_title` VALUES (43, 'UPF', 'UPF.01', '{\"cn\": \"PFCP会话建立成功次数\", \"en\": \"UPF.PfcpSessionEstabSucc\"}', 'PFCP会话建立成功次数', 'UPF.PfcpSessionEstabSucc');
INSERT INTO `kpi_title` VALUES (44, 'UPF', 'UPF.02', '{\"cn\": \"PFCP会话建立请求次数\", \"en\": \"UPF.PfcpSessionEstabReq\"}', 'PFCP会话建立请求次数', 'UPF.PfcpSessionEstabReq');
INSERT INTO `kpi_title` VALUES (45, 'UPF', 'UPF.03', '{\"cn\": \"N6接口上行字节数\", \"en\": \"UPF.N6OgOct\"}', 'N6接口上行字节数', 'UPF.N6OgOct');
INSERT INTO `kpi_title` VALUES (46, 'UPF', 'UPF.04', '{\"cn\": \"N6接口下行字节数\", \"en\": \"UPF.N6IncOct\"}', 'N6接口下行字节数', 'UPF.N6IncOct');
INSERT INTO `kpi_title` VALUES (47, 'UPF', 'UPF.05', '{\"cn\": \"N3接口上行字节数\", \"en\": \"UPF.N3OgOct\"}', 'N3接口上行字节数', 'UPF.N3OgOct');
INSERT INTO `kpi_title` VALUES (48, 'UPF', 'UPF.06', '{\"cn\": \"N3接口下行字节数\", \"en\": \"UPF.N3IncOct\"}', 'N3接口下行字节数', 'UPF.N3IncOct');
INSERT INTO `kpi_title` VALUES (49, 'UPF', 'UPF.07', '{\"cn\": \"SGi接口上行字节数\", \"en\": \"IP.PeakThroughputUlSgi\"}', 'SGi接口上行字节数', 'IP.PeakThroughputUlSgi');
INSERT INTO `kpi_title` VALUES (50, 'UPF', 'UPF.08', '{\"cn\": \"SGi接口下行字节数\", \"en\": \"IP.PeakThroughputDlSgi\"}', 'SGi接口下行字节数', 'IP.PeakThroughputDlSgi');
INSERT INTO `kpi_title` VALUES (51, 'UPF', 'UPF.09', '{\"cn\": \"S1-U接口上行字节数\", \"en\": \"GTP.OutOctS1uSgw\"}', 'S1-U接口上行字节数', 'GTP.OutOctS1uSgw');
INSERT INTO `kpi_title` VALUES (52, 'UPF', 'UPF.10', '{\"cn\": \"S1-U接口下行字节数\", \"en\": \"GTP.IncOctS1uSgw\"}', 'S1-U接口下行字节数', 'GTP.IncOctS1uSgw');
INSERT INTO `kpi_title` VALUES (53, 'AMF', 'AMF.20', '{\"cn\": \"EPS在线用户数\", \"en\": \"SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected\"}', 'EPS在线用户数', 'SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected');
INSERT INTO `kpi_title` VALUES (54, 'AMF', 'AMF.21', '{\"cn\": \"EPS附着成功次数\", \"en\": \"MM.SuccEpsAttach\"}', 'EPS附着成功次数', 'MM.SuccEpsAttach');
INSERT INTO `kpi_title` VALUES (55, 'AMF', 'AMF.22', '{\"cn\": \"EPS附着请求次数\", \"en\": \"MM.AttEpsAttach\"}', 'EPS附着请求次数', 'MM.AttEpsAttach');
INSERT INTO `kpi_title` VALUES (56, 'AMF', 'AMF.23', '{\"cn\": \"EPS附着失败次数_非法用户\", \"en\": \"MM.FailedEpsAttach.3\"}', 'EPS附着失败次数_非法用户', 'MM.FailedEpsAttach.3');
INSERT INTO `kpi_title` VALUES (57, 'AMF', 'AMF.24', '{\"cn\": \"EPS附着失败次数_非法终端\", \"en\": \"MM.FailedEpsAttach.5\"}', 'EPS附着失败次数_非法终端', 'MM.FailedEpsAttach.5');
INSERT INTO `kpi_title` VALUES (58, 'AMF', 'AMF.25', '{\"cn\": \"EPS附着失败次数_非法ME\", \"en\": \"MM.FailedEpsAttach.6\"}', 'EPS附着失败次数_非法ME', 'MM.FailedEpsAttach.6');
INSERT INTO `kpi_title` VALUES (59, 'AMF', 'AMF.26', '{\"cn\": \"EPS附着失败次数_EPS服务不允许_用户原因\", \"en\": \"MM.FailedEpsAttach.7.User\"}', 'EPS附着失败次数_EPS服务不允许_用户原因', 'MM.FailedEpsAttach.7.User');
INSERT INTO `kpi_title` VALUES (60, 'AMF', 'AMF.27', '{\"cn\": \"EPS附着失败次数_EPS和非EPS服务不允许\", \"en\": \"MM.FailedEpsAttach.8\"}', 'EPS附着失败次数_EPS和非EPS服务不允许', 'MM.FailedEpsAttach.8');
INSERT INTO `kpi_title` VALUES (61, 'AMF', 'AMF.28', '{\"cn\": \"EPS附着失败次数_跟踪区内无合适小区_用户原因\", \"en\": \"MM.FailedEpsAttach.15.User\"}', 'EPS附着失败次数_跟踪区内无合适小区_用户原因', 'MM.FailedEpsAttach.15.User');
INSERT INTO `kpi_title` VALUES (62, 'AMF', 'AMF.29', '{\"cn\": \"EPS附着失败次数_ESM失败_用户原因\", \"en\": \"MM.FailedEpsAttach.19.User\"}', 'EPS附着失败次数_ESM失败_用户原因', 'MM.FailedEpsAttach.19.User');
INSERT INTO `kpi_title` VALUES (63, 'AMF', 'AMF.30', '{\"cn\": \"MME一次寻呼响应次数\", \"en\": \"MM.FirstPagingSucc\"}', 'MME一次寻呼响应次数', 'MM.FirstPagingSucc');
INSERT INTO `kpi_title` VALUES (64, 'AMF', 'AMF.31', '{\"cn\": \"MME二次寻呼响应次数\", \"en\": \"MM.SecondPagingSucc\"}', 'MME二次寻呼响应次数', 'MM.SecondPagingSucc');
INSERT INTO `kpi_title` VALUES (65, 'AMF', 'AMF.32', '{\"cn\": \"MME寻呼请求次数\", \"en\": \"MM.PagAtt\"}', 'MME寻呼请求次数', 'MM.PagAtt');
INSERT INTO `kpi_title` VALUES (66, 'SMF', 'SMF.08', '{\"cn\": \"4G在线会话数\", \"en\": \"SM.MeanNbrBearerPgw.Default\"}', '4G在线会话数', 'SM.MeanNbrBearerPgw.Default');
INSERT INTO `kpi_title` VALUES (67, 'SMF', 'SMF.09', '{\"cn\": \"PGW缺省承载建立成功个数\", \"en\": \"SM.SuccCreateDefaultEpsBearer\"}', 'PGW缺省承载建立成功个数', 'SM.SuccCreateDefaultEpsBearer');
INSERT INTO `kpi_title` VALUES (68, 'SMF', 'SMF.10', '{\"cn\": \"PGW缺省承载建立请求个数\", \"en\": \"SM.AttCreateDefaultEpsBearer\"}', 'PGW缺省承载建立请求个数', 'SM.AttCreateDefaultEpsBearer');
INSERT INTO `kpi_title` VALUES (69, 'SMF', 'SMF.11', '{\"cn\": \"PGW专用承载建立成功个数\", \"en\": \"SM.SuccCreateDedicatedEpsBearer\"}', 'PGW专用承载建立成功个数', 'SM.SuccCreateDedicatedEpsBearer');
INSERT INTO `kpi_title` VALUES (70, 'SMF', 'SMF.12', '{\"cn\": \"PGW专用承载建立请求个数\", \"en\": \"SM.AttCreateDedicatedEpsBearer\"}', 'PGW专用承载建立请求个数', 'SM.AttCreateDedicatedEpsBearer');
INSERT INTO `kpi_title` VALUES (71, 'SMF', 'SMF.13', '{\"cn\": \"IMS缺省承载成功建立个数\", \"en\": \"SM.SuccCreateDefaultEpsBearer._Ims\"}', 'IMS缺省承载成功建立个数', 'SM.SuccCreateDefaultEpsBearer._Ims');
INSERT INTO `kpi_title` VALUES (72, 'SMF', 'SMF.14', '{\"cn\": \"IMS缺省承载请求建立个数\", \"en\": \"SM.AttCreateDefaultEpsBearer._Ims\"}', 'IMS缺省承载请求建立个数', 'SM.AttCreateDefaultEpsBearer._Ims');
INSERT INTO `kpi_title` VALUES (73, 'AMF', 'AMF.A.02', '{\"cn\":\"AMF移动性注册更新成功次数\",\"en\":\"AMF.SuccMobiReg\"}', 'AMF移动性注册更新成功次数', 'AMF.SuccMobiReg');
INSERT INTO `kpi_title` VALUES (74, 'AMF', 'AMF.A.03', '{\"cn\":\"AMF移动性注册更新失败次数\",\"en\":\"AMF.FailedMobiReg\"}', 'AMF移动性注册更新失败次数', 'AMF.FailedMobiReg');
INSERT INTO `kpi_title` VALUES (75, 'AMF', 'AMF.A.04', '{\"cn\":\"AMF紧急注册请求次数\",\"en\":\"AMF.AttEmergReg\"}', 'AMF紧急注册请求次数', 'AMF.AttEmergReg');
INSERT INTO `kpi_title` VALUES (76, 'AMF', 'AMF.A.05', '{\"cn\":\"AMF紧急注册成功次数\",\"en\":\"AMF.SuccEmergReg\"}', 'AMF紧急注册成功次数', 'AMF.SuccEmergReg');
INSERT INTO `kpi_title` VALUES (77, 'AMF', 'AMF.A.06', '{\"cn\":\"AMF紧急注册失败次数\",\"en\":\"AMF.FailedEmergReg\"}', 'AMF紧急注册失败次数', 'AMF.FailedEmergReg');
INSERT INTO `kpi_title` VALUES (78, 'AMF', 'AMF.A.07', '{\"cn\":\"UE发起的去注册请求次数\",\"en\":\"AMF.AttUeDereg\"}', 'UE发起的去注册请求次数', 'AMF.AttUeDereg');
INSERT INTO `kpi_title` VALUES (79, 'AMF', 'AMF.A.08', '{\"cn\":\"UE发起的去注册成功次数\",\"en\":\"AMF.SuccUeDereg\"}', 'UE发起的去注册成功次数', 'AMF.SuccUeDereg');
INSERT INTO `kpi_title` VALUES (80, 'AMF', 'AMF.A.09', '{\"cn\":\"AMF发起的去注册请求次数\",\"en\":\"AMF.AttAmfDereg\"}', 'AMF发起的去注册请求次数', 'AMF.AttAmfDereg');
INSERT INTO `kpi_title` VALUES (81, 'AMF', 'AMF.A.10', '{\"cn\":\"AMF发起的去注册成功次数\",\"en\":\"AMF.SuccAmfDereg\"}', 'AMF发起的去注册成功次数', 'AMF.SuccAmfDereg');
INSERT INTO `kpi_title` VALUES (82, 'AMF', 'AMF.A.11', '{\"cn\":\"UDM发起的去注册请求次数\",\"en\":\"AMF.AttUdmDereg\"}', 'UDM发起的去注册请求次数', 'AMF.AttUdmDereg');
INSERT INTO `kpi_title` VALUES (83, 'AMF', 'AMF.A.12', '{\"cn\":\"UDM发起的去注册成功次数\",\"en\":\"AMF.SuccUdmDereg\"}', 'UDM发起的去注册成功次数', 'AMF.SuccUdmDereg');
INSERT INTO `kpi_title` VALUES (84, 'AMF', 'AMF.A.13', '{\"cn\":\"AMF寻呼失败次数\",\"en\":\"AMF.PagFail\"}', 'AMF寻呼失败次数', 'AMF.PagFail');
INSERT INTO `kpi_title` VALUES (85, 'AMF', 'AMF.A.14', '{\"cn\":\"AMF隐式去注册次数\",\"en\":\"AMF.ImplicitDereg\"}', 'AMF隐式去注册次数', 'AMF.ImplicitDereg');
INSERT INTO `kpi_title` VALUES (86, 'SMF', 'SMF.A.01', '{\"cn\":\"PDU会话接受次数\",\"en\":\"SMF.PduSessAcpt\"}', 'PDU会话接受次数', 'SMF.PduSessAcpt');
INSERT INTO `kpi_title` VALUES (87, 'SMF', 'SMF.A.02', '{\"cn\":\"基站Pdu资源创建成功次数\",\"en\":\"SM.PduResSetupSucc\"}', '基站Pdu资源创建成功次数', 'SM.PduResSetupSucc');
INSERT INTO `kpi_title` VALUES (88, 'SMF', 'SMF.A.03', '{\"cn\":\"查询用户SM数据失败次数\",\"en\":\"SM.RetrieveSmDataFail\"}', '查询用户SM数据失败次数', 'SM.RetrieveSmDataFail');
INSERT INTO `kpi_title` VALUES (89, 'SMF', 'SMF.A.04', '{\"cn\":\"PFCP会话建立失败次数\",\"en\":\"SM.PfcpSessEstFail\"}', 'PFCP会话建立失败次数', 'SM.PfcpSessEstFail');
INSERT INTO `kpi_title` VALUES (90, 'SMF', 'SMF.A.05', '{\"cn\":\"基站Pdu资源创建失败次数\",\"en\":\"SM.PduResSetupFail\"}', '基站Pdu资源创建失败次数', 'SM.PduResSetupFail');
INSERT INTO `kpi_title` VALUES (91, 'SMF', 'SMF.A.06', '{\"cn\":\"PFCP会话修改失败次数\",\"en\":\"SM.PfcpSessMdfyFail\"}', 'PFCP会话修改失败次数', 'SM.PfcpSessMdfyFail');
INSERT INTO `kpi_title` VALUES (92, 'SMF', 'SMF.A.07', '{\"cn\":\"PDU会话拒绝次数\",\"en\":\"SM.PduSessRejt\"}', 'PDU会话拒绝次数', 'SM.PduSessRejt');
INSERT INTO `kpi_title` VALUES (93, 'SMF', 'SMF.A.08', '{\"cn\":\"PDU会话释放指示次数\",\"en\":\"SM.PduSessRelCmd\"}', 'PDU会话释放指示次数', 'SM.PduSessRelCmd');
INSERT INTO `kpi_title` VALUES (94, 'NSSF', 'NSSF.A.02', '{\"cn\":\"可用AMF注册次数\",\"en\":\"NSSF.SuccAvailAMFPut\"}', '可用AMF注册成功次数', 'NSSF.SuccAvailAMFPut');
INSERT INTO `kpi_title` VALUES (95, 'NSSF', 'NSSF.A.03', '{\"cn\":\"可用AMF注册更新成功次数\",\"en\":\"NSSF.AvailAMFPut\"}', '可用AMF注册次数', 'NSSF.AvailAMFPut');
INSERT INTO `kpi_title` VALUES (96, 'NSSF', 'NSSF.A.04', '{\"cn\":\"可用AMF注册更新次数\",\"en\":\"NSSF.SuccAvailAMFPatch\"}', '可用AMF注册更新成功次数', 'NSSF.SuccAvailAMFPatch');
INSERT INTO `kpi_title` VALUES (97, 'NSSF', 'NSSF.A.01', '{\"cn\":\"可用AMF注册成功次数\",\"en\":\"NSSF.AvailAMFPatch\"}', '可用AMF注册更新次数', 'NSSF.AvailAMFPatch');
INSERT INTO `kpi_title` VALUES (98, 'NSSF', 'NSSF.A.05', '{\"cn\":\"可用AMF去注册成功次数\",\"en\":\"NSSF.SuccAvailAMFDelete\"}', '可用AMF去注册成功次数', 'NSSF.SuccAvailAMFDelete');
INSERT INTO `kpi_title` VALUES (99, 'NSSF', 'NSSF.A.06', '{\"cn\":\"可用AMF去注册次数\",\"en\":\"NSSF.AvailAMFDelete\"}', '可用AMF去注册次数', 'NSSF.AvailAMFDelete');
INSERT INTO `kpi_title` VALUES (100, 'NSSF', 'NSSF.A.07', '{\"cn\":\"网元订阅成功次数\",\"en\":\"NSSF.SuccAvailSubscription\"}', '网元订阅成功次数', 'NSSF.SuccAvailSubscription');
INSERT INTO `kpi_title` VALUES (101, 'NSSF', 'NSSF.A.08', '{\"cn\":\"网元订阅次数\",\"en\":\"NSSF.AvailSubscription\"}', '网元订阅次数', 'NSSF.AvailSubscription');
INSERT INTO `kpi_title` VALUES (102, 'NSSF', 'NSSF.A.09', '{\"cn\":\"网元去订阅成功次数\",\"en\":\"NSSF.SuccAvailUnsubscription\"}', '网元去订阅成功次数', 'NSSF.SuccAvailUnsubscription');
INSERT INTO `kpi_title` VALUES (103, 'NSSF', 'NSSF.A.10', '{\"cn\":\"网元去订阅次数\",\"en\":\"NSSF.AvailUnsubscription\"}', '网元去订阅次数', 'NSSF.AvailUnsubscription');
INSERT INTO `kpi_title` VALUES (104, 'NSSF', 'NSSF.A.11', '{\"cn\":\"向NRF注册成功次数\",\"en\":\"NSSF.SuccNRFReg\"}', '向NRF注册成功次数', 'NSSF.SuccNRFReg');
INSERT INTO `kpi_title` VALUES (105, 'NSSF', 'NSSF.A.12', '{\"cn\":\"向NRF注册次数\",\"en\":\"NSSF.NRFReg\"}', '向NRF注册次数', 'NSSF.NRFReg');
INSERT INTO `kpi_title` VALUES (106, 'NSSF', 'NSSF.A.13', '{\"cn\":\"向NRF发送心跳次数\",\"en\":\"NSSF.NRFHeartbeat\"}', '向NRF发送心跳次数', 'NSSF.NRFHeartbeat');
INSERT INTO `kpi_title` VALUES (107, 'NSSF', 'NSSF.A.14', '{\"cn\":\"当前注册AMF个数\",\"en\":\"NSSF.CurrentAMFCount\"}', '当前注册AMF个数', 'NSSF.CurrentAMFCount');
INSERT INTO `kpi_title` VALUES (108, 'NSSF', 'NSSF.A.15', '{\"cn\":\"当前订阅网元个数\",\"en\":\"NSSF.CurrentSubscriperCount\"}', '当前订阅网元个数', 'NSSF.CurrentSubscriperCount');
INSERT INTO `kpi_title` VALUES (109, 'MME', 'MME.A.01', '{\"cn\":\"MME附着请求次数\",\"en\":\"EpsAttachAtt\"}', 'MME附着请求次数', 'EpsAttachAtt');
INSERT INTO `kpi_title` VALUES (110, 'MME', 'MME.A.02', '{\"cn\":\"MME附着成功次数\",\"en\":\"EpsAttachSucc\"}', 'MME附着成功次数', 'EpsAttachSucc');
INSERT INTO `kpi_title` VALUES (111, 'MME', 'MME.A.03', '{\"cn\":\"MME附着失败次数\",\"en\":\"EpsAttachFail\"}', 'MME附着失败次数', 'EpsAttachFail');
INSERT INTO `kpi_title` VALUES (112, 'MME', 'MME.A.04', '{\"cn\":\"MME组合附着请求次数\",\"en\":\"CombAttachAtt\"}', 'MME组合附着请求次数', 'CombAttachAtt');
INSERT INTO `kpi_title` VALUES (113, 'MME', 'MME.A.05', '{\"cn\":\"MME组合附着成功次数\",\"en\":\"CombAttachSucc\"}', 'MME组合附着成功次数', 'CombAttachSucc');
INSERT INTO `kpi_title` VALUES (114, 'MME', 'MME.A.06', '{\"cn\":\"MME组合附着失败次数\",\"en\":\"CombAttachFail\"}', 'MME组合附着失败次数', 'CombAttachFail');
INSERT INTO `kpi_title` VALUES (115, 'MME', 'MME.A.07', '{\"cn\":\"MME紧急附着请求次数\",\"en\":\"EmergAttachAtt\"}', 'MME紧急附着请求次数', 'EmergAttachAtt');
INSERT INTO `kpi_title` VALUES (116, 'MME', 'MME.A.08', '{\"cn\":\"MME紧急附着成功次数\",\"en\":\"EmergAttachSucc\"}', 'MME紧急附着成功次数', 'EmergAttachSucc');
INSERT INTO `kpi_title` VALUES (117, 'MME', 'MME.A.09', '{\"cn\":\"MME紧急附着失败次数\",\"en\":\"EmergAttachFail\"}', 'MME紧急附着失败次数', 'EmergAttachFail');
INSERT INTO `kpi_title` VALUES (118, 'MME', 'MME.A.10', '{\"cn\":\"UE发起的分离请求次数\",\"en\":\"EpsDetachUeAtt\"}', 'UE发起的分离请求次数', 'EpsDetachUeAtt');
INSERT INTO `kpi_title` VALUES (119, 'MME', 'MME.A.11', '{\"cn\":\"UE发起的分离请求成功次数\",\"en\":\"EpsDetachUeSucc\"}', 'UE发起的分离请求成功次数', 'EpsDetachUeSucc');
INSERT INTO `kpi_title` VALUES (120, 'MME', 'MME.A.12', '{\"cn\":\"MME发起的分离请求次数\",\"en\":\"EpsDetachMMEAtt\"}', 'MME发起的分离请求次数', 'EpsDetachMMEAtt');
INSERT INTO `kpi_title` VALUES (121, 'MME', 'MME.A.13', '{\"cn\":\"MME发起的分离请求成功次数\",\"en\":\"EpsDetachMMESucc\"}', 'MME发起的分离请求成功次数', 'EpsDetachMMESucc');
INSERT INTO `kpi_title` VALUES (122, 'MME', 'MME.A.14', '{\"cn\":\"伴随SGW内切换的TAU请求次数\",\"en\":\"TauIntraSgwAtt\"}', '伴随SGW内切换的TAU请求次数', 'TauIntraSgwAtt');
INSERT INTO `kpi_title` VALUES (123, 'MME', 'MME.A.15', '{\"cn\":\"伴随SGW内切换的TAU成功请求次数\",\"en\":\"TauIntraSgwSucc\"}', '伴随SGW内切换的TAU成功请求次数', 'TauIntraSgwSucc');
INSERT INTO `kpi_title` VALUES (124, 'MME', 'MME.A.16', '{\"cn\":\"伴随SGW内切换的TAU失败请求次数\",\"en\":\"TauIntraSgwFail\"}', '伴随SGW内切换的TAU失败请求次数', 'TauIntraSgwFail');
INSERT INTO `kpi_title` VALUES (125, 'MME', 'MME.A.17', '{\"cn\":\"MME寻呼次数\",\"en\":\"PagingEpsAtt\"}', 'MME寻呼次数', 'PagingEpsAtt');
INSERT INTO `kpi_title` VALUES (126, 'MME', 'MME.A.18', '{\"cn\":\"MME寻呼成功次数\",\"en\":\"PagingEpsSucc\"}', 'MME寻呼成功次数', 'PagingEpsSucc');
INSERT INTO `kpi_title` VALUES (127, 'MME', 'MME.A.19', '{\"cn\":\"MME寻呼失败次数\",\"en\":\"PagingEpsFail\"}', 'MME寻呼失败次数', 'PagingEpsFail');
INSERT INTO `kpi_title` VALUES (128, 'MME', 'MME.A.20', '{\"cn\":\"MME隐式分离请求次数\",\"en\":\"EpsImplicitDetach\"}', 'MME隐式分离请求次数', 'EpsImplicitDetach');
INSERT INTO `kpi_title` VALUES (129, 'MME', 'MME.A.21', '{\"cn\":\"MME激活专用承载请求次数\",\"en\":\"ActDedicatedEpsBearerAtt\"}', 'MME激活专用承载请求次数', 'ActDedicatedEpsBearerAtt');
INSERT INTO `kpi_title` VALUES (130, 'MME', 'MME.A.22', '{\"cn\":\"MME激活专用承载请求成功次数\",\"en\":\"ActDedicatedEpsBearerSucc\"}', 'MME激活专用承载请求成功次数', 'ActDedicatedEpsBearerSucc');
INSERT INTO `kpi_title` VALUES (131, 'MME', 'MME.A.23', '{\"cn\":\"MME激活专用承载请求失败次数\",\"en\":\"ActDedicatedEpsBearerFail\"}', 'MME激活专用承载请求失败次数', 'ActDedicatedEpsBearerFail');
INSERT INTO `kpi_title` VALUES (132, 'MME', 'MME.A.24', '{\"cn\":\"MME去激活专用承载请求次数\",\"en\":\"DeactEpsDedicatedBearerAtt\"}', 'MME去激活专用承载请求次数', 'DeactEpsDedicatedBearerAtt');
INSERT INTO `kpi_title` VALUES (133, 'MME', 'MME.A.25', '{\"cn\":\"MME去激活专用承载请求成功次数\",\"en\":\"DeactEpsDedicatedBearerSucc\"}', 'MME去激活专用承载请求成功次数', 'DeactEpsDedicatedBearerSucc');
INSERT INTO `kpi_title` VALUES (134, 'MME', 'MME.A.26', '{\"cn\":\"MME修改专用承载请求次数\",\"en\":\"ModEpsBearerAtt\"}', 'MME修改专用承载请求次数', 'ModEpsBearerAtt');
INSERT INTO `kpi_title` VALUES (135, 'MME', 'MME.A.27', '{\"cn\":\"MME修改专用承载请求成功次数\",\"en\":\"ModEpsBearerSucc\"}', 'MME修改专用承载请求成功次数', 'ModEpsBearerSucc');
INSERT INTO `kpi_title` VALUES (136, 'MME', 'MME.A.28', '{\"cn\":\"MME修改专用承载请求失败次数\",\"en\":\"ModEpsBearerFail\"}', 'MME修改专用承载请求失败次数', 'ModEpsBearerFail');
INSERT INTO `kpi_title` VALUES (137, 'MME', 'MME.A.29', '{\"cn\":\"MME服务请求次数\",\"en\":\"EpsServiceReqAtt\"}', 'MME服务请求次数', 'EpsServiceReqAtt');
INSERT INTO `kpi_title` VALUES (138, 'MME', 'MME.A.30', '{\"cn\":\"MME服务请求成功次数\",\"en\":\"EpsServiceReqSucc\"}', 'MME服务请求成功次数', 'EpsServiceReqSucc');
INSERT INTO `kpi_title` VALUES (139, 'MME', 'MME.A.31', '{\"cn\":\"MME服务请求失败次数\",\"en\":\"EpsServiceReqFail\"}', 'MME服务请求失败次数', 'EpsServiceReqFail');
INSERT INTO `kpi_title` VALUES (140, 'MOCNGW', 'MOCNGW.01', '{\"cn\":\"AttachRequest\",\"en\":\"AttachRequest\"}', 'AttachRequest', 'AttachRequest');
INSERT INTO `kpi_title` VALUES (141, 'MOCNGW', 'MOCNGW.02', '{\"cn\":\"AttachAccept\",\"en\":\"AttachAccept\"}', 'AttachAccept', 'AttachAccept');
INSERT INTO `kpi_title` VALUES (142, 'MOCNGW', 'MOCNGW.03', '{\"cn\":\"AttachComplete\",\"en\":\"AttachComplete\"}', 'AttachComplete', 'AttachComplete');
INSERT INTO `kpi_title` VALUES (143, 'MOCNGW', 'MOCNGW.04', '{\"cn\":\"AttachReject\",\"en\":\"AttachReject\"}', 'AttachReject', 'AttachReject');
INSERT INTO `kpi_title` VALUES (144, 'MOCNGW', 'MOCNGW.05', '{\"cn\":\"DetachRequest\",\"en\":\"DetachRequest\"}', 'DetachRequest', 'DetachRequest');
INSERT INTO `kpi_title` VALUES (145, 'MOCNGW', 'MOCNGW.06', '{\"cn\":\"DetachAccept\",\"en\":\"DetachAccept\"}', 'DetachAccept', 'DetachAccept');
INSERT INTO `kpi_title` VALUES (146, 'MOCNGW', 'MOCNGW.07', '{\"cn\":\"TrackingAreaUpdateRequest\",\"en\":\"TrackingAreaUpdateRequest\"}', 'TrackingAreaUpdateRequest', 'TrackingAreaUpdateRequest');
INSERT INTO `kpi_title` VALUES (147, 'MOCNGW', 'MOCNGW.08', '{\"cn\":\"TrackingAreaUpdateAccept\",\"en\":\"TrackingAreaUpdateAccept\"}', 'TrackingAreaUpdateAccept', 'TrackingAreaUpdateAccept');
INSERT INTO `kpi_title` VALUES (148, 'MOCNGW', 'MOCNGW.09', '{\"cn\":\"TrackingAreaUpdateComplete\",\"en\":\"TrackingAreaUpdateComplete\"}', 'TrackingAreaUpdateComplete', 'TrackingAreaUpdateComplete');
INSERT INTO `kpi_title` VALUES (149, 'MOCNGW', 'MOCNGW.10', '{\"cn\":\"TrackingAreaUpdateReject\",\"en\":\"TrackingAreaUpdateReject\"}', 'TrackingAreaUpdateReject', 'TrackingAreaUpdateReject');
INSERT INTO `kpi_title` VALUES (150, 'MOCNGW', 'MOCNGW.11', '{\"cn\":\"ServiceRequest\",\"en\":\"ServiceRequest\"}', 'ServiceRequest', 'ServiceRequest');
INSERT INTO `kpi_title` VALUES (151, 'MOCNGW', 'MOCNGW.12', '{\"cn\":\"ExtendedServiceRequest\",\"en\":\"ExtendedServiceRequest\"}', 'ExtendedServiceRequest', 'ExtendedServiceRequest');
INSERT INTO `kpi_title` VALUES (152, 'MOCNGW', 'MOCNGW.13', '{\"cn\":\"ControlPlaneServiceRequest\",\"en\":\"ControlPlaneServiceRequest\"}', 'ControlPlaneServiceRequest', 'ControlPlaneServiceRequest');
INSERT INTO `kpi_title` VALUES (153, 'MOCNGW', 'MOCNGW.14', '{\"cn\":\"ServiceReject\",\"en\":\"ServiceReject\"}', 'ServiceReject', 'ServiceReject');
INSERT INTO `kpi_title` VALUES (154, 'MOCNGW', 'MOCNGW.15', '{\"cn\":\"ServiceAccept\",\"en\":\"ServiceAccept\"}', 'ServiceAccept', 'ServiceAccept');
INSERT INTO `kpi_title` VALUES (155, 'MOCNGW', 'MOCNGW.16', '{\"cn\":\"GutiReallocationCommand\",\"en\":\"GutiReallocationCommand\"}', 'GutiReallocationCommand', 'GutiReallocationCommand');
INSERT INTO `kpi_title` VALUES (156, 'MOCNGW', 'MOCNGW.17', '{\"cn\":\"GutiReallocationComplete\",\"en\":\"GutiReallocationComplete\"}', 'GutiReallocationComplete', 'GutiReallocationComplete');
INSERT INTO `kpi_title` VALUES (157, 'MOCNGW', 'MOCNGW.18', '{\"cn\":\"AuthenticationRequest\",\"en\":\"AuthenticationRequest\"}', 'AuthenticationRequest', 'AuthenticationRequest');
INSERT INTO `kpi_title` VALUES (158, 'MOCNGW', 'MOCNGW.19', '{\"cn\":\"AuthenticationResponse\",\"en\":\"AuthenticationResponse\"}', 'AuthenticationResponse', 'AuthenticationResponse');
INSERT INTO `kpi_title` VALUES (159, 'MOCNGW', 'MOCNGW.20', '{\"cn\":\"AuthenticationReject\",\"en\":\"AuthenticationReject\"}', 'AuthenticationReject', 'AuthenticationReject');
INSERT INTO `kpi_title` VALUES (160, 'MOCNGW', 'MOCNGW.21', '{\"cn\":\"AuthenticationFailure\",\"en\":\"AuthenticationFailure\"}', 'AuthenticationFailure', 'AuthenticationFailure');
INSERT INTO `kpi_title` VALUES (161, 'MOCNGW', 'MOCNGW.22', '{\"cn\":\"IdentityRequest\",\"en\":\"IdentityRequest\"}', 'IdentityRequest', 'IdentityRequest');
INSERT INTO `kpi_title` VALUES (162, 'MOCNGW', 'MOCNGW.23', '{\"cn\":\"IdentityResponse\",\"en\":\"IdentityResponse\"}', 'IdentityResponse', 'IdentityResponse');
INSERT INTO `kpi_title` VALUES (163, 'MOCNGW', 'MOCNGW.24', '{\"cn\":\"SecurityModeCommand\",\"en\":\"SecurityModeCommand\"}', 'SecurityModeCommand', 'SecurityModeCommand');
INSERT INTO `kpi_title` VALUES (164, 'MOCNGW', 'MOCNGW.25', '{\"cn\":\"SecurityModeComplete\",\"en\":\"SecurityModeComplete\"}', 'SecurityModeComplete', 'SecurityModeComplete');
INSERT INTO `kpi_title` VALUES (165, 'MOCNGW', 'MOCNGW.26', '{\"cn\":\"SecurityModeReject\",\"en\":\"SecurityModeReject\"}', 'SecurityModeReject', 'SecurityModeReject');
INSERT INTO `kpi_title` VALUES (166, 'MOCNGW', 'MOCNGW.27', '{\"cn\":\"EmmStatus\",\"en\":\"EmmStatus\"}', 'EmmStatus', 'EmmStatus');
INSERT INTO `kpi_title` VALUES (167, 'MOCNGW', 'MOCNGW.28', '{\"cn\":\"EmmInformation\",\"en\":\"EmmInformation\"}', 'EmmInformation', 'EmmInformation');
INSERT INTO `kpi_title` VALUES (168, 'MOCNGW', 'MOCNGW.29', '{\"cn\":\"DownlinkNasTransport\",\"en\":\"DownlinkNasTransport\"}', 'DownlinkNasTransport', 'DownlinkNasTransport');
INSERT INTO `kpi_title` VALUES (169, 'MOCNGW', 'MOCNGW.30', '{\"cn\":\"UplinkNasTransport\",\"en\":\"UplinkNasTransport\"}', 'UplinkNasTransport', 'UplinkNasTransport');
INSERT INTO `kpi_title` VALUES (170, 'MOCNGW', 'MOCNGW.31', '{\"cn\":\"CsServiceNotification\",\"en\":\"CsServiceNotification\"}', 'CsServiceNotification', 'CsServiceNotification');
INSERT INTO `kpi_title` VALUES (171, 'MOCNGW', 'MOCNGW.32', '{\"cn\":\"DownlinkGenericNasTransport\",\"en\":\"DownlinkGenericNasTransport\"}', 'DownlinkGenericNasTransport', 'DownlinkGenericNasTransport');
INSERT INTO `kpi_title` VALUES (172, 'MOCNGW', 'MOCNGW.33', '{\"cn\":\"UplinkGenericNasTransport\",\"en\":\"UplinkGenericNasTransport\"}', 'UplinkGenericNasTransport', 'UplinkGenericNasTransport');
INSERT INTO `kpi_title` VALUES (173, 'IMS', 'SCSCF.01', '{\"cn\": \"LTE接入注册用户数\",\"en\": \"UR.SubsLTE.fromVoLTE\"}', 'LTE接入注册用户数', 'UR.SubsLTE.fromVoLTE');
INSERT INTO `kpi_title` VALUES (174, 'IMS', 'SCSCF.02', '{\"cn\": \"5G接入注册用户数\",\"en\": \"UR.Subs5G.fromVo5G\"}', '5G接入注册用户数', 'UR.Subs5G.fromVo5G');
INSERT INTO `kpi_title` VALUES (175, 'IMS', 'SCSCF.03', '{\"cn\": \"初始注册成功次数\",\"en\": \"UR.SuccInitReg\"}', '初始注册成功次数', 'UR.SuccInitReg');
INSERT INTO `kpi_title` VALUES (176, 'IMS', 'SCSCF.04', '{\"cn\": \"初始注册请求次数\",\"en\": \"UR.AttInitReg\"}', '初始注册请求次数', 'UR.AttInitReg');
INSERT INTO `kpi_title` VALUES (177, 'IMS', 'SCSCF.05', '{\"cn\": \"主叫接通次数\",\"en\": \"SC.SuccSessionOrig\"}', '主叫接通次数', 'SC.SuccSessionOrig');
INSERT INTO `kpi_title` VALUES (178, 'IMS', 'SCSCF.06', '{\"cn\": \"主叫试呼次数\",\"en\": \"SC.AttSessionOrig\"}', '主叫试呼次数', 'SC.AttSessionOrig');
INSERT INTO `kpi_title` VALUES (179, 'IMS', 'SCSCF.07', '{\"cn\": \"被叫接通次数\",\"en\": \"SC.SuccSessionTerm\"}', '被叫接通次数', 'SC.SuccSessionTerm');
INSERT INTO `kpi_title` VALUES (180, 'IMS', 'SCSCF.08', '{\"cn\": \"被叫试呼次数\",\"en\": \"SC.AttSessionTerm\"}', '被叫试呼次数', 'SC.AttSessionTerm');
INSERT INTO `kpi_title` VALUES (181, 'IMS', 'SCSCF.09', '{\"cn\": \"主叫应答次数\",\"en\": \"SC.AnsSessionOrig\"}', '主叫应答次数', 'SC.AnsSessionOrig');
INSERT INTO `kpi_title` VALUES (182, 'IMS', 'SCSCF.10', '{\"cn\": \"主叫早释次数\",\"en\": \"SC.OrigRelBeforeRing\"}', '主叫早释次数', 'SC.OrigRelBeforeRing');
INSERT INTO `kpi_title` VALUES (183, 'IMS', 'SCSCF.11', '{\"cn\": \"主叫振铃早释次数\",\"en\": \"SC.OrigRelAfterRing\"}', '主叫振铃早释次数', 'SC.OrigRelAfterRing');
INSERT INTO `kpi_title` VALUES (184, 'IMS', 'SCSCF.12', '{\"cn\": \"主叫403请求禁止次数\",\"en\": \"SC.FailSessionOrig.403\"}', '主叫403请求禁止次数', 'SC.FailSessionOrig.403');
INSERT INTO `kpi_title` VALUES (185, 'IMS', 'SCSCF.13', '{\"cn\": \"主叫404未找到次数\",\"en\": \"SC.FailSessionOrig.404\"}', '主叫404未找到次数', 'SC.FailSessionOrig.404');
INSERT INTO `kpi_title` VALUES (186, 'IMS', 'SCSCF.14', '{\"cn\": \"主叫408请求超时次数\",\"en\": \"SC.FailSessionOrig.408\"}', '主叫408请求超时次数', 'SC.FailSessionOrig.408');
INSERT INTO `kpi_title` VALUES (187, 'IMS', 'SCSCF.15', '{\"cn\": \"主叫480久叫不应次\",\"en\": \"SC.FailSessionOrig.480\"}', '主叫480久叫不应次', 'SC.FailSessionOrig.480');
INSERT INTO `kpi_title` VALUES (188, 'IMS', 'SCSCF.16', '{\"cn\": \"主叫484Request-URI不完整次\",\"en\": \"SC.FailSessionOrig.484\"}', '主叫484Request-URI不完整次', 'SC.FailSessionOrig.484');
INSERT INTO `kpi_title` VALUES (189, 'IMS', 'SCSCF.17', '{\"cn\": \"主叫486用户忙次数\",\"en\": \"SC.FailSessionOrig.486\"}', '主叫486用户忙次数', 'SC.FailSessionOrig.486');
INSERT INTO `kpi_title` VALUES (190, 'IMS', 'SCSCF.18', '{\"cn\": \"主叫487请求终止次数\",\"en\": \"SC.FailSessionOrig.487\"}', '主叫487请求终止次数', 'SC.FailSessionOrig.487');
INSERT INTO `kpi_title` VALUES (191, 'IMS', 'SCSCF.19', '{\"cn\": \"主叫600用户忙次数\",\"en\": \"SC.FailSessionOrig.600\"}', '主叫600用户忙次数', 'SC.FailSessionOrig.600');
INSERT INTO `kpi_title` VALUES (192, 'IMS', 'SCSCF.20', '{\"cn\": \"主叫603用户拒接次数\",\"en\": \"SC.FailSessionOrig.603\"}', '主叫603用户拒接次数', 'SC.FailSessionOrig.603');
INSERT INTO `kpi_title` VALUES (193, 'IMS', 'SCSCF.21', '{\"cn\": \"主叫604用户信息不存在次数\",\"en\": \"SC.FailSessionOrig.604\"}', '主叫604用户信息不存在次数', 'SC.FailSessionOrig.604');
INSERT INTO `kpi_title` VALUES (194, 'IMS', 'SCSCF.22', '{\"cn\": \"被叫应答次数\",\"en\": \"SC.AnsSessionTerm\"}', '被叫应答次数', 'SC.AnsSessionTerm');
INSERT INTO `kpi_title` VALUES (195, 'IMS', 'SCSCF.23', '{\"cn\": \"被叫早释次\",\"en\": \"SC.TermiRelBeforeRing\"}', '被叫早释次', 'SC.TermiRelBeforeRing');
INSERT INTO `kpi_title` VALUES (196, 'IMS', 'SCSCF.24', '{\"cn\": \"被叫振铃早释次数\",\"en\": \"SC.TermiRelAfterRing\"}', '被叫振铃早释次数', 'SC.TermiRelAfterRing');
INSERT INTO `kpi_title` VALUES (197, 'IMS', 'SCSCF.25', '{\"cn\": \"被叫403请求禁止次数\",\"en\": \"SC.FailSessionTerm.403\"}', '被叫403请求禁止次数', 'SC.FailSessionTerm.403');
INSERT INTO `kpi_title` VALUES (198, 'IMS', 'SCSCF.26', '{\"cn\": \"被叫404未找到次数\",\"en\": \"SC.FailSessionTerm.404\"}', '被叫404未找到次数', 'SC.FailSessionTerm.404');
INSERT INTO `kpi_title` VALUES (199, 'IMS', 'SCSCF.27', '{\"cn\": \"被叫408请求超时次数\",\"en\": \"SC.FailSessionTerm.408\"}', '被叫408请求超时次数', 'SC.FailSessionTerm.408');
INSERT INTO `kpi_title` VALUES (200, 'IMS', 'SCSCF.28', '{\"cn\": \"被叫480久叫不应次数\",\"en\": \"SC.FailSessionTerm.480\"}', '被叫480久叫不应次数', 'SC.FailSessionTerm.480');
INSERT INTO `kpi_title` VALUES (201, 'IMS', 'SCSCF.29', '{\"cn\": \"被叫484Request-URI不完整次数\",\"en\": \"SC.FailSessionTerm.484\"}', '被叫484Request-URI不完整次数', 'SC.FailSessionTerm.484');
INSERT INTO `kpi_title` VALUES (202, 'IMS', 'SCSCF.30', '{\"cn\": \"被叫486用户忙次数\",\"en\": \"SC.FailSessionTerm.486\"}', '被叫486用户忙次数', 'SC.FailSessionTerm.486');
INSERT INTO `kpi_title` VALUES (203, 'IMS', 'SCSCF.31', '{\"cn\": \"被叫487请求终止次数\",\"en\": \"SC.FailSessionTerm.487\"}', '被叫487请求终止次数', 'SC.FailSessionTerm.487');
INSERT INTO `kpi_title` VALUES (204, 'IMS', 'SCSCF.32', '{\"cn\": \"被叫600用户忙次数\",\"en\": \"SC.FailSessionTerm.600\"}', '被叫600用户忙次数', 'SC.FailSessionTerm.600');
INSERT INTO `kpi_title` VALUES (205, 'IMS', 'SCSCF.33', '{\"cn\": \"被叫603用户拒接次数\",\"en\": \"SC.FailSessionTerm.603\"}', '被叫603用户拒接次数', 'SC.FailSessionTerm.603');
INSERT INTO `kpi_title` VALUES (206, 'IMS', 'SCSCF.34', '{\"cn\": \"被叫604用户信息不存在次数\",\"en\": \"SC.FailSessionTerm.604\"}', '被叫604用户信息不存在次数', 'SC.FailSessionTerm.604');
INSERT INTO `kpi_title` VALUES (207, 'PCF', 'PCF.01', '{\"cn\": \"在线N7会话数\", \"en\": \"PCF.SmAssocNbrMean\"}', '在线N7会话数', 'PCF.SmAssocNbrMean');
INSERT INTO `kpi_title` VALUES (208, 'PCF', 'PCF.02', '{\"cn\": \"SM策略关联建立成功次数\", \"en\": \"PCF.PolicySmAssocCreateSucc\"}', 'SM策略关联建立成功次数', 'PCF.PolicySmAssocCreateSucc');
INSERT INTO `kpi_title` VALUES (209, 'PCF', 'PCF.03', '{\"cn\": \"SM策略关联建立请求次数\", \"en\": \"PCF.PolicySmAssocCreateReq\"}', 'SM策略关联建立请求次数', 'PCF.PolicySmAssocCreateReq');
INSERT INTO `kpi_title` VALUES (210, 'PCF', 'PCF.04', '{\"cn\": \"SM策略关联更新成功次数\", \"en\": \"PCF.PolicySmAssocUpdateSucc\"}', 'SM策略关联更新成功次数', 'PCF.PolicySmAssocUpdateSucc');
INSERT INTO `kpi_title` VALUES (211, 'PCF', 'PCF.05', '{\"cn\": \"SM策略关联更新请求次数\", \"en\": \"PCF.PolicySmAssocUpdateReq\"}', 'SM策略关联更新请求次数', 'PCF.PolicySmAssocUpdateReq');
INSERT INTO `kpi_title` VALUES (212, 'PCF', 'PCF.06', '{\"cn\": \"在线Gx会话数\", \"en\": \"SM.SessionNbrMean\"}', '在线Gx会话数', 'SM.SessionNbrMean');
INSERT INTO `kpi_title` VALUES (213, 'PCF', 'PCF.07', '{\"cn\": \"在线Rx会话数\", \"en\": \"SM.RxSessionMean\"}', '在线Rx会话数', 'SM.RxSessionMean');
INSERT INTO `kpi_title` VALUES (214, 'PCF', 'PCF.08', '{\"cn\": \"PCRF策略控制发起成功次数\", \"en\": \"DIAM.CcInitialSuccess\"}', 'PCRF策略控制发起成功次数', 'DIAM.CcInitialSuccess');
INSERT INTO `kpi_title` VALUES (215, 'PCF', 'PCF.09', '{\"cn\": \"PCRF策略控制发起请求次数\", \"en\": \"DIAM.CcInitialRequest\"}', 'PCRF策略控制发起请求次数', 'DIAM.CcInitialRequest');
INSERT INTO `kpi_title` VALUES (216, 'PCF', 'PCF.10', '{\"cn\": \"应用会话授权成功次数\", \"en\": \"DIAM.AuthSucc\"}', '应用会话授权成功次数', 'DIAM.AuthSucc');
INSERT INTO `kpi_title` VALUES (217, 'PCF', 'PCF.11', '{\"cn\": \"应用会话授权尝试次数\", \"en\": \"DIAM.AuthRequest\"}', '应用会话授权尝试次数', 'DIAM.AuthRequest');
INSERT INTO `kpi_title` VALUES (218, 'PCF', 'PCF.12', '{\"cn\": \"PCRF策略控制更新成功次数\", \"en\": \"DIAM.CcUpdateSuccess\"}', 'PCRF策略控制更新成功次数', 'DIAM.CcUpdateSuccess');
INSERT INTO `kpi_title` VALUES (219, 'PCF', 'PCF.13', '{\"cn\": \"PCRF策略控制更新请求次数\", \"en\": \"DIAM.CcUpdateRequest\"}', 'PCRF策略控制更新请求次数', 'DIAM.CcUpdateRequest');
-- 更新SMSC 20240815
INSERT INTO `kpi_title` VALUES (220, 'SMSC', 'SMSC.A.01', '{\"cn\": \"MS到SMSC短信请求次数\", \"en\": \"SMSC.MStoSMSCAtt\"}', 'MS到SMSC短信请求次数', 'SMSC.MStoSMSCAtt');
INSERT INTO `kpi_title` VALUES (221, 'SMSC', 'SMSC.A.02', '{\"cn\": \"MS到SMSC短信成功次数\", \"en\": \"SMSC.MStoSMSCSucc\"}', 'MS到SMSC短信成功次数', 'SMSC.MStoSMSCSucc');
INSERT INTO `kpi_title` VALUES (222, 'SMSC', 'SMSC.A.03', '{\"cn\": \"MS到SMSC短信失败次数\", \"en\": \"SMSC.MStoSMSCFail\"}', 'MS到SMSC短信失败次', 'SMSC.MStoSMSCFail');
INSERT INTO `kpi_title` VALUES (223, 'SMSC', 'SMSC.A.04', '{\"cn\": \"MS到SMSC短信字节数\", \"en\": \"SMSC.MStoSMSCBytes\"}', 'MS到SMSC短信字节', 'SMSC.MStoSMSCBytes');
INSERT INTO `kpi_title` VALUES (224, 'SMSC', 'SMSC.A.05', '{\"cn\": \"VSS到SMSC短信请求次数\", \"en\": \"SMSC.VSStoSMSCAtt\"}', 'VSS到SMSC短信请求次数', 'SMSC.VSStoSMSCAtt');
INSERT INTO `kpi_title` VALUES (225, 'SMSC', 'SMSC.A.06', '{\"cn\": \"VSS到SMSC短信成功次数\", \"en\": \"SMSC.VSStoSMSCSucc\"}', 'VSS到SMSC短信成功次数', 'SMSC.VSStoSMSCSucc');
INSERT INTO `kpi_title` VALUES (226, 'SMSC', 'SMSC.A.07', '{\"cn\": \"VSS到SMSC短信失败次数\", \"en\": \"SMSC.VSStoSMSCFail\"}', 'VSS到SMSC短信失败次', 'SMSC.VSStoSMSCFail');
INSERT INTO `kpi_title` VALUES (227, 'SMSC', 'SMSC.A.08', '{\"cn\": \"VSS到SMSC短信字节数\", \"en\": \"SMSC.VSStoSMSCBytes\"}', 'VSS到SMSC短信字节', 'SMSC.VSStoSMSCBytes');
INSERT INTO `kpi_title` VALUES (228, 'SMSC', 'SMSC.A.09', '{\"cn\": \"PPS到SMSC短信请求次数\", \"en\": \"SMSC.PPStoSMSCAtt\"}', 'PPS到SMSC短信请求次数', 'SMSC.PPStoSMSCAtt');
INSERT INTO `kpi_title` VALUES (229, 'SMSC', 'SMSC.A.10', '{\"cn\": \"PPS到SMSC短信成功次数\", \"en\": \"SMSC.PPStoSMSCSucc\"}', 'PPS到SMSC短信成功次数', 'SMSC.PPStoSMSCSucc');
INSERT INTO `kpi_title` VALUES (230, 'SMSC', 'SMSC.A.11', '{\"cn\": \"PPS到SMSC短信失败次数\", \"en\": \"SMSC.PPStoSMSCFail\"}', 'PPS到SMSC短信失败次', 'SMSC.PPStoSMSCFail');
INSERT INTO `kpi_title` VALUES (231, 'SMSC', 'SMSC.A.12', '{\"cn\": \"PPS到SMSC短信字节数\", \"en\": \"SMSC.PPStoSMSCBytes\"}', 'PPS到SMSC短信字节', 'SMSC.PPStoSMSCBytes');
INSERT INTO `kpi_title` VALUES (232, 'SMSC', 'SMSC.A.13', '{\"cn\": \"SMPP到SMSC短信请求次数\", \"en\": \"SMSC.SMPPtoSMSCAtt\"}', 'SMPP到SMSC短信请求次数', 'SMSC.SMPPtoSMSCAtt');
INSERT INTO `kpi_title` VALUES (233, 'SMSC', 'SMSC.A.14', '{\"cn\": \"SMPP到SMSC短信成功次数\", \"en\": \"SMSC.SMPPtoSMSCSucc\"}', 'SMPP到SMSC短信成功次数', 'SMSC.SMPPtoSMSCSucc');
INSERT INTO `kpi_title` VALUES (234, 'SMSC', 'SMSC.A.15', '{\"cn\": \"SMPP到SMSC短信失败次数\", \"en\": \"SMSC.SMPPtoSMSCFail\"}', 'SMPP到SMSC短信失败次', 'SMSC.SMPPtoSMSCFail');
INSERT INTO `kpi_title` VALUES (235, 'SMSC', 'SMSC.A.16', '{\"cn\": \"SMPP到SMSC短信字节数\", \"en\": \"SMSC.SMPPtoSMSCBytes\"}', 'SMPP到SMSC短信字节', 'SMSC.SMPPtoSMSCBytes');
INSERT INTO `kpi_title` VALUES (236, 'SMSC', 'SMSC.A.17', '{\"cn\": \"SMSC到MS短信请求次数\", \"en\": \"SMSC.SMSCtoMSAtt\"}', 'SMSC到MS短信请求次数', 'SMSC.SMSCtoMSAtt');
INSERT INTO `kpi_title` VALUES (237, 'SMSC', 'SMSC.A.18', '{\"cn\": \"SMSC到MS短信成功次数\", \"en\": \"SMSC.SMSCtoMSSucc\"}', 'SMSC到MS短信成功次数', 'SMSC.SMSCtoMSSucc');
INSERT INTO `kpi_title` VALUES (238, 'SMSC', 'SMSC.A.19', '{\"cn\": \"SMSC到MS短信失败次数\", \"en\": \"SMSC.SMSCtoMSFail\"}', 'SMSC到MS短信失败次', 'SMSC.SMSCtoMSFail');
INSERT INTO `kpi_title` VALUES (239, 'SMSC', 'SMSC.A.20', '{\"cn\": \"SMSC到MS短信字节数\", \"en\": \"SMSC.SMSCtoMSBytes\"}', 'SMSC到MS短信字节', 'SMSC.SMSCtoMSBytes');
INSERT INTO `kpi_title` VALUES (240, 'SMSC', 'SMSC.A.21', '{\"cn\": \"SMSC到VSS短信请求次数\", \"en\": \"SMSC.SMSCtoVSSAtt\"}', 'SMSC到VSS短信请求次数', 'SMSC.SMSCtoVSSAtt');
INSERT INTO `kpi_title` VALUES (241, 'SMSC', 'SMSC.A.22', '{\"cn\": \"SMSC到VSS短信成功次数\", \"en\": \"SMSC.SMSCtoVSSucc\"}', 'SMSC到VSS短信成功次数', 'SMSC.SMSCtoVSSucc');
INSERT INTO `kpi_title` VALUES (242, 'SMSC', 'SMSC.A.23', '{\"cn\": \"SMSC到VSS短信失败次数\", \"en\": \"SMSC.SMSCtoVSSFail\"}', 'SMSC到VSS短信失败次', 'SMSC.SMSCtoVSSFail');
INSERT INTO `kpi_title` VALUES (243, 'SMSC', 'SMSC.A.24', '{\"cn\": \"SMSC到VSS短信字节数\", \"en\": \"SMSC.SMSCtoVSSBytes\"}', 'SMSC到VSS短信字节', 'SMSC.SMSCtoVSSBytes');
INSERT INTO `kpi_title` VALUES (244, 'SMSC', 'SMSC.A.25', '{\"cn\": \"SMSC到PPS短信请求次数\", \"en\": \"SMSC.SMSCtoPPSAtt\"}', 'SMSC到PPS短信请求次数', 'SMSC.SMSCtoPPSAtt');
INSERT INTO `kpi_title` VALUES (245, 'SMSC', 'SMSC.A.26', '{\"cn\": \"SMSC到PPS短信成功次数\", \"en\": \"SMSC.SMSCtoPPSucc\"}', 'SMSC到PPS短信成功次数', 'SMSC.SMSCtoPPSucc');
INSERT INTO `kpi_title` VALUES (246, 'SMSC', 'SMSC.A.27', '{\"cn\": \"SMSC到PPS短信失败次数\", \"en\": \"SMSC.SMSCtoPPSFail\"}', 'SMSC到PPS短信失败次', 'SMSC.SMSCtoPPSFail');
INSERT INTO `kpi_title` VALUES (247, 'SMSC', 'SMSC.A.28', '{\"cn\": \"SMSC到PPS短信字节数\", \"en\": \"SMSC.SMSCtoPPSBytes\"}', 'SMSC到PPS短信字节', 'SMSC.SMSCtoPPSBytes');
INSERT INTO `kpi_title` VALUES (248, 'SMSC', 'SMSC.A.29', '{\"cn\": \"SMSC到SMPP短信请求次数\", \"en\": \"SMSC.SMSCtoSMPPAtt\"}', 'SMSC到SMPP短信请求次数', 'SMSC.SMSCtoSMPPAtt');
INSERT INTO `kpi_title` VALUES (249, 'SMSC', 'SMSC.A.30', '{\"cn\": \"SMSC到SMPP短信成功次数\", \"en\": \"SMSC.SMSCtoSMPPucc\"}', 'SMSC到SMPP短信成功次数', 'SMSC.SMSCtoSMPPucc');
INSERT INTO `kpi_title` VALUES (250, 'SMSC', 'SMSC.A.31', '{\"cn\": \"SMSC到SMPP短信失败次数\", \"en\": \"SMSC.SMSCtoSMPPFail\"}', 'SMSC到SMPP短信失败次', 'SMSC.SMSCtoSMPPFail');
INSERT INTO `kpi_title` VALUES (251, 'SMSC', 'SMSC.A.32', '{\"cn\": \"SMSC到SMPP短信字节数\", \"en\": \"SMSC.SMSCtoSMPPBytes\"}', 'SMSC到SMPP短信字节数', 'SMSC.SMSCtoSMPPBytes');
-- 更新CBC 20240823
INSERT INTO `kpi_title` VALUES (252, 'CBC', 'CBC.A.01', '{\"cn\": \"CBC 发起 Create Write 消息成功\", \"en\": \"WarningReqSucc\"}', 'CBC 发起 Create Write 消息成功', 'WarningReqSucc');
INSERT INTO `kpi_title` VALUES (253, 'CBC', 'CBC.A.02', '{\"cn\": \"CBC 发起 Create Write 消息失败\", \"en\": \"WarningReqFail\"}', 'CBC 发起 Create Write 消息失败', 'WarningReqFail');
INSERT INTO `kpi_title` VALUES (254, 'CBC', 'CBC.A.03', '{\"cn\": \"CBC 发起 Cancel Write 消息成功\", \"en\": \"WarningCancelSucc\"}', 'CBC 发起 Cancel Write 消息成功', 'WarningCancelSucc');
INSERT INTO `kpi_title` VALUES (255, 'CBC', 'CBC.A.04', '{\"cn\": \"CBC 发起 Cancel Write 消息失败\", \"en\": \"WarningCancelFail\"}', 'CBC 发起 Cancel Write 消息失败', 'WarningCancelFail');
-- 更新HLR 20241213
INSERT INTO `kpi_title` VALUES (256, 'HLR', 'HLR.A.001', NULL, '鉴权信息请求次数', 'AuthReqTotalNum');
INSERT INTO `kpi_title` VALUES (257, 'HLR', 'HLR.A.002', NULL, '鉴权信息请求成功次数', 'AuthSuccTotalNum');
INSERT INTO `kpi_title` VALUES (258, 'HLR', 'HLR.A.003', NULL, '鉴权请求失败:缺参数', 'AuthFailByMissPara');
INSERT INTO `kpi_title` VALUES (259, 'HLR', 'HLR.A.004', NULL, '鉴权请求失败:系统错误', 'AuthFailBySysFail');
INSERT INTO `kpi_title` VALUES (260, 'HLR', 'HLR.A.005', NULL, '鉴权请求失败:非期望的参数值', 'AuthFailByUnexptData');
INSERT INTO `kpi_title` VALUES (261, 'HLR', 'HLR.A.006', NULL, '鉴权请求失败:未知用户', 'AuthFailByUnknownUser');
INSERT INTO `kpi_title` VALUES (262, 'HLR', 'HLR.A.007', NULL, '鉴权失败报告次数', 'AuthFailReportTotalNum');
INSERT INTO `kpi_title` VALUES (263, 'HLR', 'HLR.A.008', NULL, '鉴权失败报告(错误的网络签名)次数', 'AuthFailReportByErrNetSign');
INSERT INTO `kpi_title` VALUES (264, 'HLR', 'HLR.A.009', NULL, '鉴权失败报告(错误的用户响应)次数', 'AuthFailReportByErrUserRsp');
INSERT INTO `kpi_title` VALUES (265, 'HLR', 'HLR.A.010', NULL, '登记请求次数', 'LuReqTotalNum');
INSERT INTO `kpi_title` VALUES (266, 'HLR', 'HLR.A.011', NULL, '登记成功次', 'LuSuccTotalNum');
INSERT INTO `kpi_title` VALUES (267, 'HLR', 'HLR.A.012', NULL, '登记失败:复制手机', 'LuFailByDuplicUnit');
INSERT INTO `kpi_title` VALUES (268, 'HLR', 'HLR.A.013', NULL, '登记失败:无效ESN', 'LuFailByInvalidESN');
INSERT INTO `kpi_title` VALUES (269, 'HLR', 'HLR.A.014', NULL, '登记失败:缺鉴权参数', 'LuFailByMissAuthPara');
INSERT INTO `kpi_title` VALUES (270, 'HLR', 'HLR.A.015', NULL, '登记失败:在这个MSC中不能使用', 'LuFailByMscNotAllow');
INSERT INTO `kpi_title` VALUES (271, 'HLR', 'HLR.A.016', NULL, '登记失败:终端类型不匹配', 'LuFailByUeTypeMismatch');
INSERT INTO `kpi_title` VALUES (272, 'HLR', 'HLR.A.017', NULL, '登记失败:未分配号码的手机', 'LuFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (273, 'HLR', 'HLR.A.018', NULL, '登记失败:不确定', 'LuFailByUnKnown');
INSERT INTO `kpi_title` VALUES (274, 'HLR', 'HLR.A.019', NULL, '注销登记次', 'CancelLuReqTotalNum');
INSERT INTO `kpi_title` VALUES (275, 'HLR', 'HLR.A.020', NULL, '注销登记成功次数', 'CancelLuSuccTotalNum');
INSERT INTO `kpi_title` VALUES (276, 'HLR', 'HLR.A.021', NULL, '注销失败:系统错误', 'CancelLuFailBySysFail');
INSERT INTO `kpi_title` VALUES (277, 'HLR', 'HLR.A.022', NULL, '注销失败:缺参数', 'CancelLuFailByMissPara');
INSERT INTO `kpi_title` VALUES (278, 'HLR', 'HLR.A.023', NULL, '移动台去活次数', 'MsPurgeReqTotalNum');
INSERT INTO `kpi_title` VALUES (279, 'HLR', 'HLR.A.024', NULL, '移动台去活成功次数', 'MsPurgeSuccTotalNum');
INSERT INTO `kpi_title` VALUES (280, 'HLR', 'HLR.A.025', NULL, '移动台去活:系统错误', 'MsPurgeFailBySysFail');
INSERT INTO `kpi_title` VALUES (281, 'HLR', 'HLR.A.026', NULL, '移动台去活:非期望的参数值', 'MsPurgeFailByUnexptPara');
INSERT INTO `kpi_title` VALUES (282, 'HLR', 'HLR.A.027', NULL, '移动台去活:未知用户', 'MsPurgeFailByUnknownUser');
INSERT INTO `kpi_title` VALUES (283, 'HLR', 'HLR.A.028', NULL, 'GPRS登记请求次数', 'GprsLuReqTotalNum');
INSERT INTO `kpi_title` VALUES (284, 'HLR', 'HLR.A.029', NULL, 'GPRS登记请求成功次数', 'GprsLuSuccTotalNum');
INSERT INTO `kpi_title` VALUES (285, 'HLR', 'HLR.A.030', NULL, 'GPRS去登记次数', 'GprsPurgeReqTotalNum');
INSERT INTO `kpi_title` VALUES (286, 'HLR', 'HLR.A.031', NULL, 'GPRS去登记成功次数', 'GprsPurgeSuccTotalNum');
INSERT INTO `kpi_title` VALUES (287, 'HLR', 'HLR.A.032', NULL, 'GPRS注销登记次数', 'GprsCancelLuReqTotalNum');
INSERT INTO `kpi_title` VALUES (288, 'HLR', 'HLR.A.033', NULL, 'GPRS注销登记成功次数', 'GprsCancelLuSuccTotalNum');
INSERT INTO `kpi_title` VALUES (289, 'HLR', 'HLR.A.034', NULL, 'GPRS路由请求次', 'GprsRoutInfoReqTotalNum');
INSERT INTO `kpi_title` VALUES (290, 'HLR', 'HLR.A.035', NULL, 'GPRS用户激活失败报告次数', 'GprsActiveFailReportTotalNum');
INSERT INTO `kpi_title` VALUES (291, 'HLR', 'HLR.A.036', NULL, 'GPRS用户激活失败报告成功次数', 'GprsActiveFailReportSuccTotalNum');
INSERT INTO `kpi_title` VALUES (292, 'HLR', 'HLR.A.037', NULL, 'GPRS用户激活失败报告失败缺参数', 'GprsActiveFailReportFailByMissPara');
INSERT INTO `kpi_title` VALUES (293, 'HLR', 'HLR.A.038', NULL, 'GPRS用户激活失败报告失败系统错误', 'GprsActiveFailReportFailBySysFail');
INSERT INTO `kpi_title` VALUES (294, 'HLR', 'HLR.A.039', NULL, 'GPRS用户激活失败报告失败非期望的参数值', 'GprsActiveFailReportFailByUnexptPara');
INSERT INTO `kpi_title` VALUES (295, 'HLR', 'HLR.A.040', NULL, 'GPRS用户激活失败报告失败未知用户', 'GprsActiveFailReportFailByUnKnownUser');
INSERT INTO `kpi_title` VALUES (296, 'HLR', 'HLR.A.041', NULL, '发起CFU业务登记且激活次数', 'CfuActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (297, 'HLR', 'HLR.A.042', NULL, 'CFU业务登记且激活成功次数', 'CfuActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (298, 'HLR', 'HLR.A.043', NULL, 'CFU登记失败MS忙', 'CfuRegFailByMsBusy');
INSERT INTO `kpi_title` VALUES (299, 'HLR', 'HLR.A.044', NULL, 'CFU登记失败不允许将呼叫终接到MS', 'CfuRegFailByMsDenied');
INSERT INTO `kpi_title` VALUES (300, 'HLR', 'HLR.A.045', NULL, 'CFU登记失败MS去登记状态', 'CfuRegFailByMsErase');
INSERT INTO `kpi_title` VALUES (301, 'HLR', 'HLR.A.046', NULL, 'CFU登记失败无寻呼响应', 'CfuRegFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (302, 'HLR', 'HLR.A.047', NULL, 'CFU登记失败:系统错误', 'CfuRegFailBySysFail');
INSERT INTO `kpi_title` VALUES (303, 'HLR', 'HLR.A.048', NULL, 'CFU登记失败:未分配电话号码', 'CfuRegFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (304, 'HLR', 'HLR.A.049', NULL, 'CFU登记失败:不可用', 'CfuRegFailByUnavailable');
INSERT INTO `kpi_title` VALUES (305, 'HLR', 'HLR.A.050', NULL, '发起CFU业务去活次数', 'CfuDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (306, 'HLR', 'HLR.A.051', NULL, 'CFU业务去活成功次数', 'CfuDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (307, 'HLR', 'HLR.A.052', NULL, 'CFU去活失败MS', 'CfuDeActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (308, 'HLR', 'HLR.A.053', NULL, 'CFU去活失败不允许将呼叫终接到MS', 'CfuDeActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (309, 'HLR', 'HLR.A.054', NULL, 'CFU去活失败未分配电话号码', 'CfuDeActvFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (310, 'HLR', 'HLR.A.055', NULL, 'CFU去活失败MS去登记状态', 'CfuDeActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (311, 'HLR', 'HLR.A.056', NULL, 'CFU去活失败无寻呼响应', 'CfuDeActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (312, 'HLR', 'HLR.A.057', NULL, 'CFU去活失败系统错误', 'CfuDeActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (313, 'HLR', 'HLR.A.058', NULL, 'CFU去活失败不可用', 'CfuDeActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (314, 'HLR', 'HLR.A.059', NULL, '发起CFB业务登记且激活次数', 'CfbActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (315, 'HLR', 'HLR.A.060', NULL, 'CFB业务登记且激活成功次数', 'CfbActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (316, 'HLR', 'HLR.A.061', NULL, 'CFB登记失败MS忙', 'CfbRegFailByMsBusy');
INSERT INTO `kpi_title` VALUES (317, 'HLR', 'HLR.A.062', NULL, 'CFB登记失败不允许将呼叫终接到MS', 'CfbRegFailByMsDenied');
INSERT INTO `kpi_title` VALUES (318, 'HLR', 'HLR.A.063', NULL, 'CFB登记失败MS去登记状态', 'CfbRegFailByMsErase');
INSERT INTO `kpi_title` VALUES (319, 'HLR', 'HLR.A.064', NULL, 'CFB登记失败无寻呼响应', 'CfbRegFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (320, 'HLR', 'HLR.A.065', NULL, 'CFB登记失败:系统错误', 'CfbRegFailBySysFail');
INSERT INTO `kpi_title` VALUES (321, 'HLR', 'HLR.A.066', NULL, 'CFB登记失败:未分配电话号码', 'CfbRegFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (322, 'HLR', 'HLR.A.067', NULL, 'CFB登记失败:不可用', 'CfbRegFailByUnavailable');
INSERT INTO `kpi_title` VALUES (323, 'HLR', 'HLR.A.068', NULL, '发起CFB业务去活次数', 'CfbDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (324, 'HLR', 'HLR.A.069', NULL, 'CFB业务去活成功次数', 'CfbDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (325, 'HLR', 'HLR.A.070', NULL, 'CFB去活失败MS忙', 'CfbDeActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (326, 'HLR', 'HLR.A.071', NULL, 'CFB去活失败不允许将呼叫终接到MS', 'CfbDeActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (327, 'HLR', 'HLR.A.072', NULL, 'CFB去活失败MS去登记状态', 'CfbDeActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (328, 'HLR', 'HLR.A.073', NULL, 'CFB去活失败无寻呼响应', 'CfbDeActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (329, 'HLR', 'HLR.A.074', NULL, 'CFB去活失败系统错误', 'CfbDeActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (330, 'HLR', 'HLR.A.075', NULL, 'CFB去活失败未分配电话号码', 'CfbDeActvFailByUnAssignMsisdn ');
INSERT INTO `kpi_title` VALUES (331, 'HLR', 'HLR.A.076', NULL, 'CFB去活失败不可用', 'CfbDeActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (332, 'HLR', 'HLR.A.077', NULL, '发起CFNRy业务登记且激活次数', 'CfnryActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (333, 'HLR', 'HLR.A.078', NULL, 'CFNRy业务登记且激活成功次数', 'CfnryActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (334, 'HLR', 'HLR.A.079', NULL, 'CFNRy登记失败MS忙', 'CfnryRegFailByMsBusy');
INSERT INTO `kpi_title` VALUES (335, 'HLR', 'HLR.A.080', NULL, 'CFNRy登记失败不允许将呼叫终接到MS', 'CfnryRegFailByMsDenied');
INSERT INTO `kpi_title` VALUES (336, 'HLR', 'HLR.A.081', NULL, 'CFNRy登记失败MS去登记状态', 'CfnryRegFailByMsErase');
INSERT INTO `kpi_title` VALUES (337, 'HLR', 'HLR.A.082', NULL, 'CFNRy登记失败无寻呼响应', 'CfnryRegFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (338, 'HLR', 'HLR.A.083', NULL, 'CFNRy登记失败:系统错误', 'CfnryRegFailBySysFail');
INSERT INTO `kpi_title` VALUES (339, 'HLR', 'HLR.A.084', NULL, 'CFNRy登记失败:未分配电话号码', 'CfnryRegFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (340, 'HLR', 'HLR.A.085', NULL, 'CFNRy登记失败:不可用', 'CfnryRegFailByUnavailable');
INSERT INTO `kpi_title` VALUES (341, 'HLR', 'HLR.A.086', NULL, '发起CFNRy业务去活次数', 'CfnryDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (342, 'HLR', 'HLR.A.087', NULL, 'CFNRy业务去活成功次数', 'CfnryDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (343, 'HLR', 'HLR.A.088', NULL, 'CFNRy去活失败MS忙', 'CfnryDeActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (344, 'HLR', 'HLR.A.089', NULL, 'CFNRy去活失败不允许将呼叫终接到MS', 'CfnryDeActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (345, 'HLR', 'HLR.A.090', NULL, 'CFNRy去活失败MS去登记状态', 'CfnryDeActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (346, 'HLR', 'HLR.A.091', NULL, 'CFNRy去活失败无寻呼响应', 'CfnryDeActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (347, 'HLR', 'HLR.A.092', NULL, 'CFNRy去活失败系统错误', 'CfnryDeActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (348, 'HLR', 'HLR.A.093', NULL, 'CFNRy去活失败未分配电话号码', 'CfnryDeActvFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (349, 'HLR', 'HLR.A.094', NULL, 'CFNRy去活失败不可用', 'CfnryDeActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (350, 'HLR', 'HLR.A.095', NULL, '发起CFNRc)业务登记且激活次数', 'CfnrcActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (351, 'HLR', 'HLR.A.096', NULL, '(CFNRc)业务登记且激活成功次数', 'CfnrcActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (352, 'HLR', 'HLR.A.097', NULL, '(CFNRc)登记失败:MS忙', 'CfnrcRegFailByMsBusy');
INSERT INTO `kpi_title` VALUES (353, 'HLR', 'HLR.A.098', NULL, '(CFNRc)登记失败:不允许将呼叫终接到MS', 'CfnrcRegFailByMsDenied');
INSERT INTO `kpi_title` VALUES (354, 'HLR', 'HLR.A.099', NULL, '(CFNRc)登记失败:MS去登记状态', 'CfnrcRegFailByMsErase');
INSERT INTO `kpi_title` VALUES (355, 'HLR', 'HLR.A.100', NULL, '(CFNRc)登记失败:无寻呼响应', 'CfnrcRegFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (356, 'HLR', 'HLR.A.101', NULL, '(CFNRc)登记失败:系统错误', 'CfnrcRegFailBySysFail');
INSERT INTO `kpi_title` VALUES (357, 'HLR', 'HLR.A.102', NULL, '(CFNRc)登记失败:未分配电话号码', 'CfnrcRegFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (358, 'HLR', 'HLR.A.103', NULL, '(CFNRc)登记失败:不可用', 'CfnrcRegFailByUnavailable');
INSERT INTO `kpi_title` VALUES (359, 'HLR', 'HLR.A.104', NULL, '发起CFNRc)业务去活次数', 'CfnrcDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (360, 'HLR', 'HLR.A.105', NULL, 'CFNRc业务去活成功次数', 'CfnrcDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (361, 'HLR', 'HLR.A.106', NULL, 'CFNRc)去活失败:MS忙', 'CfnrcDeActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (362, 'HLR', 'HLR.A.107', NULL, 'CFNRc)去活失败:不允许将呼叫终接到MS', 'CfnrcDeActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (363, 'HLR', 'HLR.A.108', NULL, 'CFNRc)去活失败:MS去登记状态', 'CfnrcDeActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (364, 'HLR', 'HLR.A.109', NULL, 'CFNRc)去活失败:无寻呼响应', 'CfnrcDeActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (365, 'HLR', 'HLR.A.110', NULL, 'CFNRc)去活失败:系统错误', 'CfnrcDeActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (366, 'HLR', 'HLR.A.111', NULL, 'CFNRc)去活失败:未分配电话号码', 'CfnrcDeActvFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (367, 'HLR', 'HLR.A.112', NULL, 'CFNRc)去活失败:不可用', 'CfnrcDeActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (368, 'HLR', 'HLR.A.113', NULL, '发起CW业务激活次数', 'CwActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (369, 'HLR', 'HLR.A.114', NULL, 'CW业务激活成功次数', 'CwActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (370, 'HLR', 'HLR.A.115', NULL, 'CW激活失败MS忙', 'CwActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (371, 'HLR', 'HLR.A.116', NULL, 'CW激活失败不允许将呼叫终接到MS', 'CwActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (372, 'HLR', 'HLR.A.117', NULL, 'CW激活失败MS去登记状态', 'CwActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (373, 'HLR', 'HLR.A.118', NULL, 'CW激活失败无寻呼响应', 'CwActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (374, 'HLR', 'HLR.A.119', NULL, 'CW激活失败系统错误', 'CwActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (375, 'HLR', 'HLR.A.120', NULL, 'CW激活失败:未分配电话号码', 'CwActvFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (376, 'HLR', 'HLR.A.121', NULL, 'CW活失败:不可用', 'CwActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (377, 'HLR', 'HLR.A.122', NULL, '发起CW业务去活次数', 'CwDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (378, 'HLR', 'HLR.A.123', NULL, 'CW业务去活成功次数', 'CwDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (379, 'HLR', 'HLR.A.124', NULL, 'CW去活失败MS忙', 'CwDeActvFailByMsBusy');
INSERT INTO `kpi_title` VALUES (380, 'HLR', 'HLR.A.125', NULL, 'CW去活失败不允许将呼叫终接到MS', 'CwDeActvFailByMsDenied');
INSERT INTO `kpi_title` VALUES (381, 'HLR', 'HLR.A.126', NULL, 'CW去活失败MS去登记状态', 'CwDeActvFailByMsErase');
INSERT INTO `kpi_title` VALUES (382, 'HLR', 'HLR.A.127', NULL, 'CW去活失败无寻呼响应', 'CwDeActvFailByNoPagingResp');
INSERT INTO `kpi_title` VALUES (383, 'HLR', 'HLR.A.128', NULL, 'CW去活失败系统错误', 'CwDeActvFailBySysFail');
INSERT INTO `kpi_title` VALUES (384, 'HLR', 'HLR.A.129', NULL, 'CW去活失败未分配电话号码', 'CwDeActvFailByUnAssignMsisdn');
INSERT INTO `kpi_title` VALUES (385, 'HLR', 'HLR.A.130', NULL, 'CW去活失败不可用', 'CwDeActvFailByUnavailable');
INSERT INTO `kpi_title` VALUES (386, 'HLR', 'HLR.A.131', NULL, '发起前转业务去活次数', 'CFDeActvReqTotalNum');
INSERT INTO `kpi_title` VALUES (387, 'HLR', 'HLR.A.132', NULL, '前转业务去活成功次数', 'CFDeActvSuccTotalNum');
INSERT INTO `kpi_title` VALUES (388, 'HLR', 'HLR.A.133', NULL, '发起补充业务登记次数', 'SSRegReqTotalNum');
INSERT INTO `kpi_title` VALUES (389, 'HLR', 'HLR.A.134', NULL, '发起补充业务登记成功次数', 'SSRegSuccTotalNum');
INSERT INTO `kpi_title` VALUES (390, 'HLR', 'HLR.A.135', NULL, '获取路由尝试次数', 'RouteInfoReqTotalNum');
INSERT INTO `kpi_title` VALUES (391, 'HLR', 'HLR.A.136', NULL, '获取路由成功次数', 'RouteInfoSuccTotalNum');
INSERT INTO `kpi_title` VALUES (392, 'HLR', 'HLR.A.137', NULL, '获取路由尝试失败:缺席用户', 'RouteInfoFailByAbsentSub');
INSERT INTO `kpi_title` VALUES (393, 'HLR', 'HLR.A.138', NULL, '获取路由尝试失败:未知用户', 'RouteInfoFailByUnknownSub');
INSERT INTO `kpi_title` VALUES (394, 'HLR', 'HLR.A.139', NULL, '获取路由尝试失败:系统错误', 'RouteInfoFailBySysFail');
INSERT INTO `kpi_title` VALUES (395, 'HLR', 'HLR.A.140', NULL, '获取路由尝试失败:终呼拒绝', 'RouteInfoFailByCalledReject');
INSERT INTO `kpi_title` VALUES (396, 'HLR', 'HLR.A.141', NULL, '获取路由尝试失败:缺参数', 'RouteInfoFailByDataMiss');
INSERT INTO `kpi_title` VALUES (397, 'HLR', 'HLR.A.142', NULL, '获取路由尝试失败:设备不支持', 'RouteInfoFailByFacNotSupport');
INSERT INTO `kpi_title` VALUES (398, 'HLR', 'HLR.A.143', NULL, '获取路由尝试失败:不支持路由优化', 'RouteInfoFailByORNotAllowed');
INSERT INTO `kpi_title` VALUES (399, 'HLR', 'HLR.A.144', NULL, 'SRI触发漫游号码请求失败缺席用户', 'RouteNumberFailByAbsentSub');
INSERT INTO `kpi_title` VALUES (400, 'HLR', 'HLR.A.145', NULL, 'SRI触发漫游号码请求失败缺参数', 'RouteNumberFailByDataMiss');
INSERT INTO `kpi_title` VALUES (401, 'HLR', 'HLR.A.146', NULL, 'SRI触发漫游号码请求失败:设备不支持', 'RouteNumberFailByFacNotSupport');
INSERT INTO `kpi_title` VALUES (402, 'HLR', 'HLR.A.147', NULL, 'SRI触发漫游号码请求失败无漫游号码分配', 'RouteNumberFailByNoAssign');
INSERT INTO `kpi_title` VALUES (403, 'HLR', 'HLR.A.148', NULL, 'SRI触发漫游号码请求失败不支持路由优化', 'RouteNumberFailByORNotAllowed');
INSERT INTO `kpi_title` VALUES (404, 'HLR', 'HLR.A.149', NULL, 'SRI触发漫游号码请求次数', 'RouteNumberReqTotalNum');
INSERT INTO `kpi_title` VALUES (405, 'HLR', 'HLR.A.150', NULL, 'SRI触发漫游号码请求失败系统错误', 'RouteNumberFailBySysFail');
INSERT INTO `kpi_title` VALUES (406, 'HLR', 'HLR.A.151', NULL, 'SRI触发漫游号码请求失败非期望的参数', 'RouteNumberFailByUnexpData');
INSERT INTO `kpi_title` VALUES (407, 'HLR', 'HLR.A.152', NULL, 'SRI触发漫游号码请求成功次数', 'RouteNumberSuccTotalNum');
INSERT INTO `kpi_title` VALUES (408, 'HLR', 'HLR.A.153', NULL, '路由失败:呼叫闭锁', 'SMRouteFailByCallBarred');
INSERT INTO `kpi_title` VALUES (409, 'HLR', 'HLR.A.154', NULL, '路由失败:参数', 'SMRouteFailByDataMiss');
INSERT INTO `kpi_title` VALUES (410, 'HLR', 'HLR.A.155', NULL, '路由失败:设备不支持', 'SMRouteFailByFacNotSupport');
INSERT INTO `kpi_title` VALUES (411, 'HLR', 'HLR.A.156', NULL, '路由失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO `kpi_title` VALUES (412, 'HLR', 'HLR.A.157', NULL, '路由失败:非期望的参数值', 'SMRouteFailByUnexptPara');
INSERT INTO `kpi_title` VALUES (413, 'HLR', 'HLR.A.158', NULL, '路由失败:未知用户', 'SMRouteFailByUnknownSub');
INSERT INTO `kpi_title` VALUES (414, 'HLR', 'HLR.A.159', NULL, '终呼失败:非法用户', 'SMRouteFailByIllegalSub');
INSERT INTO `kpi_title` VALUES (415, 'HLR', 'HLR.A.160', NULL, '终呼失败:缺席用户', 'SMRouteFailByAbsentSub');
INSERT INTO `kpi_title` VALUES (416, 'HLR', 'HLR.A.161', NULL, '终呼失败:终呼时用户忙', 'SMRouteFailByBusySub');
INSERT INTO `kpi_title` VALUES (417, 'HLR', 'HLR.A.162', NULL, '终呼失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO `kpi_title` VALUES (418, 'HLR', 'HLR.A.163', NULL, '终呼失败:不期望的参数值', 'SMRouteFailByUnexptPara');
INSERT INTO `kpi_title` VALUES (419, 'HLR', 'HLR.A.164', NULL, '终呼失败:消息等待队列满', 'SMRouteFailByMsgQueueFull');
INSERT INTO `kpi_title` VALUES (420, 'HLR', 'HLR.A.165', NULL, '接收GSM MAP_ALERT消息次数', 'GsmAlertReqTotalNum');
INSERT INTO `kpi_title` VALUES (421, 'HLR', 'HLR.A.166', NULL, '接收GSM MAP_ALERT消息成功次数', 'GsmAlertSuccTotalNum');
INSERT INTO `kpi_title` VALUES (422, 'HLR', 'HLR.A.167', NULL, '重启指示发送次数', 'ResetReqTotalNum');
INSERT INTO `kpi_title` VALUES (423, 'HLR', 'HLR.A.168', NULL, '重启成功次数', 'ResetSuccTotalNum');
INSERT INTO `kpi_title` VALUES (424, 'HLR', 'HLR.A.169', NULL, '数据恢复请求次数', 'RestoreDataReqTotalNum');
INSERT INTO `kpi_title` VALUES (425, 'HLR', 'HLR.A.170', NULL, '数据恢复成功次数', 'RestoreDataReqSuccNum');
INSERT INTO `kpi_title` VALUES (426, 'HLR', 'HLR.A.171', NULL, 'C2G Boss开户成功次数', 'AddUserBossSuccNum');
INSERT INTO `kpi_title` VALUES (427, 'HLR', 'HLR.A.172', NULL, 'C2G Boss销户成功次数', 'DelUserBossSuccNum');
INSERT INTO `kpi_title` VALUES (428, 'HLR', 'HLR.A.173', NULL, 'C2G Boss修改用户成功次数', 'ModUserBossSuccNum');
INSERT INTO `kpi_title` VALUES (429, 'HLR', 'HLR.A.174', NULL, 'C2G Boss开户请求次数', 'AddUserBossReqNum');
INSERT INTO `kpi_title` VALUES (430, 'HLR', 'HLR.A.175', NULL, 'C2G Boss受理失败返回IMSI not used次数', 'BossServFailByImsiNot');
INSERT INTO `kpi_title` VALUES (431, 'HLR', 'HLR.A.176', NULL, 'C2G Boss受理失败返回ISDN not used次数', 'BossServFailByIsdnNot');
INSERT INTO `kpi_title` VALUES (432, 'HLR', 'HLR.A.177', NULL, 'C2G Boss受理失败返回其他错误次数', 'BossServFailByOther');
INSERT INTO `kpi_title` VALUES (433, 'HLR', 'HLR.A.178', NULL, 'C2G Boss受理失败返回repeat IMSI次数', 'BossServFailByRepImsi');
INSERT INTO `kpi_title` VALUES (434, 'HLR', 'HLR.A.179', NULL, 'C2G Boss受理失败返回repeat ISDN次数', 'BossServFailByRepIsdn');
INSERT INTO `kpi_title` VALUES (435, 'HLR', 'HLR.A.180', NULL, 'C2G Boss销户请求次数', 'DelUserBossReqNum');
INSERT INTO `kpi_title` VALUES (436, 'HLR', 'HLR.A.181', NULL, 'C2G Boss修改用户请求次数', 'ModUserBossReqNum');
SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO "kpi_title" VALUES (1, 'AMF', 'AMF.01', '{"cn": "AMF注册态用户数", "en": "AMF.RegSub"}', 'AMF注册态用户数', 'AMF.RegSub');
INSERT INTO "kpi_title" VALUES (2, 'AMF', 'AMF.02', '{"cn": "AMF初始注册请求次数", "en": "AMF.AttInitReg"}', 'AMF初始注册请求次数', 'AMF.AttInitReg');
INSERT INTO "kpi_title" VALUES (3, 'AMF', 'AMF.03', '{"cn": "AMF初始注册成功次数", "en": "AMF.SuccInitReg"}', 'AMF初始注册成功次数', 'AMF.SuccInitReg');
INSERT INTO "kpi_title" VALUES (4, 'AMF', 'AMF.04', '{"cn": "AMF初始注册失败次数_非法用户", "en": "AMF.FailedInitReg.3"}', 'AMF初始注册失败次数_非法用户', 'AMF.FailedInitReg.3');
INSERT INTO "kpi_title" VALUES (5, 'AMF', 'AMF.05', '{"cn": "AMF初始注册失败次数_PEI不允许", "en": "AMF.FailedInitReg.5"}', 'AMF初始注册失败次数_PEI不允许', 'AMF.FailedInitReg.5');
INSERT INTO "kpi_title" VALUES (6, 'AMF', 'AMF.06', '{"cn": "AMF初始注册失败次数_非法设备", "en": "AMF.FailedInitReg.6"}', 'AMF初始注册失败次数_非法设备', 'AMF.FailedInitReg.6');
INSERT INTO "kpi_title" VALUES (7, 'AMF', 'AMF.07', '{"cn": "AMF初始注册失败次数_5GS服务不允许_用户原因", "en": "AMF.FailedInitReg.7.User"}', 'AMF初始注册失败次数_5GS服务不允许_用户原因', 'AMF.FailedInitReg.7.User');
INSERT INTO "kpi_title" VALUES (8, 'AMF', 'AMF.08', '{"cn": "AMF初始注册失败次数_跟踪区内无合适小区_用户原因", "en": "AMF.FailedInitReg.15.User"}', 'AMF初始注册失败次数_跟踪区内无合适小区_用户原因', 'AMF.FailedInitReg.15.User');
INSERT INTO "kpi_title" VALUES (9, 'AMF', 'AMF.09', '{"cn": "AMF初始注册失败次数_N1模式不允许", "en": "AMF.FailedInitReg.27"}', 'AMF初始注册失败次数_N1模式不允许', 'AMF.FailedInitReg.27');
INSERT INTO "kpi_title" VALUES (10, 'AMF', 'AMF.10', '{"cn": "AMF初始注册失败次数_PLMN不允许", "en": "AMF.FailedInitReg.11"}', 'AMF初始注册失败次数_PLMN不允许', 'AMF.FailedInitReg.11');
INSERT INTO "kpi_title" VALUES (11, 'AMF', 'AMF.11', '{"cn": "AMF初始注册失败次数_跟踪区不允许", "en": "AMF.FailedInitReg.12"}', 'AMF初始注册失败次数_跟踪区不允许', 'AMF.FailedInitReg.12');
INSERT INTO "kpi_title" VALUES (12, 'AMF', 'AMF.12', '{"cn": "AMF初始注册失败次数_漫游跟踪区禁止接入", "en": "AMF.FailedInitReg.13"}', 'AMF初始注册失败次数_漫游跟踪区禁止接入', 'AMF.FailedInitReg.13');
INSERT INTO "kpi_title" VALUES (13, 'AMF', 'AMF.13', '{"cn": "AMF初始注册失败次数_无可用网络切片", "en": "AMF.FailedInitReg.62"}', 'AMF初始注册失败次数_无可用网络切片', 'AMF.FailedInitReg.62');
INSERT INTO "kpi_title" VALUES (14, 'AMF', 'AMF.14', '{"cn": "AMF初始注册失败次数_协议错误_用户原因", "en": "AMF.FailedInitReg.111.User"}', 'AMF初始注册失败次数_协议错误_用户原因', 'AMF.FailedInitReg.111.User');
INSERT INTO "kpi_title" VALUES (15, 'AMF', 'AMF.15', '{"cn": "AMF一次寻呼响应次数", "en": "AMF.FirstPagingSucc"}', 'AMF一次寻呼响应次数', 'AMF.FirstPagingSucc');
INSERT INTO "kpi_title" VALUES (16, 'AMF', 'AMF.16', '{"cn": "AMF二次寻呼响应次数", "en": "AMF.SecondPagingSucc"}', 'AMF二次寻呼响应次数', 'AMF.SecondPagingSucc');
INSERT INTO "kpi_title" VALUES (17, 'AMF', 'AMF.17', '{"cn": "AMF寻呼请求次数", "en": "AMF.PagAtt"}', 'AMF寻呼请求次数', 'AMF.PagAtt');
INSERT INTO "kpi_title" VALUES (18, 'AMF', 'AMF.18', '{"cn": "AMF业务请求被拒次数", "en": "AMF.FailServiceReq"}', 'AMF业务请求被拒次数', 'AMF.FailServiceReq');
INSERT INTO "kpi_title" VALUES (19, 'AMF', 'AMF.19', '{"cn": "AMF业务请求尝试次数", "en": "AMF.AttServiceReq"}', 'AMF业务请求尝试次数', 'AMF.AttServiceReq');
INSERT INTO "kpi_title" VALUES (20, 'SMF', 'SMF.01', '{"cn": "5G实时PDU会话数", "en": "SMF.MeanPduSession"}', '5G实时PDU会话数', 'SMF.MeanPduSession');
INSERT INTO "kpi_title" VALUES (21, 'SMF', 'SMF.02', '{"cn": "PDU会话建立成功次数", "en": "SMF.SuccCreatePduSession"}', 'PDU会话建立成功次数', 'SMF.SuccCreatePduSession');
INSERT INTO "kpi_title" VALUES (22, 'SMF', 'SMF.03', '{"cn": "PDU会话建立请求次数", "en": "SMF.AttCreatePduSession"}', 'PDU会话建立请求次数', 'SMF.AttCreatePduSession');
INSERT INTO "kpi_title" VALUES (23, 'SMF', 'SMF.04', '{"cn": "IMS PDU会话建立成功次数", "en": "SMF.SuccCreatePduSession._Ims"}', 'IMS PDU会话建立成功次数', 'SMF.SuccCreatePduSession._Ims');
INSERT INTO "kpi_title" VALUES (24, 'SMF', 'SMF.05', '{"cn": "IMS PDU会话建立请求次数", "en": "SMF.AttCreatePduSession._Ims"}', 'IMS PDU会话建立请求次数', 'SMF.AttCreatePduSession._Ims');
INSERT INTO "kpi_title" VALUES (25, 'SMF', 'SMF.06', '{"cn": "EPS-Fallback成功数", "en": "SMF.SuccSmfModifyBearerResponse.Epsfb"}', 'EPS-Fallback成功数', 'SMF.SuccSmfModifyBearerResponse.Epsfb');
INSERT INTO "kpi_title" VALUES (26, 'SMF', 'SMF.07', '{"cn": "EPS-Fallback请求数", "en": "SMF.AttSmfModifyPduSession.Epsfb"}', 'EPS-Fallback请求数', 'SMF.AttSmfModifyPduSession.Epsfb');
INSERT INTO "kpi_title" VALUES (27, 'UDM', 'UDM.01', '{"cn": "5G注册用户数", "en": "UDR.5gActSub"}', '5G注册用户数', 'UDR.5gActSub');
INSERT INTO "kpi_title" VALUES (28, 'UDM', 'UDM.02', '{"cn": "AMF发起的UECM注册请求次数", "en": "UDM.AmfUecmRegReq"}', 'AMF发起的UECM注册请求次数', 'UDM.AmfUecmRegReq');
INSERT INTO "kpi_title" VALUES (29, 'UDM', 'UDM.03', '{"cn": "AMF发起的UECM注册成功次数", "en": "UDM.AmfUecmRegSucc"}', 'AMF发起的UECM注册成功次数', 'UDM.AmfUecmRegSucc');
INSERT INTO "kpi_title" VALUES (30, 'UDM', 'UDM.04', '{"cn": "SMF发起的UECM注册成功次数", "en": "UDM.SmfUecmRegSucc"}', 'SMF发起的UECM注册成功次数', 'UDM.SmfUecmRegSucc');
INSERT INTO "kpi_title" VALUES (31, 'UDM', 'UDM.05', '{"cn": "SMF发起的UECM注册请求次数", "en": "UDM.SmfUecmRegReq"}', 'SMF发起的UECM注册请求次数', 'UDM.SmfUecmRegReq');
INSERT INTO "kpi_title" VALUES (32, 'UDM', 'UDM.06', '{"cn": "4G注册用户数", "en": "SUB.EpsActSubsInHss"}', '4G注册用户数', 'SUB.EpsActSubsInHss');
INSERT INTO "kpi_title" VALUES (33, 'UDM', 'UDM.07', '{"cn": "4G鉴权信息查询成功次数", "en": "DIAM.AucInfoAnsSucc"}', '4G鉴权信息查询成功次数', 'DIAM.AucInfoAnsSucc');
INSERT INTO "kpi_title" VALUES (34, 'UDM', 'UDM.08', '{"cn": "4G鉴权信息查询请求次数", "en": "DIAM.AucInfoReq"}', '4G鉴权信息查询请求次数', 'DIAM.AucInfoReq');
INSERT INTO "kpi_title" VALUES (35, 'UDM', 'UDM.09', '{"cn": "4G更新位置成功次数", "en": "DIAM.UpdateLocationAnsSucc"}', '4G更新位置成功次数', 'DIAM.UpdateLocationAnsSucc');
INSERT INTO "kpi_title" VALUES (36, 'UDM', 'UDM.10', '{"cn": "4G更新位置请求次数", "en": "DIAM.UpdateLocationReq"}', '4G更新位置请求次数', 'DIAM.UpdateLocationReq');
INSERT INTO "kpi_title" VALUES (37, 'UDM', 'UDM.11', '{"cn": "SAR成功响应总次数", "en": "UR.SuccSAA"}', 'SAR成功响应总次数', 'UR.SuccSAA');
INSERT INTO "kpi_title" VALUES (38, 'UDM', 'UDM.12', '{"cn": "SAR请求总次数", "en": "UR.AttSAR"}', 'SAR请求总次数', 'UR.AttSAR');
INSERT INTO "kpi_title" VALUES (39, 'UDM', 'UDM.13', '{"cn": "LIR成功响应总次数", "en": "LIQ.SuccLIA"}', 'LIR成功响应总次数', 'LIQ.SuccLIA');
INSERT INTO "kpi_title" VALUES (40, 'UDM', 'UDM.14', '{"cn": "LIR请求总次数", "en": "LIQ.AttLIR"}', 'LIR请求总次数', 'LIQ.AttLIR');
INSERT INTO "kpi_title" VALUES (41, 'AUSF', 'AUSF.01', '{"cn": "鉴权成功次数", "en": "Ausf.UeAuthAnsSucc"}', '鉴权成功次数', 'Ausf.UeAuthAnsSucc');
INSERT INTO "kpi_title" VALUES (42, 'AUSF', 'AUSF.02', '{"cn": "鉴权请求次数", "en": "Ausf.UeAuthReq"}', '鉴权请求次数', 'Ausf.UeAuthReq');
INSERT INTO "kpi_title" VALUES (43, 'UPF', 'UPF.01', '{"cn": "PFCP会话建立成功次数", "en": "UPF.PfcpSessionEstabSucc"}', 'PFCP会话建立成功次数', 'UPF.PfcpSessionEstabSucc');
INSERT INTO "kpi_title" VALUES (44, 'UPF', 'UPF.02', '{"cn": "PFCP会话建立请求次数", "en": "UPF.PfcpSessionEstabReq"}', 'PFCP会话建立请求次数', 'UPF.PfcpSessionEstabReq');
INSERT INTO "kpi_title" VALUES (45, 'UPF', 'UPF.03', '{"cn": "N6接口上行字节数", "en": "UPF.N6OgOct"}', 'N6接口上行字节数', 'UPF.N6OgOct');
INSERT INTO "kpi_title" VALUES (46, 'UPF', 'UPF.04', '{"cn": "N6接口下行字节数", "en": "UPF.N6IncOct"}', 'N6接口下行字节数', 'UPF.N6IncOct');
INSERT INTO "kpi_title" VALUES (47, 'UPF', 'UPF.05', '{"cn": "N3接口上行字节数", "en": "UPF.N3OgOct"}', 'N3接口上行字节数', 'UPF.N3OgOct');
INSERT INTO "kpi_title" VALUES (48, 'UPF', 'UPF.06', '{"cn": "N3接口下行字节数", "en": "UPF.N3IncOct"}', 'N3接口下行字节数', 'UPF.N3IncOct');
INSERT INTO "kpi_title" VALUES (49, 'UPF', 'UPF.07', '{"cn": "SGi接口上行字节数", "en": "IP.PeakThroughputUlSgi"}', 'SGi接口上行字节数', 'IP.PeakThroughputUlSgi');
INSERT INTO "kpi_title" VALUES (50, 'UPF', 'UPF.08', '{"cn": "SGi接口下行字节数", "en": "IP.PeakThroughputDlSgi"}', 'SGi接口下行字节数', 'IP.PeakThroughputDlSgi');
INSERT INTO "kpi_title" VALUES (51, 'UPF', 'UPF.09', '{"cn": "S1-U接口上行字节数", "en": "GTP.OutOctS1uSgw"}', 'S1-U接口上行字节数', 'GTP.OutOctS1uSgw');
INSERT INTO "kpi_title" VALUES (52, 'UPF', 'UPF.10', '{"cn": "S1-U接口下行字节数", "en": "GTP.IncOctS1uSgw"}', 'S1-U接口下行字节数', 'GTP.IncOctS1uSgw');
INSERT INTO "kpi_title" VALUES (53, 'AMF', 'AMF.20', '{"cn": "EPS在线用户数", "en": "SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected"}', 'EPS在线用户数', 'SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected');
INSERT INTO "kpi_title" VALUES (54, 'AMF', 'AMF.21', '{"cn": "EPS附着成功次数", "en": "MM.SuccEpsAttach"}', 'EPS附着成功次数', 'MM.SuccEpsAttach');
INSERT INTO "kpi_title" VALUES (55, 'AMF', 'AMF.22', '{"cn": "EPS附着请求次数", "en": "MM.AttEpsAttach"}', 'EPS附着请求次数', 'MM.AttEpsAttach');
INSERT INTO "kpi_title" VALUES (56, 'AMF', 'AMF.23', '{"cn": "EPS附着失败次数_非法用户", "en": "MM.FailedEpsAttach.3"}', 'EPS附着失败次数_非法用户', 'MM.FailedEpsAttach.3');
INSERT INTO "kpi_title" VALUES (57, 'AMF', 'AMF.24', '{"cn": "EPS附着失败次数_非法终端", "en": "MM.FailedEpsAttach.5"}', 'EPS附着失败次数_非法终端', 'MM.FailedEpsAttach.5');
INSERT INTO "kpi_title" VALUES (58, 'AMF', 'AMF.25', '{"cn": "EPS附着失败次数_非法ME", "en": "MM.FailedEpsAttach.6"}', 'EPS附着失败次数_非法ME', 'MM.FailedEpsAttach.6');
INSERT INTO "kpi_title" VALUES (59, 'AMF', 'AMF.26', '{"cn": "EPS附着失败次数_EPS服务不允许_用户原因", "en": "MM.FailedEpsAttach.7.User"}', 'EPS附着失败次数_EPS服务不允许_用户原因', 'MM.FailedEpsAttach.7.User');
INSERT INTO "kpi_title" VALUES (60, 'AMF', 'AMF.27', '{"cn": "EPS附着失败次数_EPS和非EPS服务不允许", "en": "MM.FailedEpsAttach.8"}', 'EPS附着失败次数_EPS和非EPS服务不允许', 'MM.FailedEpsAttach.8');
INSERT INTO "kpi_title" VALUES (61, 'AMF', 'AMF.28', '{"cn": "EPS附着失败次数_跟踪区内无合适小区_用户原因", "en": "MM.FailedEpsAttach.15.User"}', 'EPS附着失败次数_跟踪区内无合适小区_用户原因', 'MM.FailedEpsAttach.15.User');
INSERT INTO "kpi_title" VALUES (62, 'AMF', 'AMF.29', '{"cn": "EPS附着失败次数_ESM失败_用户原因", "en": "MM.FailedEpsAttach.19.User"}', 'EPS附着失败次数_ESM失败_用户原因', 'MM.FailedEpsAttach.19.User');
INSERT INTO "kpi_title" VALUES (63, 'AMF', 'AMF.30', '{"cn": "MME一次寻呼响应次数", "en": "MM.FirstPagingSucc"}', 'MME一次寻呼响应次数', 'MM.FirstPagingSucc');
INSERT INTO "kpi_title" VALUES (64, 'AMF', 'AMF.31', '{"cn": "MME二次寻呼响应次数", "en": "MM.SecondPagingSucc"}', 'MME二次寻呼响应次数', 'MM.SecondPagingSucc');
INSERT INTO "kpi_title" VALUES (65, 'AMF', 'AMF.32', '{"cn": "MME寻呼请求次数", "en": "MM.PagAtt"}', 'MME寻呼请求次数', 'MM.PagAtt');
INSERT INTO "kpi_title" VALUES (66, 'SMF', 'SMF.08', '{"cn": "4G在线会话数", "en": "SM.MeanNbrBearerPgw.Default"}', '4G在线会话数', 'SM.MeanNbrBearerPgw.Default');
INSERT INTO "kpi_title" VALUES (67, 'SMF', 'SMF.09', '{"cn": "PGW缺省承载建立成功个数", "en": "SM.SuccCreateDefaultEpsBearer"}', 'PGW缺省承载建立成功个数', 'SM.SuccCreateDefaultEpsBearer');
INSERT INTO "kpi_title" VALUES (68, 'SMF', 'SMF.10', '{"cn": "PGW缺省承载建立请求个数", "en": "SM.AttCreateDefaultEpsBearer"}', 'PGW缺省承载建立请求个数', 'SM.AttCreateDefaultEpsBearer');
INSERT INTO "kpi_title" VALUES (69, 'SMF', 'SMF.11', '{"cn": "PGW专用承载建立成功个数", "en": "SM.SuccCreateDedicatedEpsBearer"}', 'PGW专用承载建立成功个数', 'SM.SuccCreateDedicatedEpsBearer');
INSERT INTO "kpi_title" VALUES (70, 'SMF', 'SMF.12', '{"cn": "PGW专用承载建立请求个数", "en": "SM.AttCreateDedicatedEpsBearer"}', 'PGW专用承载建立请求个数', 'SM.AttCreateDedicatedEpsBearer');
INSERT INTO "kpi_title" VALUES (71, 'SMF', 'SMF.13', '{"cn": "IMS缺省承载成功建立个数", "en": "SM.SuccCreateDefaultEpsBearer._Ims"}', 'IMS缺省承载成功建立个数', 'SM.SuccCreateDefaultEpsBearer._Ims');
INSERT INTO "kpi_title" VALUES (72, 'SMF', 'SMF.14', '{"cn": "IMS缺省承载请求建立个数", "en": "SM.AttCreateDefaultEpsBearer._Ims"}', 'IMS缺省承载请求建立个数', 'SM.AttCreateDefaultEpsBearer._Ims');
INSERT INTO "kpi_title" VALUES (73, 'AMF', 'AMF.A.02', '{"cn":"AMF移动性注册更新成功次数","en":"AMF.SuccMobiReg"}', 'AMF移动性注册更新成功次数', 'AMF.SuccMobiReg');
INSERT INTO "kpi_title" VALUES (74, 'AMF', 'AMF.A.03', '{"cn":"AMF移动性注册更新失败次数","en":"AMF.FailedMobiReg"}', 'AMF移动性注册更新失败次数', 'AMF.FailedMobiReg');
INSERT INTO "kpi_title" VALUES (75, 'AMF', 'AMF.A.04', '{"cn":"AMF紧急注册请求次数","en":"AMF.AttEmergReg"}', 'AMF紧急注册请求次数', 'AMF.AttEmergReg');
INSERT INTO "kpi_title" VALUES (76, 'AMF', 'AMF.A.05', '{"cn":"AMF紧急注册成功次数","en":"AMF.SuccEmergReg"}', 'AMF紧急注册成功次数', 'AMF.SuccEmergReg');
INSERT INTO "kpi_title" VALUES (77, 'AMF', 'AMF.A.06', '{"cn":"AMF紧急注册失败次数","en":"AMF.FailedEmergReg"}', 'AMF紧急注册失败次数', 'AMF.FailedEmergReg');
INSERT INTO "kpi_title" VALUES (78, 'AMF', 'AMF.A.07', '{"cn":"UE发起的去注册请求次数","en":"AMF.AttUeDereg"}', 'UE发起的去注册请求次数', 'AMF.AttUeDereg');
INSERT INTO "kpi_title" VALUES (79, 'AMF', 'AMF.A.08', '{"cn":"UE发起的去注册成功次数","en":"AMF.SuccUeDereg"}', 'UE发起的去注册成功次数', 'AMF.SuccUeDereg');
INSERT INTO "kpi_title" VALUES (80, 'AMF', 'AMF.A.09', '{"cn":"AMF发起的去注册请求次数","en":"AMF.AttAmfDereg"}', 'AMF发起的去注册请求次数', 'AMF.AttAmfDereg');
INSERT INTO "kpi_title" VALUES (81, 'AMF', 'AMF.A.10', '{"cn":"AMF发起的去注册成功次数","en":"AMF.SuccAmfDereg"}', 'AMF发起的去注册成功次数', 'AMF.SuccAmfDereg');
INSERT INTO "kpi_title" VALUES (82, 'AMF', 'AMF.A.11', '{"cn":"UDM发起的去注册请求次数","en":"AMF.AttUdmDereg"}', 'UDM发起的去注册请求次数', 'AMF.AttUdmDereg');
INSERT INTO "kpi_title" VALUES (83, 'AMF', 'AMF.A.12', '{"cn":"UDM发起的去注册成功次数","en":"AMF.SuccUdmDereg"}', 'UDM发起的去注册成功次数', 'AMF.SuccUdmDereg');
INSERT INTO "kpi_title" VALUES (84, 'AMF', 'AMF.A.13', '{"cn":"AMF寻呼失败次数","en":"AMF.PagFail"}', 'AMF寻呼失败次数', 'AMF.PagFail');
INSERT INTO "kpi_title" VALUES (85, 'AMF', 'AMF.A.14', '{"cn":"AMF隐式去注册次数","en":"AMF.ImplicitDereg"}', 'AMF隐式去注册次数', 'AMF.ImplicitDereg');
INSERT INTO "kpi_title" VALUES (86, 'SMF', 'SMF.A.01', '{"cn":"PDU会话接受次数","en":"SMF.PduSessAcpt"}', 'PDU会话接受次数', 'SMF.PduSessAcpt');
INSERT INTO "kpi_title" VALUES (87, 'SMF', 'SMF.A.02', '{"cn":"基站Pdu资源创建成功次数","en":"SM.PduResSetupSucc"}', '基站Pdu资源创建成功次数', 'SM.PduResSetupSucc');
INSERT INTO "kpi_title" VALUES (88, 'SMF', 'SMF.A.03', '{"cn":"查询用户SM数据失败次数","en":"SM.RetrieveSmDataFail"}', '查询用户SM数据失败次数', 'SM.RetrieveSmDataFail');
INSERT INTO "kpi_title" VALUES (89, 'SMF', 'SMF.A.04', '{"cn":"PFCP会话建立失败次数","en":"SM.PfcpSessEstFail"}', 'PFCP会话建立失败次数', 'SM.PfcpSessEstFail');
INSERT INTO "kpi_title" VALUES (90, 'SMF', 'SMF.A.05', '{"cn":"基站Pdu资源创建失败次数","en":"SM.PduResSetupFail"}', '基站Pdu资源创建失败次数', 'SM.PduResSetupFail');
INSERT INTO "kpi_title" VALUES (91, 'SMF', 'SMF.A.06', '{"cn":"PFCP会话修改失败次数","en":"SM.PfcpSessMdfyFail"}', 'PFCP会话修改失败次数', 'SM.PfcpSessMdfyFail');
INSERT INTO "kpi_title" VALUES (92, 'SMF', 'SMF.A.07', '{"cn":"PDU会话拒绝次数","en":"SM.PduSessRejt"}', 'PDU会话拒绝次数', 'SM.PduSessRejt');
INSERT INTO "kpi_title" VALUES (93, 'SMF', 'SMF.A.08', '{"cn":"PDU会话释放指示次数","en":"SM.PduSessRelCmd"}', 'PDU会话释放指示次数', 'SM.PduSessRelCmd');
INSERT INTO "kpi_title" VALUES (94, 'NSSF', 'NSSF.A.02', '{"cn":"可用AMF注册次数","en":"NSSF.SuccAvailAMFPut"}', '可用AMF注册成功次数', 'NSSF.SuccAvailAMFPut');
INSERT INTO "kpi_title" VALUES (95, 'NSSF', 'NSSF.A.03', '{"cn":"可用AMF注册更新成功次数","en":"NSSF.AvailAMFPut"}', '可用AMF注册次数', 'NSSF.AvailAMFPut');
INSERT INTO "kpi_title" VALUES (96, 'NSSF', 'NSSF.A.04', '{"cn":"可用AMF注册更新次数","en":"NSSF.SuccAvailAMFPatch"}', '可用AMF注册更新成功次数', 'NSSF.SuccAvailAMFPatch');
INSERT INTO "kpi_title" VALUES (97, 'NSSF', 'NSSF.A.01', '{"cn":"可用AMF注册成功次数","en":"NSSF.AvailAMFPatch"}', '可用AMF注册更新次数', 'NSSF.AvailAMFPatch');
INSERT INTO "kpi_title" VALUES (98, 'NSSF', 'NSSF.A.05', '{"cn":"可用AMF去注册成功次数","en":"NSSF.SuccAvailAMFDelete"}', '可用AMF去注册成功次数', 'NSSF.SuccAvailAMFDelete');
INSERT INTO "kpi_title" VALUES (99, 'NSSF', 'NSSF.A.06', '{"cn":"可用AMF去注册次数","en":"NSSF.AvailAMFDelete"}', '可用AMF去注册次数', 'NSSF.AvailAMFDelete');
INSERT INTO "kpi_title" VALUES (100, 'NSSF', 'NSSF.A.07', '{"cn":"网元订阅成功次数","en":"NSSF.SuccAvailSubscription"}', '网元订阅成功次数', 'NSSF.SuccAvailSubscription');
INSERT INTO "kpi_title" VALUES (101, 'NSSF', 'NSSF.A.08', '{"cn":"网元订阅次数","en":"NSSF.AvailSubscription"}', '网元订阅次数', 'NSSF.AvailSubscription');
INSERT INTO "kpi_title" VALUES (102, 'NSSF', 'NSSF.A.09', '{"cn":"网元去订阅成功次数","en":"NSSF.SuccAvailUnsubscription"}', '网元去订阅成功次数', 'NSSF.SuccAvailUnsubscription');
INSERT INTO "kpi_title" VALUES (103, 'NSSF', 'NSSF.A.10', '{"cn":"网元去订阅次数","en":"NSSF.AvailUnsubscription"}', '网元去订阅次数', 'NSSF.AvailUnsubscription');
INSERT INTO "kpi_title" VALUES (104, 'NSSF', 'NSSF.A.11', '{"cn":"向NRF注册成功次数","en":"NSSF.SuccNRFReg"}', '向NRF注册成功次数', 'NSSF.SuccNRFReg');
INSERT INTO "kpi_title" VALUES (105, 'NSSF', 'NSSF.A.12', '{"cn":"向NRF注册次数","en":"NSSF.NRFReg"}', '向NRF注册次数', 'NSSF.NRFReg');
INSERT INTO "kpi_title" VALUES (106, 'NSSF', 'NSSF.A.13', '{"cn":"向NRF发送心跳次数","en":"NSSF.NRFHeartbeat"}', '向NRF发送心跳次数', 'NSSF.NRFHeartbeat');
INSERT INTO "kpi_title" VALUES (107, 'NSSF', 'NSSF.A.14', '{"cn":"当前注册AMF个数","en":"NSSF.CurrentAMFCount"}', '当前注册AMF个数', 'NSSF.CurrentAMFCount');
INSERT INTO "kpi_title" VALUES (108, 'NSSF', 'NSSF.A.15', '{"cn":"当前订阅网元个数","en":"NSSF.CurrentSubscriperCount"}', '当前订阅网元个数', 'NSSF.CurrentSubscriperCount');
INSERT INTO "kpi_title" VALUES (109, 'MME', 'MME.A.01', '{"cn":"MME附着请求次数","en":"EpsAttachAtt"}', 'MME附着请求次数', 'EpsAttachAtt');
INSERT INTO "kpi_title" VALUES (110, 'MME', 'MME.A.02', '{"cn":"MME附着成功次数","en":"EpsAttachSucc"}', 'MME附着成功次数', 'EpsAttachSucc');
INSERT INTO "kpi_title" VALUES (111, 'MME', 'MME.A.03', '{"cn":"MME附着失败次数","en":"EpsAttachFail"}', 'MME附着失败次数', 'EpsAttachFail');
INSERT INTO "kpi_title" VALUES (112, 'MME', 'MME.A.04', '{"cn":"MME组合附着请求次数","en":"CombAttachAtt"}', 'MME组合附着请求次数', 'CombAttachAtt');
INSERT INTO "kpi_title" VALUES (113, 'MME', 'MME.A.05', '{"cn":"MME组合附着成功次数","en":"CombAttachSucc"}', 'MME组合附着成功次数', 'CombAttachSucc');
INSERT INTO "kpi_title" VALUES (114, 'MME', 'MME.A.06', '{"cn":"MME组合附着失败次数","en":"CombAttachFail"}', 'MME组合附着失败次数', 'CombAttachFail');
INSERT INTO "kpi_title" VALUES (115, 'MME', 'MME.A.07', '{"cn":"MME紧急附着请求次数","en":"EmergAttachAtt"}', 'MME紧急附着请求次数', 'EmergAttachAtt');
INSERT INTO "kpi_title" VALUES (116, 'MME', 'MME.A.08', '{"cn":"MME紧急附着成功次数","en":"EmergAttachSucc"}', 'MME紧急附着成功次数', 'EmergAttachSucc');
INSERT INTO "kpi_title" VALUES (117, 'MME', 'MME.A.09', '{"cn":"MME紧急附着失败次数","en":"EmergAttachFail"}', 'MME紧急附着失败次数', 'EmergAttachFail');
INSERT INTO "kpi_title" VALUES (118, 'MME', 'MME.A.10', '{"cn":"UE发起的分离请求次数","en":"EpsDetachUeAtt"}', 'UE发起的分离请求次数', 'EpsDetachUeAtt');
INSERT INTO "kpi_title" VALUES (119, 'MME', 'MME.A.11', '{"cn":"UE发起的分离请求成功次数","en":"EpsDetachUeSucc"}', 'UE发起的分离请求成功次数', 'EpsDetachUeSucc');
INSERT INTO "kpi_title" VALUES (120, 'MME', 'MME.A.12', '{"cn":"MME发起的分离请求次数","en":"EpsDetachMMEAtt"}', 'MME发起的分离请求次数', 'EpsDetachMMEAtt');
INSERT INTO "kpi_title" VALUES (121, 'MME', 'MME.A.13', '{"cn":"MME发起的分离请求成功次数","en":"EpsDetachMMESucc"}', 'MME发起的分离请求成功次数', 'EpsDetachMMESucc');
INSERT INTO "kpi_title" VALUES (122, 'MME', 'MME.A.14', '{"cn":"伴随SGW内切换的TAU请求次数","en":"TauIntraSgwAtt"}', '伴随SGW内切换的TAU请求次数', 'TauIntraSgwAtt');
INSERT INTO "kpi_title" VALUES (123, 'MME', 'MME.A.15', '{"cn":"伴随SGW内切换的TAU成功请求次数","en":"TauIntraSgwSucc"}', '伴随SGW内切换的TAU成功请求次数', 'TauIntraSgwSucc');
INSERT INTO "kpi_title" VALUES (124, 'MME', 'MME.A.16', '{"cn":"伴随SGW内切换的TAU失败请求次数","en":"TauIntraSgwFail"}', '伴随SGW内切换的TAU失败请求次数', 'TauIntraSgwFail');
INSERT INTO "kpi_title" VALUES (125, 'MME', 'MME.A.17', '{"cn":"MME寻呼次数","en":"PagingEpsAtt"}', 'MME寻呼次数', 'PagingEpsAtt');
INSERT INTO "kpi_title" VALUES (126, 'MME', 'MME.A.18', '{"cn":"MME寻呼成功次数","en":"PagingEpsSucc"}', 'MME寻呼成功次数', 'PagingEpsSucc');
INSERT INTO "kpi_title" VALUES (127, 'MME', 'MME.A.19', '{"cn":"MME寻呼失败次数","en":"PagingEpsFail"}', 'MME寻呼失败次数', 'PagingEpsFail');
INSERT INTO "kpi_title" VALUES (128, 'MME', 'MME.A.20', '{"cn":"MME隐式分离请求次数","en":"EpsImplicitDetach"}', 'MME隐式分离请求次数', 'EpsImplicitDetach');
INSERT INTO "kpi_title" VALUES (129, 'MME', 'MME.A.21', '{"cn":"MME激活专用承载请求次数","en":"ActDedicatedEpsBearerAtt"}', 'MME激活专用承载请求次数', 'ActDedicatedEpsBearerAtt');
INSERT INTO "kpi_title" VALUES (130, 'MME', 'MME.A.22', '{"cn":"MME激活专用承载请求成功次数","en":"ActDedicatedEpsBearerSucc"}', 'MME激活专用承载请求成功次数', 'ActDedicatedEpsBearerSucc');
INSERT INTO "kpi_title" VALUES (131, 'MME', 'MME.A.23', '{"cn":"MME激活专用承载请求失败次数","en":"ActDedicatedEpsBearerFail"}', 'MME激活专用承载请求失败次数', 'ActDedicatedEpsBearerFail');
INSERT INTO "kpi_title" VALUES (132, 'MME', 'MME.A.24', '{"cn":"MME去激活专用承载请求次数","en":"DeactEpsDedicatedBearerAtt"}', 'MME去激活专用承载请求次数', 'DeactEpsDedicatedBearerAtt');
INSERT INTO "kpi_title" VALUES (133, 'MME', 'MME.A.25', '{"cn":"MME去激活专用承载请求成功次数","en":"DeactEpsDedicatedBearerSucc"}', 'MME去激活专用承载请求成功次数', 'DeactEpsDedicatedBearerSucc');
INSERT INTO "kpi_title" VALUES (134, 'MME', 'MME.A.26', '{"cn":"MME修改专用承载请求次数","en":"ModEpsBearerAtt"}', 'MME修改专用承载请求次数', 'ModEpsBearerAtt');
INSERT INTO "kpi_title" VALUES (135, 'MME', 'MME.A.27', '{"cn":"MME修改专用承载请求成功次数","en":"ModEpsBearerSucc"}', 'MME修改专用承载请求成功次数', 'ModEpsBearerSucc');
INSERT INTO "kpi_title" VALUES (136, 'MME', 'MME.A.28', '{"cn":"MME修改专用承载请求失败次数","en":"ModEpsBearerFail"}', 'MME修改专用承载请求失败次数', 'ModEpsBearerFail');
INSERT INTO "kpi_title" VALUES (137, 'MME', 'MME.A.29', '{"cn":"MME服务请求次数","en":"EpsServiceReqAtt"}', 'MME服务请求次数', 'EpsServiceReqAtt');
INSERT INTO "kpi_title" VALUES (138, 'MME', 'MME.A.30', '{"cn":"MME服务请求成功次数","en":"EpsServiceReqSucc"}', 'MME服务请求成功次数', 'EpsServiceReqSucc');
INSERT INTO "kpi_title" VALUES (139, 'MME', 'MME.A.31', '{"cn":"MME服务请求失败次数","en":"EpsServiceReqFail"}', 'MME服务请求失败次数', 'EpsServiceReqFail');
INSERT INTO "kpi_title" VALUES (140, 'MOCNGW', 'MOCNGW.01', '{"cn":"AttachRequest","en":"AttachRequest"}', 'AttachRequest', 'AttachRequest');
INSERT INTO "kpi_title" VALUES (141, 'MOCNGW', 'MOCNGW.02', '{"cn":"AttachAccept","en":"AttachAccept"}', 'AttachAccept', 'AttachAccept');
INSERT INTO "kpi_title" VALUES (142, 'MOCNGW', 'MOCNGW.03', '{"cn":"AttachComplete","en":"AttachComplete"}', 'AttachComplete', 'AttachComplete');
INSERT INTO "kpi_title" VALUES (143, 'MOCNGW', 'MOCNGW.04', '{"cn":"AttachReject","en":"AttachReject"}', 'AttachReject', 'AttachReject');
INSERT INTO "kpi_title" VALUES (144, 'MOCNGW', 'MOCNGW.05', '{"cn":"DetachRequest","en":"DetachRequest"}', 'DetachRequest', 'DetachRequest');
INSERT INTO "kpi_title" VALUES (145, 'MOCNGW', 'MOCNGW.06', '{"cn":"DetachAccept","en":"DetachAccept"}', 'DetachAccept', 'DetachAccept');
INSERT INTO "kpi_title" VALUES (146, 'MOCNGW', 'MOCNGW.07', '{"cn":"TrackingAreaUpdateRequest","en":"TrackingAreaUpdateRequest"}', 'TrackingAreaUpdateRequest', 'TrackingAreaUpdateRequest');
INSERT INTO "kpi_title" VALUES (147, 'MOCNGW', 'MOCNGW.08', '{"cn":"TrackingAreaUpdateAccept","en":"TrackingAreaUpdateAccept"}', 'TrackingAreaUpdateAccept', 'TrackingAreaUpdateAccept');
INSERT INTO "kpi_title" VALUES (148, 'MOCNGW', 'MOCNGW.09', '{"cn":"TrackingAreaUpdateComplete","en":"TrackingAreaUpdateComplete"}', 'TrackingAreaUpdateComplete', 'TrackingAreaUpdateComplete');
INSERT INTO "kpi_title" VALUES (149, 'MOCNGW', 'MOCNGW.10', '{"cn":"TrackingAreaUpdateReject","en":"TrackingAreaUpdateReject"}', 'TrackingAreaUpdateReject', 'TrackingAreaUpdateReject');
INSERT INTO "kpi_title" VALUES (150, 'MOCNGW', 'MOCNGW.11', '{"cn":"ServiceRequest","en":"ServiceRequest"}', 'ServiceRequest', 'ServiceRequest');
INSERT INTO "kpi_title" VALUES (151, 'MOCNGW', 'MOCNGW.12', '{"cn":"ExtendedServiceRequest","en":"ExtendedServiceRequest"}', 'ExtendedServiceRequest', 'ExtendedServiceRequest');
INSERT INTO "kpi_title" VALUES (152, 'MOCNGW', 'MOCNGW.13', '{"cn":"ControlPlaneServiceRequest","en":"ControlPlaneServiceRequest"}', 'ControlPlaneServiceRequest', 'ControlPlaneServiceRequest');
INSERT INTO "kpi_title" VALUES (153, 'MOCNGW', 'MOCNGW.14', '{"cn":"ServiceReject","en":"ServiceReject"}', 'ServiceReject', 'ServiceReject');
INSERT INTO "kpi_title" VALUES (154, 'MOCNGW', 'MOCNGW.15', '{"cn":"ServiceAccept","en":"ServiceAccept"}', 'ServiceAccept', 'ServiceAccept');
INSERT INTO "kpi_title" VALUES (155, 'MOCNGW', 'MOCNGW.16', '{"cn":"GutiReallocationCommand","en":"GutiReallocationCommand"}', 'GutiReallocationCommand', 'GutiReallocationCommand');
INSERT INTO "kpi_title" VALUES (156, 'MOCNGW', 'MOCNGW.17', '{"cn":"GutiReallocationComplete","en":"GutiReallocationComplete"}', 'GutiReallocationComplete', 'GutiReallocationComplete');
INSERT INTO "kpi_title" VALUES (157, 'MOCNGW', 'MOCNGW.18', '{"cn":"AuthenticationRequest","en":"AuthenticationRequest"}', 'AuthenticationRequest', 'AuthenticationRequest');
INSERT INTO "kpi_title" VALUES (158, 'MOCNGW', 'MOCNGW.19', '{"cn":"AuthenticationResponse","en":"AuthenticationResponse"}', 'AuthenticationResponse', 'AuthenticationResponse');
INSERT INTO "kpi_title" VALUES (159, 'MOCNGW', 'MOCNGW.20', '{"cn":"AuthenticationReject","en":"AuthenticationReject"}', 'AuthenticationReject', 'AuthenticationReject');
INSERT INTO "kpi_title" VALUES (160, 'MOCNGW', 'MOCNGW.21', '{"cn":"AuthenticationFailure","en":"AuthenticationFailure"}', 'AuthenticationFailure', 'AuthenticationFailure');
INSERT INTO "kpi_title" VALUES (161, 'MOCNGW', 'MOCNGW.22', '{"cn":"IdentityRequest","en":"IdentityRequest"}', 'IdentityRequest', 'IdentityRequest');
INSERT INTO "kpi_title" VALUES (162, 'MOCNGW', 'MOCNGW.23', '{"cn":"IdentityResponse","en":"IdentityResponse"}', 'IdentityResponse', 'IdentityResponse');
INSERT INTO "kpi_title" VALUES (163, 'MOCNGW', 'MOCNGW.24', '{"cn":"SecurityModeCommand","en":"SecurityModeCommand"}', 'SecurityModeCommand', 'SecurityModeCommand');
INSERT INTO "kpi_title" VALUES (164, 'MOCNGW', 'MOCNGW.25', '{"cn":"SecurityModeComplete","en":"SecurityModeComplete"}', 'SecurityModeComplete', 'SecurityModeComplete');
INSERT INTO "kpi_title" VALUES (165, 'MOCNGW', 'MOCNGW.26', '{"cn":"SecurityModeReject","en":"SecurityModeReject"}', 'SecurityModeReject', 'SecurityModeReject');
INSERT INTO "kpi_title" VALUES (166, 'MOCNGW', 'MOCNGW.27', '{"cn":"EmmStatus","en":"EmmStatus"}', 'EmmStatus', 'EmmStatus');
INSERT INTO "kpi_title" VALUES (167, 'MOCNGW', 'MOCNGW.28', '{"cn":"EmmInformation","en":"EmmInformation"}', 'EmmInformation', 'EmmInformation');
INSERT INTO "kpi_title" VALUES (168, 'MOCNGW', 'MOCNGW.29', '{"cn":"DownlinkNasTransport","en":"DownlinkNasTransport"}', 'DownlinkNasTransport', 'DownlinkNasTransport');
INSERT INTO "kpi_title" VALUES (169, 'MOCNGW', 'MOCNGW.30', '{"cn":"UplinkNasTransport","en":"UplinkNasTransport"}', 'UplinkNasTransport', 'UplinkNasTransport');
INSERT INTO "kpi_title" VALUES (170, 'MOCNGW', 'MOCNGW.31', '{"cn":"CsServiceNotification","en":"CsServiceNotification"}', 'CsServiceNotification', 'CsServiceNotification');
INSERT INTO "kpi_title" VALUES (171, 'MOCNGW', 'MOCNGW.32', '{"cn":"DownlinkGenericNasTransport","en":"DownlinkGenericNasTransport"}', 'DownlinkGenericNasTransport', 'DownlinkGenericNasTransport');
INSERT INTO "kpi_title" VALUES (172, 'MOCNGW', 'MOCNGW.33', '{"cn":"UplinkGenericNasTransport","en":"UplinkGenericNasTransport"}', 'UplinkGenericNasTransport', 'UplinkGenericNasTransport');
INSERT INTO "kpi_title" VALUES (173, 'IMS', 'SCSCF.01', '{"cn": "LTE接入注册用户数","en": "UR.SubsLTE.fromVoLTE"}', 'LTE接入注册用户数', 'UR.SubsLTE.fromVoLTE');
INSERT INTO "kpi_title" VALUES (174, 'IMS', 'SCSCF.02', '{"cn": "5G接入注册用户数","en": "UR.Subs5G.fromVo5G"}', '5G接入注册用户数', 'UR.Subs5G.fromVo5G');
INSERT INTO "kpi_title" VALUES (175, 'IMS', 'SCSCF.03', '{"cn": "初始注册成功次数","en": "UR.SuccInitReg"}', '初始注册成功次数', 'UR.SuccInitReg');
INSERT INTO "kpi_title" VALUES (176, 'IMS', 'SCSCF.04', '{"cn": "初始注册请求次数","en": "UR.AttInitReg"}', '初始注册请求次数', 'UR.AttInitReg');
INSERT INTO "kpi_title" VALUES (177, 'IMS', 'SCSCF.05', '{"cn": "主叫接通次数","en": "SC.SuccSessionOrig"}', '主叫接通次数', 'SC.SuccSessionOrig');
INSERT INTO "kpi_title" VALUES (178, 'IMS', 'SCSCF.06', '{"cn": "主叫试呼次数","en": "SC.AttSessionOrig"}', '主叫试呼次数', 'SC.AttSessionOrig');
INSERT INTO "kpi_title" VALUES (179, 'IMS', 'SCSCF.07', '{"cn": "被叫接通次数","en": "SC.SuccSessionTerm"}', '被叫接通次数', 'SC.SuccSessionTerm');
INSERT INTO "kpi_title" VALUES (180, 'IMS', 'SCSCF.08', '{"cn": "被叫试呼次数","en": "SC.AttSessionTerm"}', '被叫试呼次数', 'SC.AttSessionTerm');
INSERT INTO "kpi_title" VALUES (181, 'IMS', 'SCSCF.09', '{"cn": "主叫应答次数","en": "SC.AnsSessionOrig"}', '主叫应答次数', 'SC.AnsSessionOrig');
INSERT INTO "kpi_title" VALUES (182, 'IMS', 'SCSCF.10', '{"cn": "主叫早释次数","en": "SC.OrigRelBeforeRing"}', '主叫早释次数', 'SC.OrigRelBeforeRing');
INSERT INTO "kpi_title" VALUES (183, 'IMS', 'SCSCF.11', '{"cn": "主叫振铃早释次数","en": "SC.OrigRelAfterRing"}', '主叫振铃早释次数', 'SC.OrigRelAfterRing');
INSERT INTO "kpi_title" VALUES (184, 'IMS', 'SCSCF.12', '{"cn": "主叫403请求禁止次数","en": "SC.FailSessionOrig.403"}', '主叫403请求禁止次数', 'SC.FailSessionOrig.403');
INSERT INTO "kpi_title" VALUES (185, 'IMS', 'SCSCF.13', '{"cn": "主叫404未找到次数","en": "SC.FailSessionOrig.404"}', '主叫404未找到次数', 'SC.FailSessionOrig.404');
INSERT INTO "kpi_title" VALUES (186, 'IMS', 'SCSCF.14', '{"cn": "主叫408请求超时次数","en": "SC.FailSessionOrig.408"}', '主叫408请求超时次数', 'SC.FailSessionOrig.408');
INSERT INTO "kpi_title" VALUES (187, 'IMS', 'SCSCF.15', '{"cn": "主叫480久叫不应次","en": "SC.FailSessionOrig.480"}', '主叫480久叫不应次', 'SC.FailSessionOrig.480');
INSERT INTO "kpi_title" VALUES (188, 'IMS', 'SCSCF.16', '{"cn": "主叫484Request-URI不完整次","en": "SC.FailSessionOrig.484"}', '主叫484Request-URI不完整次', 'SC.FailSessionOrig.484');
INSERT INTO "kpi_title" VALUES (189, 'IMS', 'SCSCF.17', '{"cn": "主叫486用户忙次数","en": "SC.FailSessionOrig.486"}', '主叫486用户忙次数', 'SC.FailSessionOrig.486');
INSERT INTO "kpi_title" VALUES (190, 'IMS', 'SCSCF.18', '{"cn": "主叫487请求终止次数","en": "SC.FailSessionOrig.487"}', '主叫487请求终止次数', 'SC.FailSessionOrig.487');
INSERT INTO "kpi_title" VALUES (191, 'IMS', 'SCSCF.19', '{"cn": "主叫600用户忙次数","en": "SC.FailSessionOrig.600"}', '主叫600用户忙次数', 'SC.FailSessionOrig.600');
INSERT INTO "kpi_title" VALUES (192, 'IMS', 'SCSCF.20', '{"cn": "主叫603用户拒接次数","en": "SC.FailSessionOrig.603"}', '主叫603用户拒接次数', 'SC.FailSessionOrig.603');
INSERT INTO "kpi_title" VALUES (193, 'IMS', 'SCSCF.21', '{"cn": "主叫604用户信息不存在次数","en": "SC.FailSessionOrig.604"}', '主叫604用户信息不存在次数', 'SC.FailSessionOrig.604');
INSERT INTO "kpi_title" VALUES (194, 'IMS', 'SCSCF.22', '{"cn": "被叫应答次数","en": "SC.AnsSessionTerm"}', '被叫应答次数', 'SC.AnsSessionTerm');
INSERT INTO "kpi_title" VALUES (195, 'IMS', 'SCSCF.23', '{"cn": "被叫早释次","en": "SC.TermiRelBeforeRing"}', '被叫早释次', 'SC.TermiRelBeforeRing');
INSERT INTO "kpi_title" VALUES (196, 'IMS', 'SCSCF.24', '{"cn": "被叫振铃早释次数","en": "SC.TermiRelAfterRing"}', '被叫振铃早释次数', 'SC.TermiRelAfterRing');
INSERT INTO "kpi_title" VALUES (197, 'IMS', 'SCSCF.25', '{"cn": "被叫403请求禁止次数","en": "SC.FailSessionTerm.403"}', '被叫403请求禁止次数', 'SC.FailSessionTerm.403');
INSERT INTO "kpi_title" VALUES (198, 'IMS', 'SCSCF.26', '{"cn": "被叫404未找到次数","en": "SC.FailSessionTerm.404"}', '被叫404未找到次数', 'SC.FailSessionTerm.404');
INSERT INTO "kpi_title" VALUES (199, 'IMS', 'SCSCF.27', '{"cn": "被叫408请求超时次数","en": "SC.FailSessionTerm.408"}', '被叫408请求超时次数', 'SC.FailSessionTerm.408');
INSERT INTO "kpi_title" VALUES (200, 'IMS', 'SCSCF.28', '{"cn": "被叫480久叫不应次数","en": "SC.FailSessionTerm.480"}', '被叫480久叫不应次数', 'SC.FailSessionTerm.480');
INSERT INTO "kpi_title" VALUES (201, 'IMS', 'SCSCF.29', '{"cn": "被叫484Request-URI不完整次数","en": "SC.FailSessionTerm.484"}', '被叫484Request-URI不完整次数', 'SC.FailSessionTerm.484');
INSERT INTO "kpi_title" VALUES (202, 'IMS', 'SCSCF.30', '{"cn": "被叫486用户忙次数","en": "SC.FailSessionTerm.486"}', '被叫486用户忙次数', 'SC.FailSessionTerm.486');
INSERT INTO "kpi_title" VALUES (203, 'IMS', 'SCSCF.31', '{"cn": "被叫487请求终止次数","en": "SC.FailSessionTerm.487"}', '被叫487请求终止次数', 'SC.FailSessionTerm.487');
INSERT INTO "kpi_title" VALUES (204, 'IMS', 'SCSCF.32', '{"cn": "被叫600用户忙次数","en": "SC.FailSessionTerm.600"}', '被叫600用户忙次数', 'SC.FailSessionTerm.600');
INSERT INTO "kpi_title" VALUES (205, 'IMS', 'SCSCF.33', '{"cn": "被叫603用户拒接次数","en": "SC.FailSessionTerm.603"}', '被叫603用户拒接次数', 'SC.FailSessionTerm.603');
INSERT INTO "kpi_title" VALUES (206, 'IMS', 'SCSCF.34', '{"cn": "被叫604用户信息不存在次数","en": "SC.FailSessionTerm.604"}', '被叫604用户信息不存在次数', 'SC.FailSessionTerm.604');
INSERT INTO "kpi_title" VALUES (207, 'PCF', 'PCF.01', '{"cn": "在线N7会话数", "en": "PCF.SmAssocNbrMean"}', '在线N7会话数', 'PCF.SmAssocNbrMean');
INSERT INTO "kpi_title" VALUES (208, 'PCF', 'PCF.02', '{"cn": "SM策略关联建立成功次数", "en": "PCF.PolicySmAssocCreateSucc"}', 'SM策略关联建立成功次数', 'PCF.PolicySmAssocCreateSucc');
INSERT INTO "kpi_title" VALUES (209, 'PCF', 'PCF.03', '{"cn": "SM策略关联建立请求次数", "en": "PCF.PolicySmAssocCreateReq"}', 'SM策略关联建立请求次数', 'PCF.PolicySmAssocCreateReq');
INSERT INTO "kpi_title" VALUES (210, 'PCF', 'PCF.04', '{"cn": "SM策略关联更新成功次数", "en": "PCF.PolicySmAssocUpdateSucc"}', 'SM策略关联更新成功次数', 'PCF.PolicySmAssocUpdateSucc');
INSERT INTO "kpi_title" VALUES (211, 'PCF', 'PCF.05', '{"cn": "SM策略关联更新请求次数", "en": "PCF.PolicySmAssocUpdateReq"}', 'SM策略关联更新请求次数', 'PCF.PolicySmAssocUpdateReq');
INSERT INTO "kpi_title" VALUES (212, 'PCF', 'PCF.06', '{"cn": "在线Gx会话数", "en": "SM.SessionNbrMean"}', '在线Gx会话数', 'SM.SessionNbrMean');
INSERT INTO "kpi_title" VALUES (213, 'PCF', 'PCF.07', '{"cn": "在线Rx会话数", "en": "SM.RxSessionMean"}', '在线Rx会话数', 'SM.RxSessionMean');
INSERT INTO "kpi_title" VALUES (214, 'PCF', 'PCF.08', '{"cn": "PCRF策略控制发起成功次数", "en": "DIAM.CcInitialSuccess"}', 'PCRF策略控制发起成功次数', 'DIAM.CcInitialSuccess');
INSERT INTO "kpi_title" VALUES (215, 'PCF', 'PCF.09', '{"cn": "PCRF策略控制发起请求次数", "en": "DIAM.CcInitialRequest"}', 'PCRF策略控制发起请求次数', 'DIAM.CcInitialRequest');
INSERT INTO "kpi_title" VALUES (216, 'PCF', 'PCF.10', '{"cn": "应用会话授权成功次数", "en": "DIAM.AuthSucc"}', '应用会话授权成功次数', 'DIAM.AuthSucc');
INSERT INTO "kpi_title" VALUES (217, 'PCF', 'PCF.11', '{"cn": "应用会话授权尝试次数", "en": "DIAM.AuthRequest"}', '应用会话授权尝试次数', 'DIAM.AuthRequest');
INSERT INTO "kpi_title" VALUES (218, 'PCF', 'PCF.12', '{"cn": "PCRF策略控制更新成功次数", "en": "DIAM.CcUpdateSuccess"}', 'PCRF策略控制更新成功次数', 'DIAM.CcUpdateSuccess');
INSERT INTO "kpi_title" VALUES (219, 'PCF', 'PCF.13', '{"cn": "PCRF策略控制更新请求次数", "en": "DIAM.CcUpdateRequest"}', 'PCRF策略控制更新请求次数', 'DIAM.CcUpdateRequest');
INSERT INTO "kpi_title" VALUES (220, 'SMSC', 'SMSC.A.01', '{"cn": "MS到SMSC短信请求次数", "en": "SMSC.MStoSMSCAtt"}', 'MS到SMSC短信请求次数', 'SMSC.MStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (221, 'SMSC', 'SMSC.A.02', '{"cn": "MS到SMSC短信成功次数", "en": "SMSC.MStoSMSCSucc"}', 'MS到SMSC短信成功次数', 'SMSC.MStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (222, 'SMSC', 'SMSC.A.03', '{"cn": "MS到SMSC短信失败次数", "en": "SMSC.MStoSMSCFail"}', 'MS到SMSC短信失败次数', 'SMSC.MStoSMSCFail');
INSERT INTO "kpi_title" VALUES (223, 'SMSC', 'SMSC.A.04', '{"cn": "MS到SMSC短信字节数", "en": "SMSC.MStoSMSCBytes"}', 'MS到SMSC短信字节', 'SMSC.MStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (224, 'SMSC', 'SMSC.A.05', '{"cn": "VSS到SMSC短信请求次数", "en": "SMSC.VSStoSMSCAtt"}', 'VSS到SMSC短信请求次', 'SMSC.VSStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (225, 'SMSC', 'SMSC.A.06', '{"cn": "VSS到SMSC短信成功次数", "en": "SMSC.VSStoSMSCSucc"}', 'VSS到SMSC短信成功次数', 'SMSC.VSStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (226, 'SMSC', 'SMSC.A.07', '{"cn": "VSS到SMSC短信失败次数", "en": "SMSC.VSStoSMSCFail"}', 'VSS到SMSC短信失败次数', 'SMSC.VSStoSMSCFail');
INSERT INTO "kpi_title" VALUES (227, 'SMSC', 'SMSC.A.08', '{"cn": "VSS到SMSC短信字节数", "en": "SMSC.VSStoSMSCBytes"}', 'VSS到SMSC短信字节', 'SMSC.VSStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (228, 'SMSC', 'SMSC.A.09', '{"cn": "PPS到SMSC短信请求次数", "en": "SMSC.PPStoSMSCAtt"}', 'PPS到SMSC短信请求次', 'SMSC.PPStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (229, 'SMSC', 'SMSC.A.10', '{"cn": "PPS到SMSC短信成功次数", "en": "SMSC.PPStoSMSCSucc"}', 'PPS到SMSC短信成功次数', 'SMSC.PPStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (230, 'SMSC', 'SMSC.A.11', '{"cn": "PPS到SMSC短信失败次数", "en": "SMSC.PPStoSMSCFail"}', 'PPS到SMSC短信失败次数', 'SMSC.PPStoSMSCFail');
INSERT INTO "kpi_title" VALUES (231, 'SMSC', 'SMSC.A.12', '{"cn": "PPS到SMSC短信字节数", "en": "SMSC.PPStoSMSCBytes"}', 'PPS到SMSC短信字节', 'SMSC.PPStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (232, 'SMSC', 'SMSC.A.13', '{"cn": "SMPP到SMSC短信请求次数", "en": "SMSC.SMPPtoSMSCAtt"}', 'SMPP到SMSC短信请求次', 'SMSC.SMPPtoSMSCAtt');
INSERT INTO "kpi_title" VALUES (233, 'SMSC', 'SMSC.A.14', '{"cn": "SMPP到SMSC短信成功次数", "en": "SMSC.SMPPtoSMSCSucc"}', 'SMPP到SMSC短信成功次数', 'SMSC.SMPPtoSMSCSucc');
INSERT INTO "kpi_title" VALUES (234, 'SMSC', 'SMSC.A.15', '{"cn": "SMPP到SMSC短信失败次数", "en": "SMSC.SMPPtoSMSCFail"}', 'SMPP到SMSC短信失败次数', 'SMSC.SMPPtoSMSCFail');
INSERT INTO "kpi_title" VALUES (235, 'SMSC', 'SMSC.A.16', '{"cn": "SMPP到SMSC短信字节数", "en": "SMSC.SMPPtoSMSCBytes"}', 'SMPP到SMSC短信字节', 'SMSC.SMPPtoSMSCBytes');
INSERT INTO "kpi_title" VALUES (236, 'SMSC', 'SMSC.A.17', '{"cn": "SMSC到MS短信请求次数", "en": "SMSC.SMSCtoMSAtt"}', 'SMSC到MS短信请求次', 'SMSC.SMSCtoMSAtt');
INSERT INTO "kpi_title" VALUES (237, 'SMSC', 'SMSC.A.18', '{"cn": "SMSC到MS短信成功次数", "en": "SMSC.SMSCtoMSSucc"}', 'SMSC到MS短信成功次数', 'SMSC.SMSCtoMSSucc');
INSERT INTO "kpi_title" VALUES (238, 'SMSC', 'SMSC.A.19', '{"cn": "SMSC到MS短信失败次数", "en": "SMSC.SMSCtoMSFail"}', 'SMSC到MS短信失败次数', 'SMSC.SMSCtoMSFail');
INSERT INTO "kpi_title" VALUES (239, 'SMSC', 'SMSC.A.20', '{"cn": "SMSC到MS短信字节数", "en": "SMSC.SMSCtoMSBytes"}', 'SMSC到MS短信字节', 'SMSC.SMSCtoMSBytes');
INSERT INTO "kpi_title" VALUES (240, 'SMSC', 'SMSC.A.21', '{"cn": "SMSC到VSS短信请求次数", "en": "SMSC.SMSCtoVSSAtt"}', 'SMSC到VSS短信请求次', 'SMSC.SMSCtoVSSAtt');
INSERT INTO "kpi_title" VALUES (241, 'SMSC', 'SMSC.A.22', '{"cn": "SMSC到VSS短信成功次数", "en": "SMSC.SMSCtoVSSucc"}', 'SMSC到VSS短信成功次数', 'SMSC.SMSCtoVSSucc');
INSERT INTO "kpi_title" VALUES (242, 'SMSC', 'SMSC.A.23', '{"cn": "SMSC到VSS短信失败次数", "en": "SMSC.SMSCtoVSSFail"}', 'SMSC到VSS短信失败次数', 'SMSC.SMSCtoVSSFail');
INSERT INTO "kpi_title" VALUES (243, 'SMSC', 'SMSC.A.24', '{"cn": "SMSC到VSS短信字节数", "en": "SMSC.SMSCtoVSSBytes"}', 'SMSC到VSS短信字节', 'SMSC.SMSCtoVSSBytes');
INSERT INTO "kpi_title" VALUES (244, 'SMSC', 'SMSC.A.25', '{"cn": "SMSC到PPS短信请求次数", "en": "SMSC.SMSCtoPPSAtt"}', 'SMSC到PPS短信请求次', 'SMSC.SMSCtoPPSAtt');
INSERT INTO "kpi_title" VALUES (245, 'SMSC', 'SMSC.A.26', '{"cn": "SMSC到PPS短信成功次数", "en": "SMSC.SMSCtoPPSucc"}', 'SMSC到PPS短信成功次数', 'SMSC.SMSCtoPPSucc');
INSERT INTO "kpi_title" VALUES (246, 'SMSC', 'SMSC.A.27', '{"cn": "SMSC到PPS短信失败次数", "en": "SMSC.SMSCtoPPSFail"}', 'SMSC到PPS短信失败次数', 'SMSC.SMSCtoPPSFail');
INSERT INTO "kpi_title" VALUES (247, 'SMSC', 'SMSC.A.28', '{"cn": "SMSC到PPS短信字节数", "en": "SMSC.SMSCtoPPSBytes"}', 'SMSC到PPS短信字节', 'SMSC.SMSCtoPPSBytes');
INSERT INTO "kpi_title" VALUES (248, 'SMSC', 'SMSC.A.29', '{"cn": "SMSC到SMPP短信请求次数", "en": "SMSC.SMSCtoSMPPAtt"}', 'SMSC到SMPP短信请求次', 'SMSC.SMSCtoSMPPAtt');
INSERT INTO "kpi_title" VALUES (249, 'SMSC', 'SMSC.A.30', '{"cn": "SMSC到SMPP短信成功次数", "en": "SMSC.SMSCtoSMPPucc"}', 'SMSC到SMPP短信成功次数', 'SMSC.SMSCtoSMPPucc');
INSERT INTO "kpi_title" VALUES (250, 'SMSC', 'SMSC.A.31', '{"cn": "SMSC到SMPP短信失败次数", "en": "SMSC.SMSCtoSMPPFail"}', 'SMSC到SMPP短信失败次数', 'SMSC.SMSCtoSMPPFail');
INSERT INTO "kpi_title" VALUES (251, 'SMSC', 'SMSC.A.32', '{"cn": "SMSC到SMPP短信字节数", "en": "SMSC.SMSCtoSMPPBytes"}', 'SMSC到SMPP短信字节', 'SMSC.SMSCtoSMPPBytes');
INSERT INTO "kpi_title" VALUES (252, 'CBC', 'CBC.A.01', '{"cn": "CBC 发起 Create Write 消息成功", "en": "WarningReqSucc"}', 'CBC 发起 Create Write 消息成功', 'WarningReqSucc');
INSERT INTO "kpi_title" VALUES (253, 'CBC', 'CBC.A.02', '{"cn": "CBC 发起 Create Write 消息失败", "en": "WarningReqFail"}', 'CBC 发起 Create Write 消息失败', 'WarningReqFail');
INSERT INTO "kpi_title" VALUES (254, 'CBC', 'CBC.A.03', '{"cn": "CBC 发起 Cancel Write 消息成功", "en": "WarningCancelSucc"}', 'CBC 发起 Cancel Write 消息成功', 'WarningCancelSucc');
INSERT INTO "kpi_title" VALUES (255, 'CBC', 'CBC.A.04', '{"cn": "CBC 发起 Cancel Write 消息失败", "en": "WarningCancelFail"}', 'CBC 发起 Cancel Write 消息失败', 'WarningCancelFail');
INSERT INTO "kpi_title" VALUES (256, 'HLR', 'HLR.A.001', NULL, '鉴权信息请求次数', 'AuthReqTotalNum');
INSERT INTO "kpi_title" VALUES (257, 'HLR', 'HLR.A.002', NULL, '鉴权信息请求成功次数', 'AuthSuccTotalNum');
INSERT INTO "kpi_title" VALUES (258, 'HLR', 'HLR.A.003', NULL, '鉴权请求失败:缺参数', 'AuthFailByMissPara');
INSERT INTO "kpi_title" VALUES (259, 'HLR', 'HLR.A.004', NULL, '鉴权请求失败:系统错误', 'AuthFailBySysFail');
INSERT INTO "kpi_title" VALUES (260, 'HLR', 'HLR.A.005', NULL, '鉴权请求失败:非期望的参数值', 'AuthFailByUnexptData');
INSERT INTO "kpi_title" VALUES (261, 'HLR', 'HLR.A.006', NULL, '鉴权请求失败:未知用户', 'AuthFailByUnknownUser');
INSERT INTO "kpi_title" VALUES (262, 'HLR', 'HLR.A.007', NULL, '鉴权失败报告次数', 'AuthFailReportTotalNum');
INSERT INTO "kpi_title" VALUES (263, 'HLR', 'HLR.A.008', NULL, '鉴权失败报告(错误的网络签名)次数', 'AuthFailReportByErrNetSign');
INSERT INTO "kpi_title" VALUES (264, 'HLR', 'HLR.A.009', NULL, '鉴权失败报告(错误的用户响应)次数', 'AuthFailReportByErrUserRsp');
INSERT INTO "kpi_title" VALUES (265, 'HLR', 'HLR.A.010', NULL, '登记请求次数', 'LuReqTotalNum');
INSERT INTO "kpi_title" VALUES (266, 'HLR', 'HLR.A.011', NULL, '登记成功次数', 'LuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (267, 'HLR', 'HLR.A.012', NULL, '登记失败:复制手机', 'LuFailByDuplicUnit');
INSERT INTO "kpi_title" VALUES (268, 'HLR', 'HLR.A.013', NULL, '登记失败无效ESN', 'LuFailByInvalidESN');
INSERT INTO "kpi_title" VALUES (269, 'HLR', 'HLR.A.014', NULL, '登记失败:缺鉴权参', 'LuFailByMissAuthPara');
INSERT INTO "kpi_title" VALUES (270, 'HLR', 'HLR.A.015', NULL, '登记失败:在这个MSC中不能使用', 'LuFailByMscNotAllow');
INSERT INTO "kpi_title" VALUES (271, 'HLR', 'HLR.A.016', NULL, '登记失败:终端类型不匹配', 'LuFailByUeTypeMismatch');
INSERT INTO "kpi_title" VALUES (272, 'HLR', 'HLR.A.017', NULL, '登记失败:未分配号码的手机', 'LuFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (273, 'HLR', 'HLR.A.018', NULL, '登记失败:不确定', 'LuFailByUnKnown');
INSERT INTO "kpi_title" VALUES (274, 'HLR', 'HLR.A.019', NULL, '注销登记次数', 'CancelLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (275, 'HLR', 'HLR.A.020', NULL, '注销登记成功次数', 'CancelLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (276, 'HLR', 'HLR.A.021', NULL, '注销失败:系统错误', 'CancelLuFailBySysFail');
INSERT INTO "kpi_title" VALUES (277, 'HLR', 'HLR.A.022', NULL, '注销失败:缺参', 'CancelLuFailByMissPara');
INSERT INTO "kpi_title" VALUES (278, 'HLR', 'HLR.A.023', NULL, '移动台去活次数', 'MsPurgeReqTotalNum');
INSERT INTO "kpi_title" VALUES (279, 'HLR', 'HLR.A.024', NULL, '移动台去活成功次数', 'MsPurgeSuccTotalNum');
INSERT INTO "kpi_title" VALUES (280, 'HLR', 'HLR.A.025', NULL, '移动台去活:系统错误', 'MsPurgeFailBySysFail');
INSERT INTO "kpi_title" VALUES (281, 'HLR', 'HLR.A.026', NULL, '移动台去活:非期望的参数值', 'MsPurgeFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (282, 'HLR', 'HLR.A.027', NULL, '移动台去活:未知用户', 'MsPurgeFailByUnknownUser');
INSERT INTO "kpi_title" VALUES (283, 'HLR', 'HLR.A.028', NULL, 'GPRS登记请求次数', 'GprsLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (284, 'HLR', 'HLR.A.029', NULL, 'GPRS登记请求成功次数', 'GprsLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (285, 'HLR', 'HLR.A.030', NULL, 'GPRS去登记次数', 'GprsPurgeReqTotalNum');
INSERT INTO "kpi_title" VALUES (286, 'HLR', 'HLR.A.031', NULL, 'GPRS登记成功次数', 'GprsPurgeSuccTotalNum');
INSERT INTO "kpi_title" VALUES (287, 'HLR', 'HLR.A.032', NULL, 'GPRS注销登记次数', 'GprsCancelLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (288, 'HLR', 'HLR.A.033', NULL, 'GPRS注销登记成功次数', 'GprsCancelLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (289, 'HLR', 'HLR.A.034', NULL, 'GPRS路由请求次数', 'GprsRoutInfoReqTotalNum');
INSERT INTO "kpi_title" VALUES (290, 'HLR', 'HLR.A.035', NULL, 'GPRS用户激活失败报告次数', 'GprsActiveFailReportTotalNum');
INSERT INTO "kpi_title" VALUES (291, 'HLR', 'HLR.A.036', NULL, 'GPRS用户激活失败报告成功次数', 'GprsActiveFailReportSuccTotalNum');
INSERT INTO "kpi_title" VALUES (292, 'HLR', 'HLR.A.037', NULL, 'GPRS用户激活失败报告失败:缺参', 'GprsActiveFailReportFailByMissPara');
INSERT INTO "kpi_title" VALUES (293, 'HLR', 'HLR.A.038', NULL, 'GPRS用户激活失败报告失败:系统错误', 'GprsActiveFailReportFailBySysFail');
INSERT INTO "kpi_title" VALUES (294, 'HLR', 'HLR.A.039', NULL, 'GPRS用户激活失败报告失败:非期望的参数值', 'GprsActiveFailReportFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (295, 'HLR', 'HLR.A.040', NULL, 'GPRS用户激活失败报告失败未知用户', 'GprsActiveFailReportFailByUnKnownUser');
INSERT INTO "kpi_title" VALUES (296, 'HLR', 'HLR.A.041', NULL, '发起CFU业务登记且激活次数', 'CfuActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (297, 'HLR', 'HLR.A.042', NULL, 'CFU业务登记且激活成功次数', 'CfuActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (298, 'HLR', 'HLR.A.043', NULL, 'CFU登记失败MS忙', 'CfuRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (299, 'HLR', 'HLR.A.044', NULL, 'CFU登记失败不允许将呼叫终接到MS', 'CfuRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (300, 'HLR', 'HLR.A.045', NULL, 'CFU登记失败MS去登记状态', 'CfuRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (301, 'HLR', 'HLR.A.046', NULL, 'CFU登记失败无寻呼响应', 'CfuRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (302, 'HLR', 'HLR.A.047', NULL, 'CFU登记失败系统错误', 'CfuRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (303, 'HLR', 'HLR.A.048', NULL, 'CFU登记失败未分配电话号码', 'CfuRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (304, 'HLR', 'HLR.A.049', NULL, 'CFU登记失败不可用', 'CfuRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (305, 'HLR', 'HLR.A.050', NULL, '发起CFU业务去活次数', 'CfuDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (306, 'HLR', 'HLR.A.051', NULL, 'CFU业务去活成功次数', 'CfuDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (307, 'HLR', 'HLR.A.052', NULL, 'CFU去活失败:MS忙', 'CfuDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (308, 'HLR', 'HLR.A.053', NULL, 'CFU去活失败不允许将呼叫终接到MS', 'CfuDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (309, 'HLR', 'HLR.A.054', NULL, 'CFU去活失败:未分配电话号码', 'CfuDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (310, 'HLR', 'HLR.A.055', NULL, 'CFU去活失败MS去登记状态', 'CfuDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (311, 'HLR', 'HLR.A.056', NULL, 'CFU去活失败无寻呼响应', 'CfuDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (312, 'HLR', 'HLR.A.057', NULL, 'CFU去活失败系统错误', 'CfuDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (313, 'HLR', 'HLR.A.058', NULL, 'CFU去活失败不可用', 'CfuDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (314, 'HLR', 'HLR.A.059', NULL, '发起CFB业务登记且激活次数', 'CfbActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (315, 'HLR', 'HLR.A.060', NULL, 'CFB业务登记且激活成功次数', 'CfbActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (316, 'HLR', 'HLR.A.061', NULL, 'CFB登记失败MS忙', 'CfbRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (317, 'HLR', 'HLR.A.062', NULL, 'CFB登记失败不允许将呼叫终接到MS', 'CfbRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (318, 'HLR', 'HLR.A.063', NULL, 'CFB登记失败MS去登记状态', 'CfbRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (319, 'HLR', 'HLR.A.064', NULL, 'CFB登记失败无寻呼响应', 'CfbRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (320, 'HLR', 'HLR.A.065', NULL, 'CFB登记失败系统错误', 'CfbRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (321, 'HLR', 'HLR.A.066', NULL, 'CFB登记失败未分配电话号码', 'CfbRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (322, 'HLR', 'HLR.A.067', NULL, 'CFB登记失败不可用', 'CfbRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (323, 'HLR', 'HLR.A.068', NULL, '发起CFB业务去活次数', 'CfbDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (324, 'HLR', 'HLR.A.069', NULL, 'CFB业务去活成功次数', 'CfbDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (325, 'HLR', 'HLR.A.070', NULL, 'CFB去活失败:MS忙', 'CfbDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (326, 'HLR', 'HLR.A.071', NULL, 'CFB去活失败不允许将呼叫终接到MS', 'CfbDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (327, 'HLR', 'HLR.A.072', NULL, 'CFB去活失败MS去登记状态', 'CfbDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (328, 'HLR', 'HLR.A.073', NULL, 'CFB去活失败无寻呼响应', 'CfbDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (329, 'HLR', 'HLR.A.074', NULL, 'CFB去活失败系统错误', 'CfbDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (330, 'HLR', 'HLR.A.075', NULL, 'CFB去活失败未分配电话号码', 'CfbDeActvFailByUnAssignMsisdn ');
INSERT INTO "kpi_title" VALUES (331, 'HLR', 'HLR.A.076', NULL, 'CFB去活失败不可用', 'CfbDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (332, 'HLR', 'HLR.A.077', NULL, '发起CFNRy业务登记且激活次数', 'CfnryActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (333, 'HLR', 'HLR.A.078', NULL, 'CFNRy业务登记且激活成功次数', 'CfnryActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (334, 'HLR', 'HLR.A.079', NULL, 'CFNRy登记失败MS忙', 'CfnryRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (335, 'HLR', 'HLR.A.080', NULL, 'CFNRy登记失败不允许将呼叫终接到MS', 'CfnryRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (336, 'HLR', 'HLR.A.081', NULL, 'CFNRy登记失败MS去登记状态', 'CfnryRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (337, 'HLR', 'HLR.A.082', NULL, 'CFNRy登记失败无寻呼响应', 'CfnryRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (338, 'HLR', 'HLR.A.083', NULL, 'CFNRy登记失败系统错误', 'CfnryRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (339, 'HLR', 'HLR.A.084', NULL, 'CFNRy登记失败未分配电话号码', 'CfnryRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (340, 'HLR', 'HLR.A.085', NULL, 'CFNRy登记失败不可用', 'CfnryRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (341, 'HLR', 'HLR.A.086', NULL, '发起CFNRy业务去活次数', 'CfnryDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (342, 'HLR', 'HLR.A.087', NULL, 'CFNRy业务去活成功次数', 'CfnryDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (343, 'HLR', 'HLR.A.088', NULL, 'CFNRy去活失败:MS忙', 'CfnryDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (344, 'HLR', 'HLR.A.089', NULL, 'CFNRy去活失败不允许将呼叫终接到MS', 'CfnryDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (345, 'HLR', 'HLR.A.090', NULL, 'CFNRy去活失败MS去登记状态', 'CfnryDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (346, 'HLR', 'HLR.A.091', NULL, 'CFNRy去活失败无寻呼响应', 'CfnryDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (347, 'HLR', 'HLR.A.092', NULL, 'CFNRy去活失败系统错误', 'CfnryDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (348, 'HLR', 'HLR.A.093', NULL, 'CFNRy去活失败未分配电话号码', 'CfnryDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (349, 'HLR', 'HLR.A.094', NULL, 'CFNRy去活失败不可用', 'CfnryDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (350, 'HLR', 'HLR.A.095', NULL, '发起CFNRc)业务登记且激活次数', 'CfnrcActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (351, 'HLR', 'HLR.A.096', NULL, '(CFNRc)业务登记且激活成功次数', 'CfnrcActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (352, 'HLR', 'HLR.A.097', NULL, '(CFNRc)登记失败MS忙', 'CfnrcRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (353, 'HLR', 'HLR.A.098', NULL, '(CFNRc)登记失败不允许将呼叫终接到MS', 'CfnrcRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (354, 'HLR', 'HLR.A.099', NULL, '(CFNRc)登记失败MS去登记状态', 'CfnrcRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (355, 'HLR', 'HLR.A.100', NULL, '(CFNRc)登记失败:无寻呼响应', 'CfnrcRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (356, 'HLR', 'HLR.A.101', NULL, '(CFNRc)登记失败:系统错误', 'CfnrcRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (357, 'HLR', 'HLR.A.102', NULL, '(CFNRc)登记失败:未分配电话号码', 'CfnrcRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (358, 'HLR', 'HLR.A.103', NULL, '(CFNRc)登记失败:不可用', 'CfnrcRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (359, 'HLR', 'HLR.A.104', NULL, '发起CFNRc)业务去活次数', 'CfnrcDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (360, 'HLR', 'HLR.A.105', NULL, 'CFNRc业务去活成功次数', 'CfnrcDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (361, 'HLR', 'HLR.A.106', NULL, 'CFNRc)去活失败:MS忙', 'CfnrcDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (362, 'HLR', 'HLR.A.107', NULL, 'CFNRc)去活失败不允许将呼叫终接到MS', 'CfnrcDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (363, 'HLR', 'HLR.A.108', NULL, 'CFNRc)去活失败MS去登记状态', 'CfnrcDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (364, 'HLR', 'HLR.A.109', NULL, 'CFNRc)去活失败:无寻呼响应', 'CfnrcDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (365, 'HLR', 'HLR.A.110', NULL, 'CFNRc)去活失败:系统错误', 'CfnrcDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (366, 'HLR', 'HLR.A.111', NULL, 'CFNRc)去活失败:未分配电话号码', 'CfnrcDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (367, 'HLR', 'HLR.A.112', NULL, 'CFNRc)去活失败:不可用', 'CfnrcDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (368, 'HLR', 'HLR.A.113', NULL, '发起CW业务激活次数', 'CwActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (369, 'HLR', 'HLR.A.114', NULL, 'CW业务激活成功次数', 'CwActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (370, 'HLR', 'HLR.A.115', NULL, 'CW激活失败:MS忙', 'CwActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (371, 'HLR', 'HLR.A.116', NULL, 'CW激活失败不允许将呼叫终接到MS', 'CwActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (372, 'HLR', 'HLR.A.117', NULL, 'CW激活失败MS去登记状态', 'CwActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (373, 'HLR', 'HLR.A.118', NULL, 'CW激活失败无寻呼响应', 'CwActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (374, 'HLR', 'HLR.A.119', NULL, 'CW激活失败系统错误', 'CwActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (375, 'HLR', 'HLR.A.120', NULL, 'CW激活失败未分配电话号码', 'CwActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (376, 'HLR', 'HLR.A.121', NULL, 'CW激活失败不可用', 'CwActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (377, 'HLR', 'HLR.A.122', NULL, '发起CW业务去活次数', 'CwDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (378, 'HLR', 'HLR.A.123', NULL, 'CW业务去活成功次数', 'CwDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (379, 'HLR', 'HLR.A.124', NULL, 'CW活失败:MS忙', 'CwDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (380, 'HLR', 'HLR.A.125', NULL, 'CW去活失败不允许将呼叫终接到MS', 'CwDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (381, 'HLR', 'HLR.A.126', NULL, 'CW去活失败MS去登记状态', 'CwDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (382, 'HLR', 'HLR.A.127', NULL, 'CW去活失败无寻呼响应', 'CwDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (383, 'HLR', 'HLR.A.128', NULL, 'CW去活失败系统错误', 'CwDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (384, 'HLR', 'HLR.A.129', NULL, 'CW去活失败未分配电话号码', 'CwDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (385, 'HLR', 'HLR.A.130', NULL, 'CW去活失败不可用', 'CwDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (386, 'HLR', 'HLR.A.131', NULL, '发起前转业务去活次数', 'CFDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (387, 'HLR', 'HLR.A.132', NULL, '前转业务去活成功次数', 'CFDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (388, 'HLR', 'HLR.A.133', NULL, '发起补充业务登记次数', 'SSRegReqTotalNum');
INSERT INTO "kpi_title" VALUES (389, 'HLR', 'HLR.A.134', NULL, '发起补充业务登记成功次数', 'SSRegSuccTotalNum');
INSERT INTO "kpi_title" VALUES (390, 'HLR', 'HLR.A.135', NULL, '获取路由尝试次数', 'RouteInfoReqTotalNum');
INSERT INTO "kpi_title" VALUES (391, 'HLR', 'HLR.A.136', NULL, '获取路由成功次数', 'RouteInfoSuccTotalNum');
INSERT INTO "kpi_title" VALUES (392, 'HLR', 'HLR.A.137', NULL, '获取路由尝试失败:缺席用户', 'RouteInfoFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (393, 'HLR', 'HLR.A.138', NULL, '获取路由尝试失败:未知用户', 'RouteInfoFailByUnknownSub');
INSERT INTO "kpi_title" VALUES (394, 'HLR', 'HLR.A.139', NULL, '获取路由尝试失败:系统错误', 'RouteInfoFailBySysFail');
INSERT INTO "kpi_title" VALUES (395, 'HLR', 'HLR.A.140', NULL, '获取路由尝试失败:终呼拒绝', 'RouteInfoFailByCalledReject');
INSERT INTO "kpi_title" VALUES (396, 'HLR', 'HLR.A.141', NULL, '获取路由尝试失败:缺参数', 'RouteInfoFailByDataMiss');
INSERT INTO "kpi_title" VALUES (397, 'HLR', 'HLR.A.142', NULL, '获取路由尝试失败:设备不支持', 'RouteInfoFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (398, 'HLR', 'HLR.A.143', NULL, '获取路由尝试失败:不支持路由优化', 'RouteInfoFailByORNotAllowed');
INSERT INTO "kpi_title" VALUES (399, 'HLR', 'HLR.A.144', NULL, 'SRI触发漫游号码请求失败:缺席用户', 'RouteNumberFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (400, 'HLR', 'HLR.A.145', NULL, 'SRI触发漫游号码请求失败缺参数', 'RouteNumberFailByDataMiss');
INSERT INTO "kpi_title" VALUES (401, 'HLR', 'HLR.A.146', NULL, 'SRI触发漫游号码请求失败:设备不支持', 'RouteNumberFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (402, 'HLR', 'HLR.A.147', NULL, 'SRI触发漫游号码请求失败无漫游号码分配', 'RouteNumberFailByNoAssign');
INSERT INTO "kpi_title" VALUES (403, 'HLR', 'HLR.A.148', NULL, 'SRI触发漫游号码请求失败不支持路由优化', 'RouteNumberFailByORNotAllowed');
INSERT INTO "kpi_title" VALUES (404, 'HLR', 'HLR.A.149', NULL, 'SRI触发漫游号码请求次数', 'RouteNumberReqTotalNum');
INSERT INTO "kpi_title" VALUES (405, 'HLR', 'HLR.A.150', NULL, 'SRI触发漫游号码请求失败系统错误', 'RouteNumberFailBySysFail');
INSERT INTO "kpi_title" VALUES (406, 'HLR', 'HLR.A.151', NULL, 'SRI触发漫游号码请求失败非期望的参数值', 'RouteNumberFailByUnexpData');
INSERT INTO "kpi_title" VALUES (407, 'HLR', 'HLR.A.152', NULL, 'SRI触发漫游号码请求成功次数', 'RouteNumberSuccTotalNum');
INSERT INTO "kpi_title" VALUES (408, 'HLR', 'HLR.A.153', NULL, '路由失败:呼叫闭锁', 'SMRouteFailByCallBarred');
INSERT INTO "kpi_title" VALUES (409, 'HLR', 'HLR.A.154', NULL, '路由失败:缺参数', 'SMRouteFailByDataMiss');
INSERT INTO "kpi_title" VALUES (410, 'HLR', 'HLR.A.155', NULL, '路由失败:设备不支持', 'SMRouteFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (411, 'HLR', 'HLR.A.156', NULL, '路由失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO "kpi_title" VALUES (412, 'HLR', 'HLR.A.157', NULL, '路由失败:非期望的参数', 'SMRouteFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (413, 'HLR', 'HLR.A.158', NULL, '路由失败:未知用户', 'SMRouteFailByUnknownSub');
INSERT INTO "kpi_title" VALUES (414, 'HLR', 'HLR.A.159', NULL, '终呼失败:非法用户', 'SMRouteFailByIllegalSub');
INSERT INTO "kpi_title" VALUES (415, 'HLR', 'HLR.A.160', NULL, '终呼失败:缺席用户', 'SMRouteFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (416, 'HLR', 'HLR.A.161', NULL, '终呼失败:终呼时用户', 'SMRouteFailByBusySub');
INSERT INTO "kpi_title" VALUES (417, 'HLR', 'HLR.A.162', NULL, '终呼失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO "kpi_title" VALUES (418, 'HLR', 'HLR.A.163', NULL, '终呼失败:不期望的参数值', 'SMRouteFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (419, 'HLR', 'HLR.A.164', NULL, '终呼失败:消息等待队列满', 'SMRouteFailByMsgQueueFull');
INSERT INTO "kpi_title" VALUES (420, 'HLR', 'HLR.A.165', NULL, '接收GSM MAP_ALERT消息次数', 'GsmAlertReqTotalNum');
INSERT INTO "kpi_title" VALUES (421, 'HLR', 'HLR.A.166', NULL, '接收GSM MAP_ALERT消息成功次数', 'GsmAlertSuccTotalNum');
INSERT INTO "kpi_title" VALUES (422, 'HLR', 'HLR.A.167', NULL, '重启指示发送次数', 'ResetReqTotalNum');
INSERT INTO "kpi_title" VALUES (423, 'HLR', 'HLR.A.168', NULL, '重启成功次数', 'ResetSuccTotalNum');
INSERT INTO "kpi_title" VALUES (424, 'HLR', 'HLR.A.169', NULL, '数据恢复请求次数', 'RestoreDataReqTotalNum');
INSERT INTO "kpi_title" VALUES (425, 'HLR', 'HLR.A.170', NULL, '数据恢复成功次数', 'RestoreDataReqSuccNum');
INSERT INTO "kpi_title" VALUES (426, 'HLR', 'HLR.A.171', NULL, 'C2G Boss开户成功次数', 'AddUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (427, 'HLR', 'HLR.A.172', NULL, 'C2G Boss销户成功次数', 'DelUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (428, 'HLR', 'HLR.A.173', NULL, 'C2G Boss修改用户成功次数', 'ModUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (429, 'HLR', 'HLR.A.174', NULL, 'C2G Boss开户请求次数', 'AddUserBossReqNum');
INSERT INTO "kpi_title" VALUES (430, 'HLR', 'HLR.A.175', NULL, 'C2G Boss受理失败返回IMSI not used次数', 'BossServFailByImsiNot');
INSERT INTO "kpi_title" VALUES (431, 'HLR', 'HLR.A.176', NULL, 'C2G Boss受理失败返回ISDN not used次数', 'BossServFailByIsdnNot');
INSERT INTO "kpi_title" VALUES (432, 'HLR', 'HLR.A.177', NULL, 'C2G Boss受理失败返回其他错误次数', 'BossServFailByOther');
INSERT INTO "kpi_title" VALUES (433, 'HLR', 'HLR.A.178', NULL, 'C2G Boss受理失败返回repeat IMSI次数', 'BossServFailByRepImsi');
INSERT INTO "kpi_title" VALUES (434, 'HLR', 'HLR.A.179', NULL, 'C2G Boss受理失败返回repeat ISDN次数', 'BossServFailByRepIsdn');
INSERT INTO "kpi_title" VALUES (435, 'HLR', 'HLR.A.180', NULL, 'C2G Boss销户请求次数', 'DelUserBossReqNum');
INSERT INTO "kpi_title" VALUES (436, 'HLR', 'HLR.A.181', NULL, 'C2G Boss修改用户请求次数', 'ModUserBossReqNum');

View File

@@ -1,75 +1,61 @@
/*
Navicat Premium Data Transfer
Source Server : local_mariadb
Source Server Type : MariaDB
Source Server Version : 100338 (10.3.38-MariaDB)
Source Host : localhost:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 14/05/2024 11:55:53
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for mml_command
-- ----------------------------
DROP TABLE IF EXISTS `mml_command`;
CREATE TABLE `mml_command` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ne_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`category` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cat_display` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`operation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`object` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`mml_display` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL,
`status` enum('Active','Inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'Active' COMMENT '激活: Active 未激活: Inactive',
PRIMARY KEY (`id`) USING BTREE,
INDEX `id`(`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1626 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS "mml_command";
CREATE TABLE "mml_command" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(64),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table mml_command
-- ----------------------------
CREATE INDEX "id"
ON "mml_command" (
"id" ASC
);
-- ----------------------------
-- Records of mml_command
-- ----------------------------
INSERT INTO `mml_command` VALUES (1593, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'neinfo', 'List NE Information', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"rm_uid\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Resource management UID\",\"filter\":\"\",\"name\":\"rmuid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1594, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'memap', 'List Managed Element Map', '[{\"alias\":\"rm_uid\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Resource management UID\",\"filter\":\"\",\"name\":\"rmuid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1595, 'OMC', 'neManagement', 'Network Element Management', 'add', 'neinfo', 'Add Network Element', '[{\"alias\":\"ne_type\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"rm_uid\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Resource management UID\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"rmuid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ip\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"IP address\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"port\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Port\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_name\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE name\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"nename\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"pv_flag\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"PV flag\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"pvflag\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1596, 'OMC', 'neManagement', 'Network Element Management', 'mod', 'neinfo', 'Modify Network Element', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"rm_uid\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Resource management UID\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"rmuid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ip\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"IP address\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"ip\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"port\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Port\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"port\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_name\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE name\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"nename\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"pv_flag\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"PV flag\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"pvflag\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1597, 'OMC', 'neManagement', 'Network Element Management', 'del', 'neinfo', 'Delete Network Element', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1598, 'OMC', 'neConfigManagement', 'NE Config Parameter Management', 'dsp', 'neconfig', 'Display NE Config Parameter', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE Type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"param_display\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Parameters Display\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"paramDisplay\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1599, 'OMC', 'faultManagement', 'Fault Management', 'dsp', 'alarm', 'Display Alarm Information', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE UID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_name\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE name\",\"filter\":\"\",\"name\":\"nename\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"alarm_code\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Alarm code\",\"filter\":\"\",\"name\":\"alarmcode\",\"optional\":\"true\",\"type\":\"int\"},{\"alias\":\"orig_severity\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Original severity\",\"filter\":\"{\\\"Critical\\\":\\\"Critical\\\",\\\"Major\\\":\\\"Major\\\",\\\"Minor\\\":\\\"Minor\\\",\\\"Warning\\\":\\\"Warning\\\",\\\"Event\\\":\\\"Event\\\"}\",\"name\":\"origseverity\",\"optional\":\"true\",\"type\":\"enum\"},{\"alias\":\"pv_flag\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"PV flag\",\"filter\":\"\",\"name\":\"pvflag\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"event_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Alarm event start time\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"event_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Alarm event end time\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"alarm_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Alarm type\",\"filter\":\"{\\\"CommunicationAlarm\\\":\\\"CommunicationAlarm\\\",\\\"EquipmentAlarm\\\":\\\"EquipmentAlarm\\\",\\\"ProcessingFailure\\\":\\\"ProcessingFailure\\\",\\\"EnvironmentalAlarm\\\":\\\"EnvironmentalAlarm\\\",\\\"QualityOfServiceAlarm\\\":\\\"QualityOfServiceAlarm\\\"}\",\"name\":\"alarmtype\",\"optional\":\"true\",\"type\":\"enum\"},{\"alias\":\"alarm_status\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Alarm status\",\"filter\":\"\",\"name\":\"alarmstatus\",\"optional\":\"true\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1600, 'OMC', 'systemCommand', 'Linux System Command', 'run', 'shell', 'Run Shell Command', '[{\"alias\":\"cmd\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Shell command\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"cmd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1601, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'licenseinfo', 'Display NE License Information', '[{\"alias\":\"neType\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"neId\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1602, 'OMC', 'licenseManagement', 'License Management', 'lst', 'license', 'List NE License Information', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1603, 'OMC', 'licenseManagement', 'License Management', 'dep', 'license', 'Deployment NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Source NE type\",\"filter\":\"\",\"name\":\"srcnetype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"comment\":\"\",\"display\":\"Source NE ID\",\"filter\":\"\",\"name\":\"srcneid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_type\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Destination NE type\",\"filter\":\"\",\"name\":\"dstnetype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"comment\":\"\",\"display\":\"Destination NE ID\",\"filter\":\"\",\"name\":\"dstneid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"dep_number\",\"comment\":\"\",\"display\":\"Deployment number\",\"filter\":\"\",\"name\":\"number\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1604, 'OMC', 'licenseManagement', 'License Management', 'rel', 'license', 'Batch Release NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"capcity\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Release number\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"capcity\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1605, 'OMC', 'licenseManagement', 'License Management', 'ins', 'license', 'Install NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"capcity\",\"comment\":\"\",\"display\":\"Install number\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"capcity\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1606, 'OMC', 'licenseManagement', 'License Management', 'adj', 'license', 'Adjustment NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"number\",\"comment\":\"\",\"display\":\"Adjustment number\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"number\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1607, 'OMC', 'licenseManagement', 'License Management', 'exp', 'license', 'Export NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1608, 'OMC', 'licenseManagement', 'License Management', 'uni', 'license', 'Uninstall NE License', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1609, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'nelink', 'Display NE Interface Link Status', '[{\"alias\":\"ne_type\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"interface\",\"comment\":\"\",\"display\":\"Interface\",\"filter\":\"\",\"name\":\"interface\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1610, 'OMC', 'nrmManagement', 'NBI Resources Management', 'dsp', 'nbicm', 'Display NBI Resources Management', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"rm_uid\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Resource management UID\",\"filter\":\"\",\"name\":\"rmuid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1611, 'OMC', 'neVersionManagement', 'NE Version Management', 'upg', 'neversion', 'Upgrade NE Software Version', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"version\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Version\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"version\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_command` VALUES (1612, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'lst', 'measuretask', 'List Performance Measure Task', '[{\"alias\":\"id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"granul_option\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Time granularity\",\"filter\":\"\",\"name\":\"granuloption\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1613, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'add', 'measuretask', 'Add Performance Measure Task', '[{\"alias\":\"ne_type\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"netype\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"ne_ids\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE ID set\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"neids\",\"optional\":\"false\",\"type\":\"array\"},{\"alias\":\"granul_option\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Granularity option\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"granuloption\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"kpi_set\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"KPI set\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"kpiset\",\"optional\":\"false\",\"type\":\"json\"},{\"alias\":\"start_time\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure task start time\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"starttime\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"end_time\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure task end time\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"endtime\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1614, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'mod', 'measuretask', 'Modify Performance Measure Task', '[{\"alias\":\"id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"false\",\"type\":\"string\"},{\"alias\":\"kpi_set\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"KPI set\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"kpiset\",\"optional\":\"true\",\"type\":\"json\"},{\"alias\":\"start_time\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure task start time\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"end_time\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure task end time\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"granul_option\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"granularity option\",\"filter\":\"\",\"loc\":\"false\",\"name\":\"granuloption\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1615, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'del', 'measuretask', 'Delete Performance Measure Task', '[{\"alias\":\"id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1616, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'act', 'measuretask', 'Active Performance Measure Task', '[{\"alias\":\"id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1617, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'dea', 'measuretask', 'Deactive Performance Measure Task', '[{\"alias\":\"id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1618, 'OMC', 'pmDataManagement', 'Performance Data Management', 'lst', 'measuredata', 'List Performance Data', '[{\"alias\":\"task_id\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Task ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"id\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"kpi_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"KPI ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"kpiid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"start_time\\u003e\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure period start time(\\u003e=)\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"start_time\\u003c\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"Measure period start time(\\u003c=)\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1619, 'OMC', 'logManagement', 'Log Management', 'lst', 'systemlog', 'List System Log', '[{\"alias\":\"process_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Process type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"processtype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time more than\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time less than\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1620, 'OMC', 'logManagement', 'Log Management', 'lst', 'operationlog', 'List Operation Log', '[{\"alias\":\"account_name\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Account ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"accountid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time more than\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log Time Less Than\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1621, 'OMC', 'logManagement', 'Log Management', 'lst', 'securitylog', 'List Security Log', '[{\"alias\":\"account_name\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Account ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"accountid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"op_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time more than\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"op_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time less than\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1622, 'OMC', 'logManagement', 'Log Management', 'lst', 'alarmlog', 'List Alarm Log', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time(\\u003e=)\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time less than\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1623, 'OMC', 'logManagement', 'Log Management', 'lst', 'eventlog', 'List NE Event Log', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"ne_id\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"loc\":\"true\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003e\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time(\\u003e=)\",\"filter\":\"\",\"name\":\"starttime\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"log_time\\u003c\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Log time(\\u003c=)\",\"filter\":\"\",\"name\":\"endtime\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1624, 'OMC', 'mmlManagement', 'MML Management', 'lst', 'mmlcmd', 'List MML Command', '[{\"alias\":\"ne_type\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Category\",\"filter\":\"\",\"name\":\"category\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"operation\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Operation\",\"filter\":\"\",\"name\":\"operation\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"object\",\"apostr\":\"true\",\"comment\":\"\",\"display\":\"Object\",\"filter\":\"\",\"name\":\"object\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_command` VALUES (1625, 'OMC', 'systemManagement', 'System Management', 'dsp', 'sysinfo', 'Display NE System Information', '[{\"alias\":\"neType\",\"apostr\":\"false\",\"comment\":\"\",\"display\":\"NE type\",\"filter\":\"\",\"name\":\"netype\",\"optional\":\"true\",\"type\":\"string\"},{\"alias\":\"neId\",\"comment\":\"\",\"display\":\"NE ID\",\"filter\":\"\",\"name\":\"neid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO "mml_command" VALUES (1593, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'neinfo', 'List NE Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1594, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'memap', 'List Managed Element Map', '[{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1595, 'OMC', 'neManagement', 'Network Element Management', 'add', 'neinfo', 'Add Network Element', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","loc":"false","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"false","comment":"","display":"NE ID","filter":"","loc":"false","name":"neid","optional":"false","type":"string"},{"alias":"rm_uid","apostr":"false","comment":"","display":"Resource management UID","filter":"","loc":"false","name":"rmuid","optional":"false","type":"string"},{"alias":"ip","apostr":"false","comment":"","display":"IP address","filter":"","loc":"false","name":"ip","optional":"false","type":"string"},{"alias":"port","apostr":"false","comment":"","display":"Port","filter":"","loc":"false","name":"port","optional":"false","type":"string"},{"alias":"ne_name","apostr":"false","comment":"","display":"NE name","filter":"","loc":"false","name":"nename","optional":"false","type":"string"},{"alias":"pv_flag","apostr":"false","comment":"","display":"PV flag","filter":"","loc":"false","name":"pvflag","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1596, 'OMC', 'neManagement', 'Network Element Management', 'mod', 'neinfo', 'Modify Network Element', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"rm_uid","apostr":"false","comment":"","display":"Resource management UID","filter":"","loc":"false","name":"rmuid","optional":"true","type":"string"},{"alias":"ip","apostr":"false","comment":"","display":"IP address","filter":"","loc":"false","name":"ip","optional":"true","type":"string"},{"alias":"port","apostr":"false","comment":"","display":"Port","filter":"","loc":"false","name":"port","optional":"true","type":"string"},{"alias":"ne_name","apostr":"false","comment":"","display":"NE name","filter":"","loc":"false","name":"nename","optional":"true","type":"string"},{"alias":"pv_flag","apostr":"false","comment":"","display":"PV flag","filter":"","loc":"false","name":"pvflag","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1597, 'OMC', 'neManagement', 'Network Element Management', 'del', 'neinfo', 'Delete Network Element', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1598, 'OMC', 'neConfigManagement', 'NE Config Parameter Management', 'dsp', 'neconfig', 'Display NE Config Parameter', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE Type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"param_display","apostr":"true","comment":"","display":"Parameters Display","filter":"","loc":"true","name":"paramDisplay","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1599, 'OMC', 'faultManagement', 'Fault Management', 'dsp', 'alarm', 'Display Alarm Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE UID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"ne_name","apostr":"true","comment":"","display":"NE name","filter":"","name":"nename","optional":"true","type":"string"},{"alias":"alarm_code","apostr":"true","comment":"","display":"Alarm code","filter":"","name":"alarmcode","optional":"true","type":"int"},{"alias":"orig_severity","apostr":"true","comment":"","display":"Original severity","filter":"{\"Critical\":\"Critical\",\"Major\":\"Major\",\"Minor\":\"Minor\",\"Warning\":\"Warning\",\"Event\":\"Event\"}","name":"origseverity","optional":"true","type":"enum"},{"alias":"pv_flag","apostr":"true","comment":"","display":"PV flag","filter":"","name":"pvflag","optional":"true","type":"string"},{"alias":"event_time\u003e","apostr":"true","comment":"","display":"Alarm event start time","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"event_time\u003c","apostr":"true","comment":"","display":"Alarm event end time","filter":"","name":"endtime","optional":"true","type":"string"},{"alias":"alarm_type","apostr":"true","comment":"","display":"Alarm type","filter":"{\"CommunicationAlarm\":\"CommunicationAlarm\",\"EquipmentAlarm\":\"EquipmentAlarm\",\"ProcessingFailure\":\"ProcessingFailure\",\"EnvironmentalAlarm\":\"EnvironmentalAlarm\",\"QualityOfServiceAlarm\":\"QualityOfServiceAlarm\"}","name":"alarmtype","optional":"true","type":"enum"},{"alias":"alarm_status","apostr":"true","comment":"","display":"Alarm status","filter":"","name":"alarmstatus","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_command" VALUES (1600, 'OMC', 'systemCommand', 'Linux System Command', 'run', 'shell', 'Run Shell Command', '[{"alias":"cmd","apostr":"true","comment":"","display":"Shell command","filter":"","loc":"false","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1601, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'licenseinfo', 'Display NE License Information', '[{"alias":"neType","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"neId","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1602, 'OMC', 'licenseManagement', 'License Management', 'lst', 'license', 'List NE License Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1603, 'OMC', 'licenseManagement', 'License Management', 'dep', 'license', 'Deployment NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"Source NE type","filter":"","name":"srcnetype","optional":"false","type":"string"},{"alias":"ne_id","comment":"","display":"Source NE ID","filter":"","name":"srcneid","optional":"false","type":"string"},{"alias":"ne_type","apostr":"false","comment":"","display":"Destination NE type","filter":"","name":"dstnetype","optional":"false","type":"string"},{"alias":"ne_id","comment":"","display":"Destination NE ID","filter":"","name":"dstneid","optional":"false","type":"string"},{"alias":"dep_number","comment":"","display":"Deployment number","filter":"","name":"number","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1604, 'OMC', 'licenseManagement', 'License Management', 'rel', 'license', 'Batch Release NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"capcity","apostr":"false","comment":"","display":"Release number","filter":"","loc":"false","name":"capcity","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1605, 'OMC', 'licenseManagement', 'License Management', 'ins', 'license', 'Install NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"capcity","comment":"","display":"Install number","filter":"","loc":"false","name":"capcity","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1606, 'OMC', 'licenseManagement', 'License Management', 'adj', 'license', 'Adjustment NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"number","comment":"","display":"Adjustment number","filter":"","loc":"false","name":"number","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1607, 'OMC', 'licenseManagement', 'License Management', 'exp', 'license', 'Export NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1608, 'OMC', 'licenseManagement', 'License Management', 'uni', 'license', 'Uninstall NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1609, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'nelink', 'Display NE Interface Link Status', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"interface","comment":"","display":"Interface","filter":"","name":"interface","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1610, 'OMC', 'nrmManagement', 'NBI Resources Management', 'dsp', 'nbicm', 'Display NBI Resources Management', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1611, 'OMC', 'neVersionManagement', 'NE Version Management', 'upg', 'neversion', 'Upgrade NE Software Version', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"version","apostr":"true","comment":"","display":"Version","filter":"","loc":"true","name":"version","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1612, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'lst', 'measuretask', 'List Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"true","type":"string"},{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"granul_option","apostr":"true","comment":"","display":"Time granularity","filter":"","name":"granuloption","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1613, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'add', 'measuretask', 'Add Performance Measure Task', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","loc":"false","name":"netype","optional":"false","type":"string"},{"alias":"ne_ids","apostr":"false","comment":"","display":"NE ID set","filter":"","loc":"false","name":"neids","optional":"false","type":"array"},{"alias":"granul_option","apostr":"false","comment":"","display":"Granularity option","filter":"","loc":"false","name":"granuloption","optional":"false","type":"string"},{"alias":"kpi_set","apostr":"false","comment":"","display":"KPI set","filter":"","loc":"false","name":"kpiset","optional":"false","type":"json"},{"alias":"start_time","apostr":"false","comment":"","display":"Measure task start time","filter":"","loc":"false","name":"starttime","optional":"false","type":"string"},{"alias":"end_time","apostr":"false","comment":"","display":"Measure task end time","filter":"","loc":"false","name":"endtime","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1614, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'mod', 'measuretask', 'Modify Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"},{"alias":"kpi_set","apostr":"false","comment":"","display":"KPI set","filter":"","loc":"false","name":"kpiset","optional":"true","type":"json"},{"alias":"start_time","apostr":"false","comment":"","display":"Measure task start time","filter":"","loc":"false","name":"starttime","optional":"true","type":"string"},{"alias":"end_time","apostr":"false","comment":"","display":"Measure task end time","filter":"","loc":"false","name":"endtime","optional":"true","type":"string"},{"alias":"granul_option","apostr":"false","comment":"","display":"granularity option","filter":"","loc":"false","name":"granuloption","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1615, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'del', 'measuretask', 'Delete Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1616, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'act', 'measuretask', 'Active Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1617, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'dea', 'measuretask', 'Deactive Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1618, 'OMC', 'pmDataManagement', 'Performance Data Management', 'lst', 'measuredata', 'List Performance Data', '[{"alias":"task_id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"true","type":"string"},{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"kpi_id","apostr":"true","comment":"","display":"KPI ID","filter":"","loc":"true","name":"kpiid","optional":"true","type":"string"},{"alias":"start_time\u003e","apostr":"false","comment":"","display":"Measure period start time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"start_time\u003c","apostr":"false","comment":"","display":"Measure period start time(\u003c=)","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1619, 'OMC', 'logManagement', 'Log Management', 'lst', 'systemlog', 'List System Log', '[{"alias":"process_type","apostr":"true","comment":"","display":"Process type","filter":"","loc":"true","name":"processtype","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1620, 'OMC', 'logManagement', 'Log Management', 'lst', 'operationlog', 'List Operation Log', '[{"alias":"account_name","apostr":"true","comment":"","display":"Account ID","filter":"","loc":"true","name":"accountid","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log Time Less Than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1621, 'OMC', 'logManagement', 'Log Management', 'lst', 'securitylog', 'List Security Log', '[{"alias":"account_name","apostr":"true","comment":"","display":"Account ID","filter":"","loc":"true","name":"accountid","optional":"true","type":"string"},{"alias":"op_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"op_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1622, 'OMC', 'logManagement', 'Log Management', 'lst', 'alarmlog', 'List Alarm Log', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1623, 'OMC', 'logManagement', 'Log Management', 'lst', 'eventlog', 'List NE Event Log', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time(\u003c=)","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1624, 'OMC', 'mmlManagement', 'MML Management', 'lst', 'mmlcmd', 'List MML Command', '[{"alias":"ne_type","apostr":"true","comment":"","display":"Category","filter":"","name":"category","optional":"true","type":"string"},{"alias":"operation","apostr":"true","comment":"","display":"Operation","filter":"","name":"operation","optional":"true","type":"string"},{"alias":"object","apostr":"true","comment":"","display":"Object","filter":"","name":"object","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1625, 'OMC', 'systemManagement', 'System Management', 'dsp', 'sysinfo', 'Display NE System Information', '[{"alias":"neType","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"neId","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Active');

View File

@@ -1,60 +1,39 @@
/*
Navicat Premium Data Transfer
Source Server : local_mariadb
Source Server Type : MariaDB
Source Server Version : 100338 (10.3.38-MariaDB)
Source Host : localhost:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 14/05/2024 11:56:10
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for mml_subscriber
-- ----------------------------
DROP TABLE IF EXISTS `mml_subscriber`;
CREATE TABLE `mml_subscriber` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ne_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`category` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cat_display` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`operation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`object` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`mml_display` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`param_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL,
`status` enum('Active','Inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'Active' COMMENT '激活: Active 未激活: Inactive',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 609 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS "mml_subscriber";
CREATE TABLE "mml_subscriber" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(128),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of mml_subscriber
-- ----------------------------
INSERT INTO `mml_subscriber` VALUES (590, 'UDM', 'authdataManagement', 'Authentication Data Management', 'dsp', 'authdat', 'Display Auth Data', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (591, 'UDM', 'authdataManagement', 'Authentication Data Management', 'add', 'authdat', 'Add Auth Data', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"KI\",\"filter\":\"\",\"name\":\"ki\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"AMF\",\"filter\":\"\",\"name\":\"amf\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Algo Index\",\"filter\":\"0~15\",\"name\":\"algo\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"OPC\",\"filter\":\"\",\"name\":\"opc\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (592, 'UDM', 'authdataManagement', 'Authentication Data Management', 'del', 'authdat', 'Delete Auth Data', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (593, 'UDM', 'authdataManagement', 'Authentication Data Management', 'baa', 'authdat', 'Batch Add Auth Data', '[{\"comment\":\"\",\"display\":\"Starting IMSI\",\"filter\":\"\",\"name\":\"start_imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Auth Data Number\",\"filter\":\"\",\"name\":\"sub_num\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"KI\",\"filter\":\"\",\"name\":\"ki\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"AMF\",\"filter\":\"\",\"name\":\"amf\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Algo Index\",\"filter\":\"0~15\",\"name\":\"algo\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"OPC\",\"filter\":\"\",\"name\":\"opc\",\"optional\":\"true\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (594, 'UDM', 'authdataManagement', 'Authentication Data Management', 'bde', 'authdat', 'Batch Delete Auth Data', '[{\"comment\":\"\",\"display\":\"Starting IMSI\",\"filter\":\"\",\"name\":\"start_imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Auth Data Number\",\"filter\":\"\",\"name\":\"sub_num\",\"optional\":\"false\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (595, 'UDM', 'authdataManagement', 'Authentication Data Management', 'import', 'authdat', 'Import Auth Data From File', '[{\"comment\":\"\",\"display\":\"Path File\",\"filter\":\".txt\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"file\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (596, 'UDM', 'authdataManagement', 'Authentication Data Management', 'export', 'authdat', 'Export Auth Data to File', '[{\"comment\":\"\",\"display\":\"Path File\",\"filter\":\"\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (597, 'UDM', 'subscriberManagement', 'Subcriber Management', 'dsp', 'udmuser', 'Display UDM Subscriber', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (598, 'UDM', 'subscriberManagement', 'Subcriber Management', 'add', 'udmuser', 'Add UDM Subscriber', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"MSISDN\",\"filter\":\"\",\"name\":\"msisdn\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G UE AMBR\",\"filter\":\"\",\"name\":\"ambr\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SNSSAIs\",\"filter\":\"\",\"name\":\"nssai\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Forbidden Areas\",\"filter\":\"\",\"name\":\"arfb\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Service Area Restriction\",\"filter\":\"\",\"name\":\"sar\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"RAT Type\",\"filter\":\"\",\"name\":\"rat\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Core Network\",\"filter\":\"\",\"name\":\"cn\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SMF Selection Data\",\"filter\":\"\",\"name\":\"smf_sel\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SM Data\",\"filter\":\"\",\"name\":\"sm_data\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"Specify mobile phone static IP address, and \'-\' indicates the use of dynamic IP address\",\"display\":\"4G Static IP\",\"filter\":\"\",\"name\":\"static_ip\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G Context ID\",\"filter\":\"\",\"name\":\"context_id\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G APN Context\",\"filter\":\"\",\"name\":\"apn_context\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G EPS User Template Name\",\"filter\":\"\",\"name\":\"epstpl\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G EPS Flag\",\"filter\":\"{\\\"0\\\":\\\"Disable\\\", \\\"1\\\":\\\"Enable\\\"}\",\"name\":\"eps_flag\",\"optional\":\"true\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"4G EPS ODB\",\"filter\":\"\",\"name\":\"eps_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G HPLMN ODB\",\"filter\":\"\",\"name\":\"hplmn_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G Access Restriction Data\",\"filter\":\"\",\"name\":\"ard\",\"optional\":\"true\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (599, 'UDM', 'subscriberManagement', 'Subcriber Management', 'del', 'udmuser', 'Delete Subscriber Data', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (600, 'UDM', 'subscriberManagement', 'Subcriber Management', 'mod', 'udmuser', 'Modify Subscriber Data', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"MSISDN\",\"filter\":\"\",\"name\":\"msisdn\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G UE AMBR\",\"filter\":\"\",\"name\":\"ambr\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SNSSAIs\",\"filter\":\"\",\"name\":\"nssai\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Forbidden Areas\",\"filter\":\"\",\"name\":\"arfb\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Service Area Restriction\",\"filter\":\"\",\"name\":\"sar\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"RAT Type\",\"filter\":\"\",\"name\":\"rat\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Core Network\",\"filter\":\"\",\"name\":\"cn\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SMF Selection Data\",\"filter\":\"\",\"name\":\"smf_sel\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SM Data\",\"filter\":\"\",\"name\":\"sm_data\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"Specify mobile phone static IP address, and \'-\' indicates the use of dynamic IP address\",\"display\":\"4G Static IP\",\"filter\":\"\",\"name\":\"static_ip\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G Context ID\",\"filter\":\"\",\"name\":\"context_id\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G APN Context\",\"filter\":\"\",\"name\":\"apn_context\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G EPS User Template Name\",\"filter\":\"\",\"name\":\"epstpl\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G EPS Flag\",\"filter\":\"{\\\"0\\\":\\\"Disable\\\", \\\"1\\\":\\\"Enable\\\"}\",\"name\":\"eps_flag\",\"optional\":\"true\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"4G EPS ODB\",\"filter\":\"\",\"name\":\"eps_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G HPLMN ODB\",\"filter\":\"\",\"name\":\"hplmn_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G Access Restriction Data\",\"filter\":\"\",\"name\":\"ard\",\"optional\":\"true\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (601, 'UDM', 'subscriberManagement', 'Subcriber Management', 'baa', 'udmuser', 'Batch Add UDM Subscriber', '[{\"comment\":\"\",\"display\":\"Starting IMSI\",\"filter\":\"\",\"name\":\"start_imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Starting MSISDN\",\"filter\":\"\",\"name\":\"start_msisdn\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Subscriber Number\",\"filter\":\"\",\"name\":\"sub_num\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"5G UE AMBR\",\"filter\":\"\",\"name\":\"ambr\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SNSSAIs\",\"filter\":\"\",\"name\":\"nssai\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Forbidden Areas\",\"filter\":\"\",\"name\":\"arfb\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Service Area Restriction\",\"filter\":\"\",\"name\":\"sar\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"RAT Type\",\"filter\":\"\",\"name\":\"rat\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Core Network\",\"filter\":\"\",\"name\":\"cn\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SMF Selection Data\",\"filter\":\"\",\"name\":\"smf_sel\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SM Data\",\"filter\":\"\",\"name\":\"sm_data\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"Specify mobile phone static IP address, and \'-\' indicates the use of dynamic IP address\",\"display\":\"4G Static IP\",\"filter\":\"\",\"name\":\"static_ip\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G Context ID\",\"filter\":\"\",\"name\":\"context_id\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G APN Context\",\"filter\":\"\",\"name\":\"apn_context\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G EPS User Template Name\",\"filter\":\"\",\"name\":\"epstpl\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G EPS Flag\",\"filter\":\"{\\\"0\\\":\\\"Disable\\\", \\\"1\\\":\\\"Enable\\\"}\",\"name\":\"eps_flag\",\"optional\":\"true\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"4G EPS ODB\",\"filter\":\"\",\"name\":\"eps_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G HPLMN ODB\",\"filter\":\"\",\"name\":\"hplmn_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G Access Restriction Data\",\"filter\":\"\",\"name\":\"ard\",\"optional\":\"true\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (602, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bde', 'udmuser', 'Batch Delete Subscriber Data', '[{\"comment\":\"\",\"display\":\"Starting IMSI\",\"filter\":\"\",\"name\":\"start_imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Subcribers Number\",\"filter\":\"\",\"name\":\"sub_num\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (603, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bmd', 'udmuser', 'Batch Modify Subscriber Data', '[{\"comment\":\"\",\"display\":\"Starting IMSI\",\"filter\":\"\",\"name\":\"start_imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Subcribers Number\",\"filter\":\"\",\"name\":\"sub_num\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G UE AMBR\",\"filter\":\"\",\"name\":\"ambr\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SNSSAIs\",\"filter\":\"\",\"name\":\"nssai\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Forbidden Areas\",\"filter\":\"\",\"name\":\"arfb\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G Service Area Restriction\",\"filter\":\"\",\"name\":\"sar\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"RAT Type\",\"filter\":\"\",\"name\":\"rat\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Core Network\",\"filter\":\"\",\"name\":\"cn\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SMF Selection Data\",\"filter\":\"\",\"name\":\"smf_sel\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5G SM Data\",\"filter\":\"\",\"name\":\"sm_data\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"Specify mobile phone static IP address, and \'-\' indicates the use of dynamic IP address\",\"display\":\"4G Static IP\",\"filter\":\"\",\"name\":\"static_ip\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G Context ID\",\"filter\":\"\",\"name\":\"context_id\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G APN Context\",\"filter\":\"\",\"name\":\"apn_context\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G EPS User Template Name\",\"filter\":\"\",\"name\":\"epstpl\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"4G EPS Flag\",\"filter\":\"{\\\"0\\\":\\\"Disable\\\", \\\"1\\\":\\\"Enable\\\"}\",\"name\":\"eps_flag\",\"optional\":\"true\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"4G EPS ODB\",\"filter\":\"\",\"name\":\"eps_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G HPLMN ODB\",\"filter\":\"\",\"name\":\"hplmn_odb\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"4G Access Restriction Data\",\"filter\":\"\",\"name\":\"ard\",\"optional\":\"true\",\"type\":\"int\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (604, 'UDM', 'subscriberManagement', 'Subcriber Management', 'import', 'udmuser', 'Import Subscriber Data From File', '[{\"comment\":\"\",\"display\":\"Path File\",\"filter\":\".txt\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"file\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (605, 'UDM', 'subscriberManagement', 'Subcriber Management', 'upload', 'udmuser', 'Upload Subscriber Data', '[{\"comment\":\"\",\"display\":\"Path File\",\"filter\":\".txt\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"file\"}]', 'Inactive');
INSERT INTO `mml_subscriber` VALUES (606, 'UDM', 'subscriberManagement', 'Subcriber Management', 'export', 'udmuser', 'Export Subscriber Data to File', '[{\"comment\":\"\",\"display\":\"Path File\",\"filter\":\"\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"string\"}]', 'Active');
INSERT INTO `mml_subscriber` VALUES (607, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'start', 'Sync UDM Data From Public UDM', 'null', 'Active');
INSERT INTO `mml_subscriber` VALUES (608, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'state', 'Query State of Sync Task', 'null', 'Active');
SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO "mml_subscriber" VALUES (590, 'UDM', 'authdataManagement', 'Authentication Data Management', 'dsp', 'authdat', 'Display Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (591, 'UDM', 'authdataManagement', 'Authentication Data Management', 'add', 'authdat', 'Add Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"KI","filter":"","name":"ki","optional":"false","type":"string"},{"comment":"","display":"AMF","filter":"","name":"amf","optional":"false","type":"string"},{"comment":"","display":"Algo Index","filter":"0~15","name":"algo","optional":"false","type":"int"},{"comment":"","display":"OPC","filter":"","name":"opc","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (592, 'UDM', 'authdataManagement', 'Authentication Data Management', 'del', 'authdat', 'Delete Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (593, 'UDM', 'authdataManagement', 'Authentication Data Management', 'baa', 'authdat', 'Batch Add Auth Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Auth Data Number","filter":"","name":"sub_num","optional":"false","type":"int"},{"comment":"","display":"KI","filter":"","name":"ki","optional":"false","type":"string"},{"comment":"","display":"AMF","filter":"","name":"amf","optional":"false","type":"string"},{"comment":"","display":"Algo Index","filter":"0~15","name":"algo","optional":"false","type":"int"},{"comment":"","display":"OPC","filter":"","name":"opc","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (594, 'UDM', 'authdataManagement', 'Authentication Data Management', 'bde', 'authdat', 'Batch Delete Auth Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Auth Data Number","filter":"","name":"sub_num","optional":"false","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (595, 'UDM', 'authdataManagement', 'Authentication Data Management', 'import', 'authdat', 'Import Auth Data From File', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (596, 'UDM', 'authdataManagement', 'Authentication Data Management', 'export', 'authdat', 'Export Auth Data to File', '[{"comment":"","display":"Path File","filter":"","name":"path","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (597, 'UDM', 'subscriberManagement', 'Subcriber Management', 'dsp', 'udmuser', 'Display UDM Subscriber', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (598, 'UDM', 'subscriberManagement', 'Subcriber Management', 'add', 'udmuser', 'Add UDM Subscriber', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"MSISDN","filter":"","name":"msisdn","optional":"false","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"false","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (599, 'UDM', 'subscriberManagement', 'Subcriber Management', 'del', 'udmuser', 'Delete Subscriber Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (600, 'UDM', 'subscriberManagement', 'Subcriber Management', 'mod', 'udmuser', 'Modify Subscriber Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"MSISDN","filter":"","name":"msisdn","optional":"true","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"true","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (601, 'UDM', 'subscriberManagement', 'Subcriber Management', 'baa', 'udmuser', 'Batch Add UDM Subscriber', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Starting MSISDN","filter":"","name":"start_msisdn","optional":"false","type":"string"},{"comment":"","display":"Subscriber Number","filter":"","name":"sub_num","optional":"false","type":"int"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"false","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (602, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bde', 'udmuser', 'Batch Delete Subscriber Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Subcribers Number","filter":"","name":"sub_num","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (603, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bmd', 'udmuser', 'Batch Modify Subscriber Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Subcribers Number","filter":"","name":"sub_num","optional":"false","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"true","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (604, 'UDM', 'subscriberManagement', 'Subcriber Management', 'import', 'udmuser', 'Import Subscriber Data From File', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (605, 'UDM', 'subscriberManagement', 'Subcriber Management', 'upload', 'udmuser', 'Upload Subscriber Data', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (606, 'UDM', 'subscriberManagement', 'Subcriber Management', 'export', 'udmuser', 'Export Subscriber Data to File', '[{"comment":"","display":"Path File","filter":"","name":"path","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (607, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'start', 'Sync UDM Data From Public UDM', 'null', 'Active');
INSERT INTO "mml_subscriber" VALUES (608, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'state', 'Query State of Sync Task', 'null', 'Active');

View File

@@ -1,103 +1,82 @@
/*
Navicat Premium Data Transfer
Source Server : local_mariadb
Source Server Type : MariaDB
Source Server Version : 100338 (10.3.38-MariaDB)
Source Host : localhost:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 14/05/2024 11:56:23
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for mml_system
-- ----------------------------
DROP TABLE IF EXISTS `mml_system`;
CREATE TABLE `mml_system` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ne_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`category` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`cat_display` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`operation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`object` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`mml_display` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`object_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'mml',
`param_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL,
`status` enum('Active','Inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'Active' COMMENT '激活: Active 未激活: Inactive',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 906 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS "mml_system";
CREATE TABLE "mml_system" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(128),
"object_type" text(16),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of mml_system
-- ----------------------------
INSERT INTO `mml_system` VALUES (833, 'UPF', 'upfManagement', 'UPF Management', 'help', '', 'List UPF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (834, 'UPF', 'systemManagement', 'System Management', 'set', 'n3 driver', 'Set N3 Driver', 'mml', '[{\"comment\":\"\",\"display\":\"Type\",\"filter\":\"\",\"name\":\"type\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"IP address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mask\",\"filter\":\"\",\"name\":\"mask\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mac address\",\"filter\":\"\",\"name\":\"mac\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"PCI address\",\"filter\":\"\",\"name\":\"pci\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (835, 'UPF', 'systemManagement', 'System Management', 'set', 'n4 ip', 'Set N4 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (836, 'UPF', 'systemManagement', 'System Management', 'set', 'n6 driver', 'Set N6 Driver', 'mml', '[{\"comment\":\"\",\"display\":\"Type\",\"filter\":\"\",\"name\":\"type\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"IP address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mask\",\"filter\":\"\",\"name\":\"mask\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mac address\",\"filter\":\"\",\"name\":\"mac\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"PCI address\",\"filter\":\"\",\"name\":\"pci\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (837, 'UPF', 'systemManagement', 'System Management', 'set', 'n9 driver', 'Set N9 Driver', 'mml', '[{\"comment\":\"\",\"display\":\"Type\",\"filter\":\"\",\"name\":\"type\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"IP address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mask\",\"filter\":\"\",\"name\":\"mask\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Mac address\",\"filter\":\"\",\"name\":\"mac\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"PCI address\",\"filter\":\"\",\"name\":\"pci\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (838, 'UPF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{\"comment\":\"\",\"display\":\"DNN\",\"filter\":\"\",\"name\":\"dnn\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (839, 'UPF', 'systemManagement', 'System Management', 'set', 'pfcp', 'Set PFCP', 'mml', '[{\"comment\":\"\",\"display\":\"Path\",\"filter\":\"\",\"name\":\"path\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Local IP Address\",\"filter\":\"\",\"name\":\"local\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Remote IP Address\",\"filter\":\"\",\"name\":\"remote\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (840, 'UPF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5qi\",\"filter\":\"\",\"name\":\"5qi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Priority Level\",\"filter\":\"\",\"name\":\"priority\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"MBR\",\"filter\":\"\",\"name\":\"mbr\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"GBR\",\"filter\":\"\",\"name\":\"gbr\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (841, 'UPF', 'systemManagement', 'System Management', 'set', 'pccrule', 'Set PCC Rule', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"0~65535\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"Precedence\",\"filter\":\"\",\"name\":\"precedence\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"QOS Index\",\"filter\":\"\",\"name\":\"qosindex\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"Filter Direction\",\"filter\":\"{\\\"0\\\":\\\"NA\\\", \\\"1\\\":\\\"Uplink\\\", \\\"2\\\":\\\"Downlink\\\", \\\"3\\\":\\\"Bidirectionallink\\\"}\",\"name\":\"direction\",\"optional\":\"true\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"Filter\",\"filter\":\"\",\"name\":\"filter\",\"optional\":\"true\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Application ID\",\"filter\":\"\",\"name\":\"appid\",\"optional\":\"true\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (842, 'UPF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{\"comment\":\"\",\"display\":\"CMD\",\"filter\":\"\",\"name\":\"cmd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (843, 'UPF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO `mml_system` VALUES (853, 'SMF', 'smfManagement', 'SMF Management', 'help', '', 'List SMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (854, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 server', 'Set N7 Server', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"0~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (855, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 client', 'Set N7 Client', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (856, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 server', 'Set N10 Server', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"0~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (857, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 client', 'Set N10 Client', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (858, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 server', 'Set N11 Server', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"0~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (859, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 client', 'Set N11 Client', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (860, 'SMF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"int\"},{\"comment\":\"\",\"display\":\"DNN\",\"filter\":\"\",\"name\":\"DNN\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (862, 'SMF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"SD\",\"filter\":\"\",\"name\":\"5qi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"5qipl\",\"filter\":\"\",\"name\":\"5qipl\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"arppl\",\"filter\":\"\",\"name\":\"arppl\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"arppci\",\"filter\":\"\",\"name\":\"arppci\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"arppvi\",\"filter\":\"\",\"name\":\"arppvi\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"mfbrul\",\"filter\":\"\",\"name\":\"mfbrul\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"mfbrdl\",\"filter\":\"\",\"name\":\"mfbrdl\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"gfbrul\",\"filter\":\"\",\"name\":\"gfbrul\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"gfbrdl\",\"filter\":\"\",\"name\":\"gfbrdl\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (863, 'SMF', 'systemManagement', 'System Management', 'set', 'snssai', 'Set Snssai', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"string\"},{\"display\":\"sst-sd\",\"filter\":\"\",\"name\":\"sst-sd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (864, 'SMF', 'systemManagement', 'System Management', 'release', 'imsi', 'Release IMSI', 'mml', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"},{\"display\":\"PDU Session Id\",\"filter\":\"\",\"name\":\"pduSessId\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (865, 'SMF', 'systemManagement', 'System Management', 'set', 'urr', 'Set URR', 'mml', '[{\"comment\":\"\",\"display\":\"Index\",\"filter\":\"\",\"name\":\"index\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Quota Volume Tatol\",\"filter\":\"\",\"name\":\"quotavolumetatol\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Quota Volume UL\",\"filter\":\"\",\"name\":\"quotavolumeul\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Quota Volume DL\",\"filter\":\"\",\"name\":\"quotavolumedl\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"Quota Time\",\"filter\":\"\",\"name\":\"quotatime\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (866, 'SMF', 'systemManagement', 'System Management', 'set', 'dpi', 'Set DPI', 'mml', '[{\"comment\":\"\",\"display\":\"Flag\",\"filter\":\"{\\\"0\\\":\\\"disable\\\", \\\"1\\\":\\\"enable\\\"}\",\"name\":\"flag\",\"optional\":\"false\",\"type\":\"enum\"},{\"comment\":\"\",\"display\":\"Max Detect Packet Number\",\"filter\":\"\",\"name\":\"max\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (867, 'SMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{\"comment\":\"\",\"display\":\"CMD\",\"filter\":\"\",\"name\":\"cmd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (868, 'SMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO `mml_system` VALUES (870, 'IMS', 'imsManagement', 'IMS Management', 'help', '', 'List IMS MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (871, 'N3IWF', 'n3iwfManagement', 'N3IWF Management', 'help', '', 'List N3IWF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (872, 'NSSF', 'nssfManagement', 'NSSF Management', 'help', '', 'List NSSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (873, 'NRF', 'nrfManagement', 'NRF Management', 'help', '', 'List NRF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (874, 'PCF', 'pcfManagement', 'PCF Management', 'help', '', 'List PCF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (875, 'AMF', 'subsManagement', 'Subscriber Management', 'list', 'imsi', 'List Online IMSI', 'mml', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"32\",\"name\":\"imsi\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (876, 'AMF', 'amfManagement', 'AMF Management', 'help', '', 'List AMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (877, 'AMF', 'systemManagement', 'System Management', 'set', 'n8_ip', 'Set N8 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (878, 'AMF', 'systemManagement', 'System Management', 'set', 'n11_ip', 'Set N11 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (879, 'AMF', 'systemManagement', 'System Management', 'set', 'n12_ip', 'Set N12 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"0~64\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (880, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_ip', 'Set N2 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (881, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_port', 'Set N2 Port', 'mml', '[{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"0~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (882, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpversion', 'Set NTP Version', 'mml', '[{\"comment\":\"\",\"display\":\"Version\",\"filter\":\"\",\"name\":\"version\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (883, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpmaxdiff', 'Set NTP Max Diff', 'mml', '[{\"comment\":\"\",\"display\":\"Max Value(ms)\",\"filter\":\"100~2000\",\"name\":\"value\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (884, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpsynctimer', 'Set NTP Sync Timer', 'mml', '[{\"comment\":\"\",\"display\":\"Periods(second)\",\"filter\":\"\",\"name\":\"periods\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (885, 'AMF', 'systemManagement', 'System Management', 'add', 'slice', 'Add Slice', 'mml', '[{\"comment\":\"\",\"display\":\"SST\",\"filter\":\"\",\"name\":\"sst\",\"optional\":\"false\",\"type\":\"string\"},{\"comment\":\"\",\"display\":\"SD\",\"filter\":\"\",\"name\":\"sd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (886, 'AMF', 'systemManagement', 'System Management', 'deregister', 'imsi', 'Deregister IMSI', 'mml', '[{\"comment\":\"\",\"display\":\"IMSI\",\"filter\":\"\",\"name\":\"IMSI\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (887, 'AMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{\"comment\":\"\",\"display\":\"CMD\",\"filter\":\"\",\"name\":\"cmd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (888, 'AMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO `mml_system` VALUES (889, 'UDM', 'udmManagement', 'UDM Management', 'help', '', 'List UDM MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (890, 'UDM', 'systemManagement', 'System Management', 'set', 'n8ip', 'Set N8 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"ipv4\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (891, 'UDM', 'systemManagement', 'System Management', 'set', 'n8port', 'Set N8 Port', 'mml', '[{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"1~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (892, 'UDM', 'systemManagement', 'System Management', 'set', 'n8scheme', 'Set N8 Scheme', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (893, 'UDM', 'systemManagement', 'System Management', 'set', 'n10ip', 'Set N10 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (894, 'UDM', 'systemManagement', 'System Management', 'set', 'n10port', 'Set N10 Port', 'mml', '[{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"1~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (895, 'UDM', 'systemManagement', 'System Management', 'set', 'n10scheme', 'Set N10 Scheme', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (896, 'UDM', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{\"comment\":\"\",\"display\":\"CMD\",\"filter\":\"\",\"name\":\"cmd\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (897, 'UDM', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO `mml_system` VALUES (898, 'AUSF', 'ausfManagement', 'AUSF Management', 'help', '', 'List AUSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO `mml_system` VALUES (899, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12ip', 'Set N12 IP Address', 'mml', '[{\"comment\":\"\",\"display\":\"IP Address\",\"filter\":\"\",\"name\":\"ip\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (900, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12port', 'Set N12 Port', 'mml', '[{\"comment\":\"\",\"display\":\"Port\",\"filter\":\"1~65535\",\"name\":\"port\",\"optional\":\"false\",\"type\":\"int\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (901, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12scheme', 'Set N12 Scheme', 'mml', '[{\"comment\":\"\",\"display\":\"Scheme\",\"filter\":\"{\\\"0\\\":\\\"http\\\", \\\"1\\\":\\\"https\\\"}\",\"name\":\"scheme\",\"optional\":\"false\",\"type\":\"enum\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (902, 'AUSF', 'systemManagement', 'System Management', 'set', 'supirange', 'Set SUPI Range', 'mml', '[{\"comment\":\"\",\"display\":\"SUPI Range\",\"filter\":\"\",\"name\":\"supirange\",\"optional\":\"false\",\"type\":\"string\"}]', 'Inactive');
INSERT INTO `mml_system` VALUES (903, 'AUSF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO `mml_system` VALUES (904, 'MME', 'mmeManagement', 'MME Management', 'help', '', 'List MME MML CMD', 'mml', 'null', 'Active');
SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO "mml_system" VALUES (833, 'UPF', 'upfManagement', 'UPF Management', 'help', '', 'List UPF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (834, 'UPF', 'systemManagement', 'System Management', 'set', 'n3 driver', 'Set N3 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (835, 'UPF', 'systemManagement', 'System Management', 'set', 'n4 ip', 'Set N4 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (836, 'UPF', 'systemManagement', 'System Management', 'set', 'n6 driver', 'Set N6 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (837, 'UPF', 'systemManagement', 'System Management', 'set', 'n9 driver', 'Set N9 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (838, 'UPF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{"comment":"","display":"DNN","filter":"","name":"dnn","optional":"false","type":"string"},{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (839, 'UPF', 'systemManagement', 'System Management', 'set', 'pfcp', 'Set PFCP', 'mml', '[{"comment":"","display":"Path","filter":"","name":"path","optional":"false","type":"string"},{"comment":"","display":"Local IP Address","filter":"","name":"local","optional":"false","type":"string"},{"comment":"","display":"Remote IP Address","filter":"","name":"remote","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (840, 'UPF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"5qi","filter":"","name":"5qi","optional":"false","type":"string"},{"comment":"","display":"Priority Level","filter":"","name":"priority","optional":"false","type":"int"},{"comment":"","display":"MBR","filter":"","name":"mbr","optional":"false","type":"string"},{"comment":"","display":"GBR","filter":"","name":"gbr","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (841, 'UPF', 'systemManagement', 'System Management', 'set', 'pccrule', 'Set PCC Rule', 'mml', '[{"comment":"","display":"Index","filter":"0~65535","name":"index","optional":"false","type":"int"},{"comment":"","display":"Precedence","filter":"","name":"precedence","optional":"false","type":"int"},{"comment":"","display":"QOS Index","filter":"","name":"qosindex","optional":"false","type":"int"},{"comment":"","display":"Filter Direction","filter":"{\"0\":\"NA\", \"1\":\"Uplink\", \"2\":\"Downlink\", \"3\":\"Bidirectionallink\"}","name":"direction","optional":"true","type":"int"},{"comment":"","display":"Filter","filter":"","name":"filter","optional":"true","type":"string"},{"comment":"","display":"Application ID","filter":"","name":"appid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (842, 'UPF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (843, 'UPF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (853, 'SMF', 'smfManagement', 'SMF Management', 'help', '', 'List SMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (854, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 server', 'Set N7 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (855, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 client', 'Set N7 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (856, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 server', 'Set N10 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (857, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 client', 'Set N10 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (858, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 server', 'Set N11 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (859, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 client', 'Set N11 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (860, 'SMF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"int"},{"comment":"","display":"DNN","filter":"","name":"DNN","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (862, 'SMF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"SD","filter":"","name":"5qi","optional":"false","type":"string"},{"comment":"","display":"5qipl","filter":"","name":"5qipl","optional":"false","type":"string"},{"comment":"","display":"arppl","filter":"","name":"arppl","optional":"false","type":"string"},{"comment":"","display":"arppci","filter":"","name":"arppci","optional":"false","type":"string"},{"comment":"","display":"arppvi","filter":"","name":"arppvi","optional":"false","type":"string"},{"comment":"","display":"mfbrul","filter":"","name":"mfbrul","optional":"false","type":"string"},{"comment":"","display":"mfbrdl","filter":"","name":"mfbrdl","optional":"false","type":"string"},{"comment":"","display":"gfbrul","filter":"","name":"gfbrul","optional":"false","type":"string"},{"comment":"","display":"gfbrdl","filter":"","name":"gfbrdl","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (863, 'SMF', 'systemManagement', 'System Management', 'set', 'snssai', 'Set Snssai', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"display":"sst-sd","filter":"","name":"sst-sd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (864, 'SMF', 'systemManagement', 'System Management', 'release', 'imsi', 'Release IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"display":"PDU Session Id","filter":"","name":"pduSessId","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (865, 'SMF', 'systemManagement', 'System Management', 'set', 'urr', 'Set URR', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"Quota Volume Tatol","filter":"","name":"quotavolumetatol","optional":"false","type":"string"},{"comment":"","display":"Quota Volume UL","filter":"","name":"quotavolumeul","optional":"false","type":"string"},{"comment":"","display":"Quota Volume DL","filter":"","name":"quotavolumedl","optional":"false","type":"string"},{"comment":"","display":"Quota Time","filter":"","name":"quotatime","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (866, 'SMF', 'systemManagement', 'System Management', 'set', 'dpi', 'Set DPI', 'mml', '[{"comment":"","display":"Flag","filter":"{\"0\":\"disable\", \"1\":\"enable\"}","name":"flag","optional":"false","type":"enum"},{"comment":"","display":"Max Detect Packet Number","filter":"","name":"max","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (867, 'SMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (868, 'SMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (870, 'IMS', 'imsManagement', 'IMS Management', 'help', '', 'List IMS MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (871, 'N3IWF', 'n3iwfManagement', 'N3IWF Management', 'help', '', 'List N3IWF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (872, 'NSSF', 'nssfManagement', 'NSSF Management', 'help', '', 'List NSSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (873, 'NRF', 'nrfManagement', 'NRF Management', 'help', '', 'List NRF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (874, 'PCF', 'pcfManagement', 'PCF Management', 'help', '', 'List PCF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (875, 'AMF', 'subsManagement', 'Subscriber Management', 'list', 'imsi', 'List Online IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"32","name":"imsi","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (876, 'AMF', 'amfManagement', 'AMF Management', 'help', '', 'List AMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (877, 'AMF', 'systemManagement', 'System Management', 'set', 'n8_ip', 'Set N8 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (878, 'AMF', 'systemManagement', 'System Management', 'set', 'n11_ip', 'Set N11 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (879, 'AMF', 'systemManagement', 'System Management', 'set', 'n12_ip', 'Set N12 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (880, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_ip', 'Set N2 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (881, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_port', 'Set N2 Port', 'mml', '[{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (882, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpversion', 'Set NTP Version', 'mml', '[{"comment":"","display":"Version","filter":"","name":"version","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (883, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpmaxdiff', 'Set NTP Max Diff', 'mml', '[{"comment":"","display":"Max Value(ms)","filter":"100~2000","name":"value","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (884, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpsynctimer', 'Set NTP Sync Timer', 'mml', '[{"comment":"","display":"Periods(second)","filter":"","name":"periods","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (885, 'AMF', 'systemManagement', 'System Management', 'add', 'slice', 'Add Slice', 'mml', '[{"comment":"","display":"SST","filter":"","name":"sst","optional":"false","type":"string"},{"comment":"","display":"SD","filter":"","name":"sd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (886, 'AMF', 'systemManagement', 'System Management', 'deregister', 'imsi', 'Deregister IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"","name":"IMSI","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (887, 'AMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (888, 'AMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (889, 'UDM', 'udmManagement', 'UDM Management', 'help', '', 'List UDM MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (890, 'UDM', 'systemManagement', 'System Management', 'set', 'n8ip', 'Set N8 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"ipv4"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (891, 'UDM', 'systemManagement', 'System Management', 'set', 'n8port', 'Set N8 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (892, 'UDM', 'systemManagement', 'System Management', 'set', 'n8scheme', 'Set N8 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (893, 'UDM', 'systemManagement', 'System Management', 'set', 'n10ip', 'Set N10 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (894, 'UDM', 'systemManagement', 'System Management', 'set', 'n10port', 'Set N10 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (895, 'UDM', 'systemManagement', 'System Management', 'set', 'n10scheme', 'Set N10 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (896, 'UDM', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (897, 'UDM', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (898, 'AUSF', 'ausfManagement', 'AUSF Management', 'help', '', 'List AUSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (899, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12ip', 'Set N12 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (900, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12port', 'Set N12 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (901, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12scheme', 'Set N12 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (902, 'AUSF', 'systemManagement', 'System Management', 'set', 'supirange', 'Set SUPI Range', 'mml', '[{"comment":"","display":"SUPI Range","filter":"","name":"supirange","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (903, 'AUSF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (904, 'MME', 'mmeManagement', 'MME Management', 'help', '', 'List MME MML CMD', 'mml', 'null', 'Active');

File diff suppressed because one or more lines are too long

View File

@@ -1,61 +1,27 @@
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: 192.168.2.219 Database: omc_db
-- ------------------------------------------------------
-- Server version 10.3.38-MariaDB
-- ----------------------------
-- Table structure for pm_custom_title
-- ----------------------------
DROP TABLE IF EXISTS "pm_custom_title";
CREATE TABLE "pm_custom_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_code" text(32),
"kpi_id" text(64),
"kpi_set" text,
"expression" text(1024),
"object_type" text(16),
"period" text(8),
"status" text(255),
"title" text(255),
"description" text(255),
"update_time" text,
PRIMARY KEY ("id")
);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `pm_custom_title`
--
DROP TABLE IF EXISTS `pm_custom_title`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pm_custom_title` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ne_type` varchar(16) DEFAULT NULL,
`kpi_code` varchar(32) DEFAULT NULL,
`kpi_id` varchar(64) DEFAULT NULL,
`kpi_set` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`expression` varchar(1024) DEFAULT NULL,
`object_type` varchar(16) DEFAULT NULL,
`period` varchar(8) DEFAULT NULL,
`status` enum('Active','Deleted') DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`update_time` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pm_custom_title`
--
LOCK TABLES `pm_custom_title` WRITE;
/*!40000 ALTER TABLE `pm_custom_title` DISABLE KEYS */;
INSERT INTO `pm_custom_title` VALUES (3,'AMF',NULL,'AMF.CKpi.AuthFailRate','AMF.RegSub.CmIdle,AMF.RegSubMean','AMF.AuthFail/AMF.AuthReqAMF.RegSub.CmIdleAMF.RegSubMean','AmfFunction','15','Active','AMF鉴权失败率','','2023-08-18 18:06:10'),(4,'AMF',NULL,'AMF会话保持数',NULL,'AMF.SessionCreateSucc/AMF.SmContextCreateReq','EpRpDynN11Amf','15',NULL,'AMF会话保持数','AMF会话保持数','2023-08-18 14:29:58'),(7,'AMF',NULL,'AMF','AMF.AuthFail,AMF.AuthFail.20','AMF.AuthFail*AMF.AuthFail.20','AmfFunction','15',NULL,'asdas','','2023-08-18 14:30:27'),(8,'PCF','PCFHA01','PCF.AmAssocNbrMean','PCF.PolicyAmAssocNotifSucc,PCF.PolicyAmAssocDeleteSucc','PCF.PolicyAmAssocNotifSuccPCF.PolicyAmAssocDeleteSucc','PcfFunction','15','Active','PCF指标定义','','2023-08-18 18:05:08');
/*!40000 ALTER TABLE `pm_custom_title` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-03-06 17:27:05
-- ----------------------------
-- Records of pm_custom_title
-- ----------------------------
INSERT INTO "pm_custom_title" VALUES (3, 'AMF', NULL, 'AMF.CKpi.AuthFailRate', 'AMF.RegSub.CmIdle,AMF.RegSubMean', 'AMF.AuthFail/AMF.AuthReqAMF.RegSub.CmIdleAMF.RegSubMean', 'AmfFunction', '15', 'Active', 'AMF鉴权失败率', '', '2023-08-18 18:06:10');
INSERT INTO "pm_custom_title" VALUES (4, 'AMF', NULL, 'AMF会话保持数', NULL, 'AMF.SessionCreateSucc/AMF.SmContextCreateReq', 'EpRpDynN11Amf', '15', NULL, 'AMF会话保持数', 'AMF会话保持数', '2023-08-18 14:29:58');
INSERT INTO "pm_custom_title" VALUES (7, 'AMF', NULL, 'AMF', 'AMF.AuthFail,AMF.AuthFail.20', 'AMF.AuthFail*AMF.AuthFail.20', 'AmfFunction', '15', NULL, 'asdas', '', '2023-08-18 14:30:27');
INSERT INTO "pm_custom_title" VALUES (8, 'PCF', 'PCFHA01', 'PCF.AmAssocNbrMean', 'PCF.PolicyAmAssocNotifSucc,PCF.PolicyAmAssocDeleteSucc', 'PCF.PolicyAmAssocNotifSuccPCF.PolicyAmAssocDeleteSucc', 'PcfFunction', '15', 'Active', 'PCF指标定义', '', '2023-08-18 18:05:08');

View File

@@ -1,52 +1,15 @@
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: 192.168.2.219 Database: omc_db
-- ------------------------------------------------------
-- Server version 10.3.38-MariaDB
-- ----------------------------
-- Table structure for title_info
-- ----------------------------
DROP TABLE IF EXISTS "title_info";
CREATE TABLE "title_info" (
"id" integer NOT NULL,
"tag" text(15),
"title_json" text,
"remark" text(255),
PRIMARY KEY ("id")
);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `title_info`
--
DROP TABLE IF EXISTS `title_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `title_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tag` varchar(15) DEFAULT NULL,
`title_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '某个title的各种语言显示内容的json格式',
`remark` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `title_info`
--
LOCK TABLES `title_info` WRITE;
/*!40000 ALTER TABLE `title_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `title_info` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-03-06 17:27:05
-- ----------------------------
-- Records of title_info
-- ----------------------------

View File

@@ -1,81 +1,60 @@
/*
Navicat Premium Data Transfer
Source Server : local_mariadb
Source Server Type : MariaDB
Source Server Version : 100338 (10.3.38-MariaDB)
Source Host : localhost:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 14/05/2024 15:00:46
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for trace_info
-- ----------------------------
DROP TABLE IF EXISTS `trace_info`;
CREATE TABLE `trace_info` (
`ne_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`interface` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`message_type` tinyint(4) NOT NULL,
`message_title` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`ne_type`, `interface`, `message_type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS "trace_info";
CREATE TABLE "trace_info" (
"ne_type" text(32) NOT NULL,
"interface" text(10) NOT NULL,
"message_type" integer(4) NOT NULL,
"message_title" text(64),
PRIMARY KEY ("ne_type", "interface", "message_type")
);
-- ----------------------------
-- Records of trace_info
-- ----------------------------
INSERT INTO `trace_info` VALUES ('AMF', 'N1', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N11', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N12', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N14', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N15', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N2', 1, NULL);
INSERT INTO `trace_info` VALUES ('AMF', 'N8', 1, NULL);
INSERT INTO `trace_info` VALUES ('AUSF', 'N12', 1, 'Nausf_AUTH_Post ue-authentications');
INSERT INTO `trace_info` VALUES ('AUSF', 'N12', 2, 'Nausf_AUTH_Put 5g-aka-confirmation');
INSERT INTO `trace_info` VALUES ('AUSF', 'N12', 3, 'Nausf_AUTH_Delete 5g-aka-confirmation');
INSERT INTO `trace_info` VALUES ('AUSF', 'N12', 4, 'Nausf_AUTH_Post eap-session');
INSERT INTO `trace_info` VALUES ('AUSF', 'N12', 5, 'Nausf_AUTH_Delete eap-session');
INSERT INTO `trace_info` VALUES ('SMF', 'N10', 1, NULL);
INSERT INTO `trace_info` VALUES ('SMF', 'N11', 1, NULL);
INSERT INTO `trace_info` VALUES ('SMF', 'N4', 1, NULL);
INSERT INTO `trace_info` VALUES ('SMF', 'N7', 1, NULL);
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 1, 'Nudm_SDM_Get sm-data');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 2, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 3, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 4, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 5, 'Nudm_SDM_Get id-translation-result');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 6, 'Nudm_UECM_Get smf-registrations');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 7, 'Nudm_UECM_Put smf-registrations');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 8, 'Nudm_UECM_Patch smf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 9, 'Nudm_UECM_Get smf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N10', 10, 'Nudm_UECM_Delete smf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N13', 1, 'Nudm_UEAU_Post generate-auth-data');
INSERT INTO `trace_info` VALUES ('UDM', 'N13', 2, 'Nudm_UEAU_Post auth-events');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 1, 'Nudm_SDM_Get supi');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 2, 'Nudm_SDM_Get nssai');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 3, 'Nudm_SDM_Get am-data');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 4, 'Nudm_SDM_Put am-data cag-ack');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 5, 'Nudm_SDM_Get smf-select-data');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 6, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 7, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 8, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 9, 'Nudm_SDM_Get id-translation-result');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 10, 'Nudm_UECM_Put amf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 11, 'Nudm_UECM_Patch amf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 12, 'Nudm_UECM_Get amf-3gpp-access');
INSERT INTO `trace_info` VALUES ('UDM', 'N8', 13, 'Namf_Callback Deregistraion');
INSERT INTO `trace_info` VALUES ('UPF', 'N3', 1, NULL);
INSERT INTO `trace_info` VALUES ('UPF', 'N4', 1, NULL);
INSERT INTO `trace_info` VALUES ('UPF', 'N6', 1, NULL);
INSERT INTO `trace_info` VALUES ('UPF', 'N9', 1, NULL);
SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO "trace_info" VALUES ('AMF', 'N1', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N11', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N12', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N14', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N15', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N2', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N8', 1, NULL);
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 1, 'Nausf_AUTH_Post ue-authentications');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 2, 'Nausf_AUTH_Put 5g-aka-confirmation');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 3, 'Nausf_AUTH_Delete 5g-aka-confirmation');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 4, 'Nausf_AUTH_Post eap-session');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 5, 'Nausf_AUTH_Delete eap-session');
INSERT INTO "trace_info" VALUES ('SMF', 'N10', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N11', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N4', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N7', 1, NULL);
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 1, 'Nudm_SDM_Get sm-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 2, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 3, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 4, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 5, 'Nudm_SDM_Get id-translation-result');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 6, 'Nudm_UECM_Get smf-registrations');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 7, 'Nudm_UECM_Put smf-registrations');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 8, 'Nudm_UECM_Patch smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 9, 'Nudm_UECM_Get smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 10, 'Nudm_UECM_Delete smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N13', 1, 'Nudm_UEAU_Post generate-auth-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N13', 2, 'Nudm_UEAU_Post auth-events');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 1, 'Nudm_SDM_Get supi');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 2, 'Nudm_SDM_Get nssai');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 3, 'Nudm_SDM_Get am-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 4, 'Nudm_SDM_Put am-data cag-ack');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 5, 'Nudm_SDM_Get smf-select-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 6, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 7, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 8, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 9, 'Nudm_SDM_Get id-translation-result');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 10, 'Nudm_UECM_Put amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 11, 'Nudm_UECM_Patch amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 12, 'Nudm_UECM_Get amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 13, 'Namf_Callback Deregistraion');
INSERT INTO "trace_info" VALUES ('UPF', 'N3', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N4', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N6', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N9', 1, NULL);